diff --git a/.coveragerc b/.coveragerc index 3dbfbb408..c712d2595 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,2 +1,2 @@ [run] -omit = tests/* \ No newline at end of file +omit = tests/* diff --git a/.github/actions/setup-poetry-env/action.yml b/.github/actions/setup-poetry-env/action.yml new file mode 100644 index 000000000..22e405341 --- /dev/null +++ b/.github/actions/setup-poetry-env/action.yml @@ -0,0 +1,33 @@ +name: "setup-poetry-env" +description: "Composite action to setup the Python and poetry environment." + +inputs: + python-version: + required: false + description: "The python version to use" + default: "3.11" + +runs: + using: "composite" + steps: + - name: Set up python + uses: actions/setup-python@v4 + with: + python-version: ${{ inputs.python-version }} + + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + virtualenvs-in-project: true + + - name: Load cached venv + id: cached-poetry-dependencies + uses: actions/cache@v3 + with: + path: .venv + key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('poetry.lock') }} + + - name: Install dependencies + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + run: poetry install --no-interaction + shell: bash diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 62234d7da..82d404445 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,14 +1,14 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: daily - time: "10:00" - open-pull-requests-limit: 10 - # Raise pull requests for version updates - # to pip against the `main` branch - target-branch: "main" - ignore: - - dependency-name: "*" - update-types: ["version-update:semver-patch"] + - package-ecosystem: pip + directory: "/" + schedule: + interval: daily + time: "10:00" + open-pull-requests-limit: 10 + # Raise pull requests for version updates + # to pip against the `main` branch + target-branch: "main" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-patch"] diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index acb907efa..c975c4f2b 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,38 +1,38 @@ -name-template: 'v$RESOLVED_VERSION ๐ŸŒˆ' -tag-template: 'v$RESOLVED_VERSION' +name-template: "v$RESOLVED_VERSION ๐ŸŒˆ" +tag-template: "v$RESOLVED_VERSION" categories: - - title: '๐Ÿš€ New Features' + - title: "๐Ÿš€ New Features" labels: - - 'new feature' - - 'enhancement' - - title: '๐Ÿ› Bug Fixes' + - "new feature" + - "enhancement" + - title: "๐Ÿ› Bug Fixes" labels: - - 'fix' - - 'bugfix' - - 'bug' - - title: '๐Ÿงฐ Maintenance' + - "fix" + - "bugfix" + - "bug" + - title: "๐Ÿงฐ Maintenance" labels: - - 'refactoring' - - 'dependencies' -change-template: '- $TITLE @$AUTHOR (#$NUMBER)' + - "refactoring" + - "dependencies" +change-template: "- $TITLE @$AUTHOR (#$NUMBER)" change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. version-resolver: major: labels: - - 'major' + - "major" minor: labels: - - 'minor' - - 'feature' - - 'new feature' - - 'enhancement' + - "minor" + - "feature" + - "new feature" + - "enhancement" patch: labels: - - 'fix' - - 'bugfix' - - 'bug' - - 'patch' - - 'refactoring' + - "fix" + - "bugfix" + - "bug" + - "patch" + - "refactoring" default: patch template: | ## Changes diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..0dddb8fa7 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,81 @@ +name: Main + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + +jobs: + quality: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v3 + with: + submodules: "true" + + - uses: actions/cache@v3 + with: + path: ~/.cache/pre-commit + key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} + + - name: Set up the environment + uses: ./.github/actions/setup-poetry-env + + - name: Run checks + run: make check + + tox: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] + os: [ubuntu-latest] # later, add macos-latest, windows-latest + energyplus-version: [9.2.0] # later, add 9.4.0 + include: + - runs-on: ubuntu-latest + compiler: gcc + - energyplus-version: 9.2.0 + energyplus-sha: 921312fa1d + energyplus-install: 9-2-0 + fail-fast: false + steps: + - name: Check out + uses: actions/checkout@v3 + with: + submodules: "true" + + - name: Set up python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Poetry + uses: snok/install-poetry@v1 + + - name: Load cached venv + uses: actions/cache@v3 + with: + path: .tox + key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} + + - name: Install tox + run: | + python -m pip install --upgrade pip + python -m pip install tox tox-gh-actions + + - name: Install EnergyPlus + uses: Elementa-Engineering/install-energyplus@v1 + with: + energyplus-version: ${{ matrix.energyplus-version }} + energyplus-sha: ${{ matrix.energyplus-sha }} + energyplus-install: ${{ matrix.energyplus-install }} + + - name: Test with tox + run: tox -- -n 2 --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml + + - name: Upload coverage reports to Codecov with GitHub Action on Python 3.11 + uses: codecov/codecov-action@v3 + if: ${{ matrix.python-version == '3.11' }} diff --git a/.github/workflows/on-release-main.yml b/.github/workflows/on-release-main.yml new file mode 100644 index 000000000..fcf5d707d --- /dev/null +++ b/.github/workflows/on-release-main.yml @@ -0,0 +1,31 @@ +name: release-main + +on: + release: + types: [published] + branches: [main] + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v3 + with: + submodules: "true" + + - name: Set up the environment + uses: ./.github/actions/setup-poetry-env + + - name: Export tag + id: vars + run: echo tag=${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT + + - name: Build and publish + run: | + source .venv/bin/activate + poetry version $RELEASE_VERSION + make build-and-publish + env: + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + RELEASE_VERSION: ${{ steps.vars.outputs.tag }} diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml deleted file mode 100644 index 775f21d6d..000000000 --- a/.github/workflows/python-package.yml +++ /dev/null @@ -1,72 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python package - -on: - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ${{ matrix.os }} - strategy: - matrix: - python-version: [ 3.9 ] - os: [ ubuntu-latest ] # later, add macos-latest, windows-latest - energyplus-version: [ 9.2.0 ] # later, add 9.4.0 - include: - - runs-on: ubuntu-latest - compiler: gcc - - energyplus-version: 9.2.0 - energyplus-sha: 921312fa1d - energyplus-install: 9-2-0 - steps: - - name: Display the OS - run: echo $OSTYPE - shell: bash - - uses: actions/checkout@v3 - with: - submodules: true - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install Poetry - run: | - curl -sSL https://install.python-poetry.org | python3 - - - name: Configure Poetry - run: | - poetry config virtualenvs.in-project true - - name: Cache Poetry virtualenv - uses: actions/cache@v3 - with: - path: .venv - key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} - restore-keys: | - ${{ runner.os }}-poetry- - - name: Install dependencies - run: | - poetry install - - name: Lint with flake8 - run: | - poetry run flake8 ./archetypal --count --select=E9,F63,F7,F82 --show-source --statistics - poetry run flake8 ./archetypal --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Install EnergyPlus - uses: Elementa-Engineering/install-energyplus@v1 - with: - energyplus-version: ${{ matrix.energyplus-version }} - energyplus-sha: ${{ matrix.energyplus-sha }} - energyplus-install: ${{ matrix.energyplus-install }} - - name: Test with pytest - run: | - poetry run pytest -n auto --cov=archetypal --cov-report=xml tests/ - - name: Upload coverage to Codecov - if: ${{ matrix.python-version == 3.9 }} - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.xml - fail_ci_if_error: false - verbose: true \ No newline at end of file diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml deleted file mode 100644 index 628855cce..000000000 --- a/.github/workflows/python-publish.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This workflow will upload a Python Package using poetry when a release is created - -name: Upload Python Package - -on: - release: - types: [created, edited] - -jobs: - deploy: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - - name: Install Poetry - run: | - curl -sSL https://install.python-poetry.org | python3 - - - name: Build and publish - env: - PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} - PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - poetry publish --build --username $PYPI_USERNAME --password $PYPI_PASSWORD diff --git a/.github/workflows/validate-codecov-config.yml b/.github/workflows/validate-codecov-config.yml new file mode 100644 index 000000000..440a87bd9 --- /dev/null +++ b/.github/workflows/validate-codecov-config.yml @@ -0,0 +1,17 @@ +name: validate-codecov-config + +on: + pull_request: + paths: [codecov.yaml] + push: + branches: [main] + +jobs: + validate-codecov-config: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + with: + submodules: "true" + - name: Validate codecov configuration + run: curl -sSL --fail-with-body --data-binary @codecov.yaml https://codecov.io/validate diff --git a/.gitignore b/.gitignore index da86c5f75..b66c3dddb 100644 --- a/.gitignore +++ b/.gitignore @@ -235,4 +235,4 @@ fabric.properties docs/reference/ -.idea/ \ No newline at end of file +.idea/ diff --git a/.gitmodules b/.gitmodules index 528df87be..804722178 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "geomeppy"] path = geomeppy - url = git@github.com:samuelduchesne/geomeppy.git + url = https://github.com/samuelduchesne/geomeppy.git diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..6e5f8097f --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,24 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: "v4.4.0" + hooks: + - id: check-case-conflict + - id: check-merge-conflict + - id: check-toml + - id: check-yaml + - id: end-of-file-fixer + exclude: ^(tests/input_data/|docker/trnsidf/) + - id: trailing-whitespace + exclude: ^(tests/input_data/|docker/trnsidf/) + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.1.6" + hooks: + - id: ruff + args: [--exit-non-zero-on-fix] + - id: ruff-format + + - repo: https://github.com/pre-commit/mirrors-prettier + rev: "v3.0.3" + hooks: + - id: prettier diff --git a/.readthedocs.yml b/.readthedocs.yml index d17384788..8b2fff6d9 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -22,8 +22,8 @@ formats: python: version: 3.7 install: - - requirements: requirements.txt - - method: pip - path: . - extra_requirements: - - dev \ No newline at end of file + - requirements: requirements.txt + - method: pip + path: . + extra_requirements: + - dev diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f839b0f58..11abd75c1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,17 +1,17 @@ -Thank you for using *archetypal* and for considering contributing to it! +Thank you for using _archetypal_ and for considering contributing to it! #### For errors in the code: - - read the error message and [documentation](https://archetypal.readthedocs.io/); - - search through the [open issues](https://github.com/samuelduchesne/archetypal/issues?q=is%3Aopen+is%3Aissue) and [closed issues](https://github.com/samuelduchesne/archetypal/issues?q=is%3Aissue+is%3Aclosed) first; - - if the problem is with a dependency of this project, open an issue on the dependency's repo; - - if the problem is with *archetypal* and you can fix it simply, please submit a [PR](https://github.com/samuelduchesne/archetypal/pulls); - - if the problem persists, please open an issue in the [issue tracker](https://github.com/samuelduchesne/archetypal/issues) including a minimal working example to reproduce the problem. +- read the error message and [documentation](https://archetypal.readthedocs.io/); +- search through the [open issues](https://github.com/samuelduchesne/archetypal/issues?q=is%3Aopen+is%3Aissue) and [closed issues](https://github.com/samuelduchesne/archetypal/issues?q=is%3Aissue+is%3Aclosed) first; +- if the problem is with a dependency of this project, open an issue on the dependency's repo; +- if the problem is with _archetypal_ and you can fix it simply, please submit a [PR](https://github.com/samuelduchesne/archetypal/pulls); +- if the problem persists, please open an issue in the [issue tracker](https://github.com/samuelduchesne/archetypal/issues) including a minimal working example to reproduce the problem. #### If you have a feature proposal or want to contribute - - post your proposal on the [issue tracker](https://github.com/samuelduchesne/archetypal/issues) so we can review it together (some proposals may not be a good fit for the project); - - fork the repo, make your change (adhering to archetypal's existing coding format, commenting, and docstring styles); - [test it](https://github.com/samuelduchesne/archetypal/tree/main/tests); - - format your code using [black](https://black.readthedocs.io/en/stable/) and submit a [PR](https://github.com/samuelduchesne/archetypal/pulls); - - respond to code review. +- post your proposal on the [issue tracker](https://github.com/samuelduchesne/archetypal/issues) so we can review it together (some proposals may not be a good fit for the project); +- fork the repo, make your change (adhering to archetypal's existing coding format, commenting, and docstring styles); + [test it](https://github.com/samuelduchesne/archetypal/tree/main/tests); +- format your code using [black](https://black.readthedocs.io/en/stable/) and submit a [PR](https://github.com/samuelduchesne/archetypal/pulls); +- respond to code review. diff --git a/Dockerfile b/Dockerfile index 2f9bc0be9..00449707c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,4 +71,4 @@ COPY requirements-dev.txt requirements-dev.txt # configure conda and install packages in one RUN to keep image tidy RUN conda update -n base conda && \ conda config --prepend channels conda-forge && \ - conda env update -n base -f environment.yml --prune \ No newline at end of file + conda env update -n base -f environment.yml --prune diff --git a/LICENSE.md b/LICENSE.md index 7e79ae016..bd9085026 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,3 @@ - The MIT License (MIT) Copyright (c) 2019 Samuel Letellier-Duchesne diff --git a/Makefile b/Makefile index 70d5882c9..f6b3ab88f 100644 --- a/Makefile +++ b/Makefile @@ -3,17 +3,15 @@ install: ## Install the poetry environment and install the pre-commit hooks @echo "๐Ÿš€ Creating virtual environment using pyenv and poetry" @poetry install - # @ poetry run pre-commit install + @poetry run pre-commit install @poetry shell .PHONY: check check: ## Run code quality tools. @echo "๐Ÿš€ Checking Poetry lock file consistency with 'pyproject.toml': Running poetry --check lock" @poetry check --lock - @echo "๐Ÿš€ Linting code: Running ruff check --fix" - @poetry run ruff check --fix - @echo "๐Ÿš€ Formatting code: Running ruff format" - @poetry run ruff format + @echo "๐Ÿš€ Linting code: Running pre-commit" + @poetry run pre-commit run -a # @echo "๐Ÿš€ Static type checking: Running mypy" # @poetry run mypy # @echo "๐Ÿš€ Checking for obsolete dependencies: Running deptry" diff --git a/README.md b/README.md index 76561d62c..0bf276de4 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,14 @@ Here is a short overview of features that are part of archetypal: Recommended to use a conda environement running python 3.8. Pip install should work on all platforms (linux, macOS and Windows). First, + ```cmd conda create -n venv python=3.8 -``` +``` + `-n venv` is the name of your environement; it can be anything. Then, + ```cmd pip install -U archetypal ``` @@ -78,4 +81,3 @@ python -m pytest tests/ ```console make html ``` - diff --git a/archetypal/__init__.py b/archetypal/__init__.py index 4e8901ba5..323efee49 100644 --- a/archetypal/__init__.py +++ b/archetypal/__init__.py @@ -6,18 +6,18 @@ ################################################################################ import logging as lg from pathlib import Path -from typing import Literal, List, Optional, Any +from typing import Any, List, Literal, Optional from energy_pandas.units import unit_registry # Version of the package -from pkg_resources import get_distribution, DistributionNotFound +from pkg_resources import DistributionNotFound, get_distribution try: from pydantic_settings import BaseSettings except ImportError: from pydantic_settings import BaseSettingsModel as BaseSettings -from pydantic import Field, DirectoryPath +from pydantic import DirectoryPath, Field try: from pydantic import field_validator @@ -25,7 +25,7 @@ from pydantic import validator as field_validator -class ZoneWeight(object): +class ZoneWeight: """Zone weights for Umi Templates""" weight_attr = {0: "area", 1: "volume"} @@ -59,12 +59,10 @@ class Settings(BaseSettings, arbitrary_types_allowed=True, validate_assignment=T debug: bool = Field(False, validation_alias="ARCHETYPAL_DEBUG") # write log to file and/or to console - log_file: bool = Field(False) - log_console: bool = Field(False) - log_notebook: bool = Field(False) - log_level: Literal[0, 10, 20, 30, 40, 50] = Field( - lg.INFO, validation_alias="ARCHETYPAL_LOG_LEVEL" - ) + log_file: bool = Field(False, validation_alias="ARCHETYPAL_LOG_FILE") + log_console: bool = Field(False, validation_alias="ARCHETYPAL_LOG_CONSOLE") + log_notebook: bool = Field(False, validation_alias="ARCHETYPAL_LOG_NOTEBOOK") + log_level: Literal[0, 10, 20, 30, 40, 50] = Field(lg.INFO, validation_alias="ARCHETYPAL_LOG_LEVEL") log_name: str = Field("archetypal", validation_alias="ARCHETYPAL_LOG_NAME") log_filename: str = Field("archetypal") @@ -194,12 +192,13 @@ def initialize_units(cls, v): settings.unit_registry = unit_registry # After settings are loaded, import other modules -from .idfclass import IDF -from .eplus_interface.version import EnergyPlusVersion -from .umi_template import UmiTemplateLibrary -from .utils import config, clear_cache, parallel_process -from .umi_template import BuildingTemplate - +from .eplus_interface.version import EnergyPlusVersion # noqa: E402 +from .idfclass import IDF # noqa: E402 +from .umi_template import ( + BuildingTemplate, # noqa: E402 + UmiTemplateLibrary, # noqa: E402 +) +from .utils import clear_cache, config, parallel_process # noqa: E402 try: __version__ = get_distribution("archetypal").version @@ -208,10 +207,13 @@ def initialize_units(cls, v): __version__ = "0.0.0" # should happen only if package is copied, not installed. else: # warn if a newer version of archetypal is available - from outdated import warn_if_outdated from .eplus_interface.version import warn_if_not_compatible finally: # warn if energyplus not installed or incompatible from .eplus_interface.version import warn_if_not_compatible warn_if_not_compatible() + +from .idfclass import IDF # noqa: E402 + +__all__ = ["settings", "Settings", "__version__", "utils", "dataportal", "IDF"] diff --git a/archetypal/cli.py b/archetypal/cli.py index b202fb71b..cb6cecbd1 100644 --- a/archetypal/cli.py +++ b/archetypal/cli.py @@ -21,7 +21,7 @@ CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) -class CliConfig(object): +class CliConfig: def __init__(self): self.data_folder = settings.data_folder self.logs_folder = settings.logs_folder @@ -70,8 +70,7 @@ def __init__(self): "--cache-responses", is_flag=True, default=False, - help="Use a local cache to save/retrieve DataPortal API calls for the same " - "requests.", + help="Use a local cache to save/retrieve DataPortal API calls for the same requests.", ) @click.option( "-l", @@ -96,14 +95,12 @@ def __init__(self): default=settings.log_level, ) @click.option("--log-name", help="name of the logger", default=settings.log_name) -@click.option( - "--log-filename", help="name of the log file", default=settings.log_filename -) +@click.option("--log-filename", help="name of the log file", default=settings.log_filename) @click.option( "--ep_version", type=click.STRING, default=settings.ep_version, - help='the EnergyPlus version to use. eg. "{}"'.format(settings.ep_version), + help=f'the EnergyPlus version to use. eg. "{settings.ep_version}"', ) @click.option( "-d", @@ -180,7 +177,7 @@ def cli( "--all_zones", is_flag=True, default=False, - help="Include all zones in the " "output template", + help="Include all zones in the output template", ) @click.option( "-v", @@ -209,9 +206,7 @@ def reduce(ctx, idf, output, weather, cores, all_zones, as_version): dir_ = output.dirname() file_paths = list(set_filepaths(idf)) - file_list = "\n".join( - [f"{i}. " + str(file.name) for i, file in enumerate(file_paths)] - ) + file_list = "\n".join([f"{i}. " + str(file.name) for i, file in enumerate(file_paths)]) log( f"executing {len(file_paths)} file(s):\n{file_list}", ) @@ -246,9 +241,7 @@ def validate_energyplusversion(ctx, param, value): def validate_paths(ctx, param, value): try: file_paths = set_filepaths(value) - file_list = "\n".join( - [f"{i}. " + str(file.name) for i, file in enumerate(file_paths)] - ) + file_list = "\n".join([f"{i}. " + str(file.name) for i, file in enumerate(file_paths)]) return file_paths, file_list except FileNotFoundError: raise click.BadParameter("no files were found.") @@ -333,10 +326,7 @@ def transition(idf, to_version, cores, yes): file_list.append(idf.original_idfname) idf.saveas(str(idf.original_idfname)) else: - full_path = ( - idf.original_idfname.dirname() / idf.original_idfname.stem - + f"V{to_version}.idf" - ) + full_path = idf.original_idfname.dirname() / idf.original_idfname.stem + f"V{to_version}.idf" file_list.append(full_path) idf.saveas(full_path) log( diff --git a/archetypal/dataportal.py b/archetypal/dataportal.py index 83a5762c3..5b81f649d 100644 --- a/archetypal/dataportal.py +++ b/archetypal/dataportal.py @@ -54,13 +54,8 @@ def tabula_api_request(data, table="detail"): """ # Prepare URL if table == "all-country": - codehex = str( - int(hashlib.md5(data["code_country"].encode("utf-8")).hexdigest(), 16) - )[0:13] - url_base = ( - "http://webtool.building-typology.eu/data/matrix/building" - "/{0}/p/0/o/0/l/10/dc/{1}" - ) + codehex = str(int(hashlib.md5(data["code_country"].encode("utf-8")).hexdigest(), 16))[0:13] + url_base = "http://webtool.building-typology.eu/data/matrix/building/{0}/p/0/o/0/l/10/dc/{1}" prepared_url = url_base.format(data["code_country"], codehex) elif table == "detail": @@ -68,14 +63,11 @@ def tabula_api_request(data, table="detail"): suffix = ".".join(s for s in data["suffix"]) bldname = buildingtype + "." + suffix hexint = hashlib.md5(bldname.encode("utf-8")).hexdigest()[0:13] - url_base = ( - "http://webtool.building-typology.eu/data/adv/building" - "/detail/{0}/bv/{1}/dc/{2}" - ) + url_base = "http://webtool.building-typology.eu/data/adv/building/detail/{0}/bv/{1}/dc/{2}" prepared_url = url_base.format(bldname, data["variant"], hexint) else: - raise ValueError('server-table name "{}" invalid'.format(table)) + raise ValueError(f'server-table name "{table}" invalid') # First, try to get the cached resonse from file cached_response_json = get_from_cache(prepared_url) @@ -92,12 +84,12 @@ def tabula_api_request(data, table="detail"): if "remark" in response_json: log( 'Server remark: "{}"'.format( - response_json["remark"], level=lg.WARNING + response_json["remark"], ) ) elif not response_json["success"]: raise ValueError( - 'The query "{}" returned no results'.format(prepared_url), + f'The query "{prepared_url}" returned no results', lg.WARNING, ) save_to_cache(prepared_url, response_json) @@ -178,10 +170,10 @@ def tabula_building_details_sheet( ) = code_building.split(".") except ValueError: msg = ( - 'the query "{}" is missing a parameter. Make sure the ' + f'the query "{code_building}" is missing a parameter. Make sure the ' '"code_building" has the form: ' "AT.MT.AB.02.Gen.ReEx.001.001" - ).format(code_building) + ) log(msg, lg.ERROR) raise ValueError(msg) @@ -191,9 +183,7 @@ def tabula_building_details_sheet( # Check code_buildingsizeclass if code_buildingsizeclass.upper() not in ["SFH", "TH", "MFH", "AB"]: raise ValueError( - 'specified code_buildingsizeclass "{}" not supported. Available ' - 'values are "SFH", "TH", ' - '"MFH" or "AB"' + 'specified code_buildingsizeclass "{}" not supported. Available ' 'values are "SFH", "TH", ' '"MFH" or "AB"' ) # Check numericals if not isinstance(code_construcionyearclass, str): @@ -293,11 +283,8 @@ def tabula_system_request(data): system = ".".join(s for s in data["systype"]) hexint = hashlib.md5(system.encode("utf-8")).hexdigest()[0:13] - log("quering system type {}".format(system)) - prepared_url = ( - "http://webtool.building-typology.eu/data/matrix/system" - "/detail/{0}/dc/{1}".format(system, hexint) - ) + log(f"quering system type {system}") + prepared_url = "http://webtool.building-typology.eu/data/matrix/system" f"/detail/{system}/dc/{hexint}" cached_response_json = get_from_cache(prepared_url) @@ -315,7 +302,7 @@ def tabula_system_request(data): if "remark" in response_json: log( 'Server remark: "{}"'.format( - response_json["remark"], level=lg.WARNING + response_json["remark"], ) ) save_to_cache(prepared_url, response_json) @@ -345,7 +332,7 @@ def _resolve_codecountry(code_country): # if country is valid, return ISO 3166-1-alpha-2 code code_country = code_country.alpha_2 else: - raise ValueError("Country name {} is invalid".format(code_country)) + raise ValueError(f"Country name {code_country} is invalid") return code_country @@ -359,19 +346,13 @@ def get_from_cache(url): # determine the filename by hashing the url filename = hashlib.md5(str(url).encode("utf-8")).hexdigest() - cache_path_filename = os.path.join( - settings.cache_folder, os.extsep.join([filename, "json"]) - ) + cache_path_filename = os.path.join(settings.cache_folder, os.extsep.join([filename, "json"])) # open the cache file for this url hash if it already exists, otherwise # return None if os.path.isfile(cache_path_filename): - with io.open(cache_path_filename, encoding="utf-8") as cache_file: + with open(cache_path_filename, encoding="utf-8") as cache_file: response_json = json.load(cache_file) - log( - 'Retrieved response from cache file "{}" for URL "{}"'.format( - cache_path_filename, str(url) - ) - ) + log(f'Retrieved response from cache file "{cache_path_filename}" for URL "{url!s}"') return response_json @@ -392,15 +373,13 @@ def save_to_cache(url, response_json): # hash the url (to make filename shorter than the often extremely # long url) filename = hashlib.md5(str(url).encode("utf-8")).hexdigest() - cache_path_filename = os.path.join( - settings.cache_folder, os.extsep.join([filename, "json"]) - ) + cache_path_filename = os.path.join(settings.cache_folder, os.extsep.join([filename, "json"])) # dump to json, and save to file json_str = json.dumps(response_json) - with io.open(cache_path_filename, "w", encoding="utf-8") as cache_file: + with open(cache_path_filename, "w", encoding="utf-8") as cache_file: cache_file.write(json_str) - log('Saved response to cache file "{}"'.format(cache_path_filename)) + log(f'Saved response to cache file "{cache_path_filename}"') def openei_api_request( @@ -448,10 +427,7 @@ def nrel_api_cbr_request(data): """ # define the Overpass API URL, then construct a GET-style URL as a string to # hash to look up/save to cache - url = ( - "https://developer.nrel.gov/api/commercial-building-resources/v1" - "/resources.json" - ) + url = "https://developer.nrel.gov/api/commercial-building-resources/v1/resources.json" prepared_url = requests.Request("GET", url, params=data).prepare().url cached_response_json = get_from_cache(prepared_url) @@ -462,23 +438,20 @@ def nrel_api_cbr_request(data): else: start_time = time.time() - log('Getting from {}, "{}"'.format(url, data)) + log(f'Getting from {url}, "{data}"') response = requests.get(prepared_url) # if this URL is not already in the cache, pause, then request it # get the response size and the domain, log result size_kb = len(response.content) / 1000.0 domain = re.findall(r"(?s)//(.*?)/", url)[0] - log( - "Downloaded {:,.1f}KB from {}" - " in {:,.2f} seconds".format(size_kb, domain, time.time() - start_time) - ) + log(f"Downloaded {size_kb:,.1f}KB from {domain}" f" in {time.time() - start_time:,.2f} seconds") try: response_json = response.json() if "remark" in response_json: log( 'Server remark: "{}"'.format( - response_json["remark"], level=lg.WARNING + response_json["remark"], ) ) elif "error" in response_json: @@ -494,9 +467,7 @@ def nrel_api_cbr_request(data): except Exception: # deal with response satus_code here log( - "Server at {} returned status code {} and no JSON data.".format( - domain, response.status_code - ), + f"Server at {domain} returned status code {response.status_code} and no JSON data.", level=lg.ERROR, ) else: @@ -520,7 +491,7 @@ def nrel_bcl_api_request(data): except KeyError: url = "https://bcl.nrel.gov/api/search/" else: - url = "https://bcl.nrel.gov/api/search/{}.{}".format(keyword, kformat) + url = f"https://bcl.nrel.gov/api/search/{keyword}.{kformat}" prepared_url = requests.Request("GET", url, params=data).prepare().url log(prepared_url) cached_response_json = get_from_cache(prepared_url) @@ -532,7 +503,7 @@ def nrel_bcl_api_request(data): else: start_time = time.time() - log('Getting from {}, "{}"'.format(url, data)) + log(f'Getting from {url}, "{data}"') response = requests.get(prepared_url) # check if an error has occurred @@ -542,16 +513,17 @@ def nrel_bcl_api_request(data): # get the response size and the domain, log result size_kb = len(response.content) / 1000.0 domain = re.findall(r"(?s)//(.*?)/", url)[0] - log( - "Downloaded {:,.1f}KB from {}" - " in {:,.2f} seconds".format(size_kb, domain, time.time() - start_time) - ) + log(f"Downloaded {size_kb:,.1f}KB from {domain}" f" in {time.time() - start_time:,.2f} seconds") # Since raise_for_status has not raised any error, we can check the response # json safely response_json = response.json() if "remark" in response_json: - log('Server remark: "{}"'.format(response_json["remark"], level=lg.WARNING)) + log( + 'Server remark: "{}"'.format( + response_json["remark"], + ) + ) save_to_cache(prepared_url, response_json) return response_json @@ -586,10 +558,8 @@ def stat_can_request(type, lang="E", dguid="2016A000011124", topic=0, notes=0, s """ prepared_url = ( "https://www12.statcan.gc.ca/rest/census-recensement" - "/CPR2016.{type}?lang={lang}&dguid={dguid}&topic=" - "{topic}¬es={notes}&stat={stat}".format( - type=type, lang=lang, dguid=dguid, topic=topic, notes=notes, stat=stat - ) + f"/CPR2016.{type}?lang={lang}&dguid={dguid}&topic=" + f"{topic}¬es={notes}&stat={stat}" ) cached_response_json = get_from_cache(prepared_url) @@ -602,23 +572,20 @@ def stat_can_request(type, lang="E", dguid="2016A000011124", topic=0, notes=0, s else: # if this URL is not already in the cache, request it start_time = time.time() - log("Getting from {}".format(prepared_url)) + log(f"Getting from {prepared_url}") response = requests.get(prepared_url) # if this URL is not already in the cache, pause, then request it # get the response size and the domain, log result size_kb = len(response.content) / 1000.0 - domain = re.findall(r"//(?s)(.*?)/", prepared_url)[0] - log( - "Downloaded {:,.1f}KB from {}" - " in {:,.2f} seconds".format(size_kb, domain, time.time() - start_time) - ) + domain = re.findall(r"(?s)//(.*?)/", prepared_url)[0] + log(f"Downloaded {size_kb:,.1f}KB from {domain}" f" in {time.time() - start_time:,.2f} seconds") try: response_json = response.json() if "remark" in response_json: log( 'Server remark: "{}"'.format( - response_json["remark"], level=lg.WARNING + response_json["remark"], ) ) save_to_cache(prepared_url, response_json) @@ -636,8 +603,7 @@ def stat_can_request(type, lang="E", dguid="2016A000011124", topic=0, notes=0, s return response_json # deal with response status_code here log( - "Server at {} returned status code {} and no JSON " - "data.".format(domain, response.status_code), + f"Server at {domain} returned status code {response.status_code} and no JSON data.", level=lg.ERROR, ) else: @@ -665,10 +631,7 @@ def stat_can_geo_request(type="json", lang="E", geos="PR", cpt="00"): British Columbia 60 = Yukon 61 = Northwest Territories 62 = Nunavut. """ prepared_url = ( - "https://www12.statcan.gc.ca/rest/census-recensement" - "/CR2016Geo.{type}?lang={lang}&geos={geos}&cpt={cpt}".format( - type=type, lang=lang, geos=geos, cpt=cpt - ) + f"https://www12.statcan.gc.ca/rest/census-recensement/CR2016Geo.{type}?lang={lang}&geos={geos}&cpt={cpt}" ) cached_response_json = get_from_cache(prepared_url) @@ -681,23 +644,20 @@ def stat_can_geo_request(type="json", lang="E", geos="PR", cpt="00"): else: # if this URL is not already in the cache, request it start_time = time.time() - log("Getting from {}".format(prepared_url)) + log(f"Getting from {prepared_url}") response = requests.get(prepared_url) # if this URL is not already in the cache, pause, then request it # get the response size and the domain, log result size_kb = len(response.content) / 1000.0 - domain = re.findall(r"//(?s)(.*?)/", prepared_url)[0] - log( - "Downloaded {:,.1f}KB from {}" - " in {:,.2f} seconds".format(size_kb, domain, time.time() - start_time) - ) + domain = re.findall(r"(?s)//(.*?)/", prepared_url)[0] + log(f"Downloaded {size_kb:,.1f}KB from {domain}" f" in {time.time() - start_time:,.2f} seconds") try: response_json = response.json() if "remark" in response_json: log( 'Server remark: "{}"'.format( - response_json["remark"], level=lg.WARNING + response_json["remark"], ) ) save_to_cache(prepared_url, response_json) @@ -766,32 +726,28 @@ def download_bld_window( """ # check if one or multiple values if isinstance(u_factor, tuple): - u_factor_dict = "[{} TO {}]".format(u_factor[0], u_factor[1]) + u_factor_dict = f"[{u_factor[0]} TO {u_factor[1]}]" else: # apply tolerance - u_factor_dict = "[{} TO {}]".format( - u_factor * (1 - tolerance), u_factor * (1 + tolerance) - ) + u_factor_dict = f"[{u_factor * (1 - tolerance)} TO {u_factor * (1 + tolerance)}]" if isinstance(shgc, tuple): - shgc_dict = "[{} TO {}]".format(shgc[0], shgc[1]) + shgc_dict = f"[{shgc[0]} TO {shgc[1]}]" else: # apply tolerance - shgc_dict = "[{} TO {}]".format(shgc * (1 - tolerance), shgc * (1 + tolerance)) + shgc_dict = f"[{shgc * (1 - tolerance)} TO {shgc * (1 + tolerance)}]" if isinstance(vis_trans, tuple): - vis_trans_dict = "[{} TO {}]".format(vis_trans[0], vis_trans[1]) + vis_trans_dict = f"[{vis_trans[0]} TO {vis_trans[1]}]" else: # apply tolerance - vis_trans_dict = "[{} TO {}]".format( - vis_trans * (1 - tolerance), vis_trans * (1 + tolerance) - ) + vis_trans_dict = f"[{vis_trans * (1 - tolerance)} TO {vis_trans * (1 + tolerance)}]" data = { "keyword": "Window", "format": "json", "f[]": [ - "fs_a_Overall_U-factor:{}".format(u_factor_dict), - "fs_a_VLT:{}".format(vis_trans_dict), - "fs_a_SHGC:{}".format(shgc_dict), + f"fs_a_Overall_U-factor:{u_factor_dict}", + f"fs_a_VLT:{vis_trans_dict}", + f"fs_a_SHGC:{shgc_dict}", 'sm_component_type:"Window"', ], "oauth_consumer_key": oauth_key, @@ -800,17 +756,16 @@ def download_bld_window( if response: log( - "found {} possible window component(s) matching " - "the range {}".format(len(response["result"]), str(data["f[]"])) + "found {} possible window component(s) matching the range {}".format( + len(response["result"]), str(data["f[]"]) + ) ) # download components uids = [] for component in response["result"]: uids.append(component["component"]["uid"]) - url = "https://bcl.nrel.gov/api/component/download?uids={}".format( - "," "".join(uids) - ) + url = "https://bcl.nrel.gov/api/component/download?uids={}".format(",".join(uids)) # actual download with get() d_response = requests.get(url) @@ -824,9 +779,7 @@ def download_bld_window( for info in z.infolist(): if info.filename.endswith(extension): z.extract(info, path=output_folder) - results.append( - os.path.join(settings.data_folder, info.filename) - ) + results.append(os.path.join(settings.data_folder, info.filename)) return results else: return response["result"] diff --git a/archetypal/eplus_interface/basement.py b/archetypal/eplus_interface/basement.py index c3be755b1..ec9eb1140 100644 --- a/archetypal/eplus_interface/basement.py +++ b/archetypal/eplus_interface/basement.py @@ -11,7 +11,7 @@ from tqdm.auto import tqdm from tqdm.contrib.logging import logging_redirect_tqdm -from ..utils import log +from archetypal.utils import log from ..eplus_interface.exceptions import EnergyPlusProcessError @@ -46,21 +46,17 @@ def cmd(self): def run(self): """Wrapper around the Basement command line interface.""" - self.cancelled = False - # get version from IDF object or by parsing the IDF file for it # Move files into place - # copy "%wthrfile%.epw" in.epw self.epw = self.idf.epw.copy(self.run_dir / "in.epw").expand() self.idfname = Path(self.idf.savecopy(self.run_dir / "in.idf")).expand() self.idd = self.idf.iddname.copy(self.run_dir).expand() - # Get executable using shutil.which (determines the extension based on - # the platform, eg: .exe. And copy the executable to tmp + # Get executable using shutil.which basemenet_exe = shutil.which("Basement", path=self.eplus_home) if basemenet_exe is None: log( - f"The Basement program could not be found at " f"'{self.eplus_home}", + f"The Basement program could not be found at '{self.eplus_home}'", lg.WARNING, ) return @@ -70,27 +66,22 @@ def run(self): self.basement_idd = (self.eplus_home / "BasementGHT.idd").copy(self.run_dir) self.outfile = self.idf.name - # The BasementGHTin.idf file is copied from the self.include list ( - # added by ExpandObjects. If self.include is empty, no need to run - # Basement. + # The BasementGHTin.idf file is copied from the self.include list self.include = [Path(file).copy(self.run_dir) for file in self.idf.include] if "BasementGHTIn.idf" not in self.include: self.cleanup_callback() return - self.msg_callback( - "===== (Run Basement Temperature Generation) ===== Start =====" - ) + self.msg_callback("===== (Run Basement Temperature Generation) ===== Start =====") self.msg_callback("Running Basement.exe") self.msg_callback(f"Input File : {self.idfname}") self.msg_callback( - f"Output Files: {self.outfile}_bsmt.csv " - f"{self.outfile}_bsmt.audit {self.outfile}_bsmt.out" + f"Output Files: {self.outfile}_bsmt.csv " f"{self.outfile}_bsmt.audit {self.outfile}_bsmt.out" ) self.msg_callback(f"Weather File: {self.epw}") # Run Slab Program - with logging_redirect_tqdm(loggers=[lg.getLogger(self.idf.name)]): + with logging_redirect_tqdm(loggers=[lg.getLogger("archetypal")]): with tqdm( unit_scale=True, miniters=1, @@ -105,14 +96,18 @@ def run(self): cwd=self.run_dir, ) start_time = time.time() - self.msg_callback( - "Begin Basement Temperature Calculation processing . . ." - ) + self.msg_callback("Begin Basement Temperature Calculation processing . . .") - for line in self.p.stdout: - self.msg_callback(line.decode("utf-8").strip("\n")) + # Read stdout line by line + for line in iter(self.p.stdout.readline, b""): + decoded_line = line.decode("utf-8").strip() + self.msg_callback(decoded_line) progress.update() + # Process stderr after stdout is fully read + stderr = self.p.stderr.read() + stderr_lines = stderr.decode("utf-8").splitlines() + # We explicitly close stdout self.p.stdout.close() @@ -121,20 +116,16 @@ def run(self): # Communicate callbacks if self.cancelled: - self.msg_callback("RunSlab cancelled") - # self.cancelled_callback(self.std_out, self.std_err) + self.msg_callback("Basement cancelled") else: if self.p.returncode == 0: - self.msg_callback( - "RunSlab completed in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + self.msg_callback(f"Basement completed in {time.time() - start_time:,.2f} seconds") self.success_callback() - for line in self.p.stderr: - self.msg_callback(line.decode("utf-8")) + for line in stderr_lines: + self.msg_callback(line) else: - self.msg_callback("RunSlab failed") + self.msg_callback("Basement failed") + self.msg_callback("\n".join(stderr_lines), level=lg.ERROR) self.failure_callback() def msg_callback(self, *args, **kwargs): @@ -149,9 +140,7 @@ def success_callback(self): input_ = self.run_dir / "RunINPUT.TXT" if input_.exists(): - input_ = input_.rename( - self.idf.output_directory / f"{self.outfile}_bsmt.out" - ) + input_ = input_.rename(self.idf.output_directory / f"{self.outfile}_bsmt.out") debug_ = self.run_dir / "RunDEBUGOUT.txt" if debug_.exists(): @@ -199,11 +188,9 @@ def failure_callback(self): """Parse error file and log""" error_filename = self.run_dir / "eplusout.err" if error_filename.exists(): - with open(error_filename, "r") as stderr: + with open(error_filename) as stderr: stderr_r = stderr.read() - self.exception = EnergyPlusProcessError( - cmd=self.cmd, stderr=stderr_r, idf=self.idf - ) + self.exception = EnergyPlusProcessError(cmd=self.cmd, stderr=stderr_r, idf=self.idf) self.cleanup_callback() def cancelled_callback(self, stdin, stdout): @@ -216,11 +203,7 @@ def eplus_home(self): if self.idf.file_version <= Version("7.2"): install_dir = self.idf.file_version.current_install_dir / "bin" else: - install_dir = ( - self.idf.file_version.current_install_dir - / "PreProcess" - / "GrndTempCalc" - ) + install_dir = self.idf.file_version.current_install_dir / "PreProcess" / "GrndTempCalc" return install_dir.expand() def stop(self): @@ -228,3 +211,4 @@ def stop(self): self.msg_callback("Attempting to cancel simulation ...") self.cancelled = True self.p.kill() + self.cancelled_callback(self.std_out, self.std_err) diff --git a/archetypal/eplus_interface/energy_plus.py b/archetypal/eplus_interface/energy_plus.py index f82f0724d..c27aa2a31 100644 --- a/archetypal/eplus_interface/energy_plus.py +++ b/archetypal/eplus_interface/energy_plus.py @@ -99,13 +99,10 @@ def __init__( self.get_exe_path() def get_exe_path(self): - (eplus_exe_path, eplus_weather_path) = eppy.runner.run_functions.install_paths( - self.ep_version.dash, self.i - ) + (eplus_exe_path, eplus_weather_path) = eppy.runner.run_functions.install_paths(self.ep_version.dash, self.i) if not Path(eplus_exe_path).exists(): raise EnergyPlusVersionError( - msg=f"No EnergyPlus Executable found for version " - f"{EnergyPlusVersion(self.ep_version)}" + msg=f"No EnergyPlus Executable found for version " f"{EnergyPlusVersion(self.ep_version)}" ) self.eplus_exe_path = Path(eplus_exe_path).expand() self.eplus_weather_path = Path(eplus_weather_path).expand() @@ -159,13 +156,13 @@ def stop(self): self.msg_callback("Attempting to cancel simulation ...") self.cancelled = True self.p.kill() + self.cancelled_callback(self.std_out, self.std_err) def run(self): """Wrapper around the EnergyPlus command line interface. Adapted from :func:`eppy.runner.runfunctions.run`. """ - self.cancelled = False # get version from IDF object or by parsing the IDF file for it tmp = self.tmp @@ -236,11 +233,7 @@ def run(self): self.cancelled_callback(self.std_out, self.std_err) else: if self.p.returncode == 0: - self.msg_callback( - "EnergyPlus Completed in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + self.msg_callback(f"EnergyPlus Completed in {time.time() - start_time:,.2f} seconds") self.success_callback() else: self.msg_callback("Simulation failed") @@ -258,12 +251,11 @@ def success_callback(self): try: save_dir.rmtree_p() # purge target dir self.run_dir.copytree(save_dir) # copy files - except PermissionError as e: + except PermissionError: pass else: log( - "Files generated at the end of the simulation: %s" - % "\n".join(save_dir.files()), + "Files generated at the end of the simulation: %s" % "\n".join(save_dir.files()), lg.DEBUG, name=self.name, ) @@ -271,23 +263,19 @@ def success_callback(self): def failure_callback(self): error_filename = self.run_dir / self.idf.output_prefix + "out.err" try: - with open(error_filename, "r") as stderr: + with open(error_filename) as stderr: stderr_r = stderr.read() if self.idf.keep_data_err: failed_dir = self.idf.simulation_dir.mkdir_p() try: failed_dir.rmtree_p() - except PermissionError as e: + except PermissionError: log(f"Could not remove {failed_dir}") else: self.run_dir.copytree(failed_dir) # no need to create folder before - self.exception = EnergyPlusProcessError( - cmd=self.cmd, stderr=stderr_r, idf=self.idf - ) + self.exception = EnergyPlusProcessError(cmd=self.cmd, stderr=stderr_r, idf=self.idf) except FileNotFoundError: - self.exception = CalledProcessError( - self.p.returncode, cmd=self.cmd, stderr=self.p.stderr - ) + self.exception = CalledProcessError(self.p.returncode, cmd=self.cmd, stderr=self.p.stderr) def cancelled_callback(self, stdin, stdout): pass @@ -297,8 +285,7 @@ def eplus_home(self): eplus_exe, eplus_home = paths_from_version(self.idf.as_version.dash) if not Path(eplus_home).exists(): raise EnergyPlusVersionError( - msg=f"No EnergyPlus Executable found for version " - f"{EnergyPlusVersion(self.idf.as_version)}" + msg=f"No EnergyPlus Executable found for version " f"{EnergyPlusVersion(self.idf.as_version)}" ) else: return Path(eplus_home) diff --git a/archetypal/eplus_interface/expand_objects.py b/archetypal/eplus_interface/expand_objects.py index 7e6c40cb9..79adbb184 100644 --- a/archetypal/eplus_interface/expand_objects.py +++ b/archetypal/eplus_interface/expand_objects.py @@ -1,4 +1,5 @@ """ExpandObjects module""" + import logging as lg import shutil import subprocess @@ -98,10 +99,7 @@ def run(self): # self.cancelled_callback(self.std_out, self.std_err) else: if self.p.returncode == 0: - self.msg_callback( - f"ExpandObjects completed in " - f"{time.time() - start_time:,.2f} seconds" - ) + self.msg_callback(f"ExpandObjects completed in " f"{time.time() - start_time:,.2f} seconds") self.success_callback() else: self.failure_callback() @@ -125,9 +123,7 @@ def success_callback(self): self.idf.idfname = file if (Path(self.run_dir) / "GHTIn.idf").exists(): self.idf.include.append( - (Path(self.run_dir) / "GHTIn.idf").copy( - self.idf.output_directory.makedirs_p() / "GHTIn.idf" - ) + (Path(self.run_dir) / "GHTIn.idf").copy(self.idf.output_directory.makedirs_p() / "GHTIn.idf") ) if (Path(self.run_dir) / "BasementGHTIn.idf").exists(): @@ -141,9 +137,7 @@ def failure_callback(self): """Read stderr and pass to logger.""" for line in self.p.stderr: self.msg_callback(line.decode("utf-8"), level=lg.ERROR) - self.exception = CalledProcessError( - self.p.returncode, cmd=self.cmd, stderr=self.p.stderr - ) + self.exception = CalledProcessError(self.p.returncode, cmd=self.cmd, stderr=self.p.stderr) def cancelled_callback(self, stdin, stdout): """Call on cancelled.""" @@ -163,3 +157,4 @@ def stop(self): self.msg_callback("Attempting to cancel simulation ...") self.cancelled = True self.p.kill() + self.cancelled_callback(self.std_out, self.std_err) diff --git a/archetypal/eplus_interface/slab.py b/archetypal/eplus_interface/slab.py index 64fbca9ca..504bc6715 100644 --- a/archetypal/eplus_interface/slab.py +++ b/archetypal/eplus_interface/slab.py @@ -4,6 +4,7 @@ import shutil import subprocess import time +from io import StringIO from threading import Thread from packaging.version import Version @@ -12,7 +13,6 @@ from tqdm.contrib.logging import logging_redirect_tqdm from archetypal.eplus_interface.exceptions import EnergyPlusProcessError -from archetypal.eplus_interface.version import EnergyPlusVersion from archetypal.utils import log @@ -41,59 +41,66 @@ def __init__(self, idf, tmp): @property def cmd(self): """Get the command.""" - cmd_path = Path(shutil.which("Slab", path=self.run_dir)) - return [cmd_path] + # if platform is windows + return [self.slabexe] def run(self): - """Wrapper around the EnergyPlus command line interface.""" + """Wrapper around the Slab command line interface.""" self.cancelled = False - # get version from IDF object or by parsing the IDF file for it # Move files into place self.epw = self.idf.epw.copy(self.run_dir / "in.epw").expand() self.idfname = Path(self.idf.savecopy(self.run_dir / "in.idf")).expand() self.idd = self.idf.iddname.copy(self.run_dir).expand() - # Get executable using shutil.which (determines the extension based on - # the platform, eg: .exe. And copy the executable to tmp + # Get executable using shutil.which slab_exe = shutil.which("Slab", path=self.eplus_home) if slab_exe is None: log( - f"The Slab program could not be found at " f"'{self.eplus_home}'", + f"The Slab program could not be found at '{self.eplus_home}'", lg.WARNING, ) return - self.slabexe = Path(slab_exe).copy(self.run_dir) + else: + slab_exe = (self.eplus_home / slab_exe).expand() + self.slabexe = slab_exe self.slabidd = (self.eplus_home / "SlabGHT.idd").copy(self.run_dir) + self.outfile = self.idf.name - # The GHTin.idf file is copied from the self.include list (added by - # ExpandObjects. If self.include is empty, no need to run Slab. + # The GHTin.idf file is copied from the self.include list self.include = [Path(file).copy(self.run_dir) for file in self.idf.include] if not self.include: self.cleanup_callback() return # Run Slab Program - with logging_redirect_tqdm(loggers=[lg.getLogger(self.idf.name)]): + with logging_redirect_tqdm(loggers=[lg.getLogger("archetypal")]): with tqdm( unit_scale=True, miniters=1, - desc=f"RunSlab #{self.idf.position}-{self.idf.name}", + desc=f"{self.slabexe} #{self.idf.position}-{self.idf.name}", position=self.idf.position, ) as progress: self.p = subprocess.Popen( self.cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, - shell=True, # can use shell - cwd=self.run_dir.abspath(), + shell=False, + cwd=self.run_dir, ) start_time = time.time() self.msg_callback("Begin Slab Temperature Calculation processing . . .") - for line in self.p.stdout: - self.msg_callback(line.decode("utf-8").strip("\n")) + + # Read stdout line by line + for line in iter(self.p.stdout.readline, b""): + decoded_line = line.decode("utf-8").strip() + self.msg_callback(decoded_line) progress.update() + # Process stderr after stdout is fully read + stderr = self.p.stderr.read() + stderr_lines = stderr.decode("utf-8").splitlines() + # We explicitly close stdout self.p.stdout.close() @@ -102,20 +109,16 @@ def run(self): # Communicate callbacks if self.cancelled: - self.msg_callback("RunSlab cancelled") - # self.cancelled_callback(self.std_out, self.std_err) + self.msg_callback("Slab cancelled") else: if self.p.returncode == 0: - self.msg_callback( - "RunSlab completed in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + self.msg_callback(f"Slab completed in {time.time() - start_time:,.2f} seconds") self.success_callback() - for line in self.p.stderr: - self.msg_callback(line.decode("utf-8")) + for line in stderr_lines: + self.msg_callback(line) else: - self.msg_callback("RunSlab failed") + self.msg_callback("Slab failed", level=lg.ERROR) + self.msg_callback("\n".join(stderr_lines), level=lg.ERROR) self.failure_callback() def msg_callback(self, *args, **kwargs): @@ -124,16 +127,25 @@ def msg_callback(self, *args, **kwargs): def success_callback(self): """Parse surface temperature and append to IDF file.""" - temp_schedule = self.run_dir / "SLABSurfaceTemps.txt" - if temp_schedule.exists(): - with open(self.idf.idfname, "a") as outfile: - with open(temp_schedule) as infile: - next(infile) # Skipping first line - next(infile) # Skipping second line - for line in infile: - outfile.write(line) - # invalidate attributes dependant on idfname, since it has changed - self.idf._reset_dependant_vars("idfname") + for temp_schedule in self.run_dir.glob("SLABSurfaceTemps*"): + if temp_schedule.exists(): + slab_models = self.idf.__class__( + StringIO(open(temp_schedule).read()), + file_version=self.idf.file_version, + as_version=self.idf.as_version, + prep_outputs=False, + ) + # Loop on all objects and using self.newidfobject + added_objects = [] + for sequence in slab_models.idfobjects.values(): + if sequence: + for obj in sequence: + data = obj.to_dict() + key = data.pop("key") + added_objects.append(self.idf.newidfobject(key=key.upper(), **data)) + del slab_models # remove loaded_string model + else: + self.msg_callback("No SLABSurfaceTemps.txt file found.", level=lg.ERROR) self.cleanup_callback() def cleanup_callback(self): @@ -152,11 +164,9 @@ def failure_callback(self): """Parse error file and log""" error_filename = self.run_dir / "eplusout.err" if error_filename.exists(): - with open(error_filename, "r") as stderr: + with open(error_filename) as stderr: stderr_r = stderr.read() - self.exception = EnergyPlusProcessError( - cmd=self.cmd, stderr=stderr_r, idf=self.idf - ) + self.exception = EnergyPlusProcessError(cmd=self.cmd, stderr=stderr_r, idf=self.idf) self.cleanup_callback() def cancelled_callback(self, stdin, stdout): @@ -169,11 +179,7 @@ def eplus_home(self): if self.idf.file_version <= Version("7.2"): install_dir = self.idf.file_version.current_install_dir / "bin" else: - install_dir = ( - self.idf.file_version.current_install_dir - / "PreProcess" - / "GrndTempCalc" - ) + install_dir = self.idf.file_version.current_install_dir / "PreProcess" / "GrndTempCalc" return install_dir.expand() def stop(self): @@ -181,3 +187,4 @@ def stop(self): self.msg_callback("Attempting to cancel simulation ...") self.cancelled = True self.p.kill() + self.cancelled_callback(self.std_out, self.std_err) diff --git a/archetypal/eplus_interface/transition.py b/archetypal/eplus_interface/transition.py index 24a8ff92e..483a95e2c 100644 --- a/archetypal/eplus_interface/transition.py +++ b/archetypal/eplus_interface/transition.py @@ -57,14 +57,12 @@ def get_exe_path(self): if not self.trans_exec[self.trans].exists(): raise EnergyPlusProcessError( cmd=self.trans_exec[self.trans], - stderr="The specified EnergyPlus version (v{}) does not have" - " the required transition program '{}' in the " + stderr=f"The specified EnergyPlus version (v{self.idf.as_version}) does not have" + f" the required transition program '{self.trans_exec[self.trans]}' in the " "PreProcess folder. See the documentation " "(archetypal.readthedocs.io/troubleshooting.html#missing" "-transition-programs) " - "to solve this issue".format( - self.idf.as_version, self.trans_exec[self.trans] - ), + "to solve this issue", idf=self.idf, ) return self.trans_exec[self.trans] @@ -94,9 +92,7 @@ def copytree(src, dst, symlinks=False, ignore=None): if self._trans_exec is None: copytree(self.idf.idfversionupdater_dir, self.running_directory) self._trans_exec = { - EnergyPlusVersion( - re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", exec).group(1) - ): exec + EnergyPlusVersion(re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", exec).group(1)): exec for exec in self.running_directory.files("Transition-V*") } return self._trans_exec @@ -104,11 +100,7 @@ def copytree(src, dst, symlinks=False, ignore=None): @property def transitions(self) -> list: """Return a sorted list of necessary transitions.""" - transitions = [ - key - for key in self.trans_exec - if self.idf.as_version >= key > self.idf.file_version - ] + transitions = [key for key in self.trans_exec if self.idf.as_version >= key > self.idf.file_version] transitions.sort() return transitions @@ -214,11 +206,7 @@ def run(self): # self.cancelled_callback(self.std_out, self.std_err) else: if self.p.returncode == 0: - self.msg_callback( - "Transition completed in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + self.msg_callback(f"Transition completed in {time.time() - start_time:,.2f} seconds") last_successful_transition = trans.trans self.success_callback() for line in self.p.stderr: @@ -230,24 +218,25 @@ def run(self): self.msg_callback("Transition failed") self.failure_callback() + def stop(self): + if self.p.poll() is None: + self.msg_callback("Attempting to cancel simulation ...") + self.cancelled = True + self.p.kill() + self.cancelled_callback(self.std_out, self.std_err) + @property def trans_exec(self) -> dict: """Return dict of {EnergyPlusVersion, executable} for each transitions.""" return { - EnergyPlusVersion( - re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", exec).group(1) - ): exec + EnergyPlusVersion(re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", exec).group(1)): exec for exec in self.idf.idfversionupdater_dir.files("Transition-V*") } @property def transitions(self): """Return a sorted list of necessary transitions.""" - transitions = [ - key - for key in self.trans_exec - if self.idf.as_version >= key > self.idf.file_version - ] + transitions = [key for key in self.trans_exec if self.idf.as_version >= key > self.idf.file_version] transitions.sort() return transitions @@ -284,9 +273,7 @@ def failure_callback(self): """Read stderr and pass to logger.""" for line in self.p.stderr: self.msg_callback(line.decode("utf-8"), level=lg.ERROR) - self.exception = CalledProcessError( - self.p.returncode, cmd=self.cmd, stderr=self.p.stderr - ) + self.exception = CalledProcessError(self.p.returncode, cmd=self.cmd, stderr=self.p.stderr) def cancelled_callback(self, stdin, stdout): """Call on cancelled.""" @@ -298,8 +285,7 @@ def eplus_home(self): eplus_exe, eplus_home = paths_from_version(self.idf.as_version.dash) if not Path(eplus_home).exists(): self.exception = EnergyPlusVersionError( - msg=f"No EnergyPlus Executable found for version " - f"{EnergyPlusVersion(self.idf.as_version)}" + msg=f"No EnergyPlus Executable found for version " f"{EnergyPlusVersion(self.idf.as_version)}" ) else: return Path(eplus_home) diff --git a/archetypal/eplus_interface/version.py b/archetypal/eplus_interface/version.py index 263316af2..eb44629bc 100644 --- a/archetypal/eplus_interface/version.py +++ b/archetypal/eplus_interface/version.py @@ -82,14 +82,7 @@ def latest(cls): version = next( iter( sorted( - ( - Version( - re.search(r"\d+(-\d+)+", home.stem) - .group() - .replace("-", ".") - ) - for home in eplus_homes - ), + (Version(re.search(r"\d+(-\d+)+", home.stem).group().replace("-", ".")) for home in eplus_homes), reverse=True, ) ) @@ -117,9 +110,7 @@ def current_install_dir(self): try: return self.install_locations[self.dash] except KeyError: - raise EnergyPlusVersionError( - f"EnergyPlusVersion {self.dash} is not installed." - ) + raise EnergyPlusVersionError(f"EnergyPlusVersion {self.dash} is not installed.") @property def tuple(self) -> tuple: @@ -222,7 +213,7 @@ def __copy__(self): def __repr__(self) -> str: """Return a representation of self.""" - return f"" + return f"" def get_eplus_basedirs(): diff --git a/archetypal/idfclass/__init__.py b/archetypal/idfclass/__init__.py index a1d2a863e..894d731c6 100644 --- a/archetypal/idfclass/__init__.py +++ b/archetypal/idfclass/__init__.py @@ -17,6 +17,5 @@ from .idf import IDF from .meters import Meters from .outputs import Outputs -from .reports import get_ideal_loads_summary from .util import hash_model from .variables import Variables diff --git a/archetypal/idfclass/end_use_balance.py b/archetypal/idfclass/end_use_balance.py index 9c326c457..ba7a5917e 100644 --- a/archetypal/idfclass/end_use_balance.py +++ b/archetypal/idfclass/end_use_balance.py @@ -115,26 +115,15 @@ def __init__( self.is_heating = is_heating @classmethod - def from_sql_file( - cls, sql_file, units="kWh", power_units="kW", outdoor_surfaces_only=True - ): + def from_sql_file(cls, sql_file, units="kWh", power_units="kW", outdoor_surfaces_only=True): sql = Sql(sql_file) - _hvac_input = sql.timeseries_by_name(cls.HVAC_INPUT_SENSIBLE).to_units( - power_units - ) - _hvac_input_heated_surface = sql.timeseries_by_name( - cls.HVAC_INPUT_HEATED_SURFACE - ).to_units(units) - _hvac_input_cooled_surface = sql.timeseries_by_name( - cls.HVAC_INPUT_COOLED_SURFACE - ).to_units(units) + _hvac_input = sql.timeseries_by_name(cls.HVAC_INPUT_SENSIBLE).to_units(power_units) + _hvac_input_heated_surface = sql.timeseries_by_name(cls.HVAC_INPUT_HEATED_SURFACE).to_units(units) + _hvac_input_cooled_surface = sql.timeseries_by_name(cls.HVAC_INPUT_COOLED_SURFACE).to_units(units) # convert power to energy assuming the reporting frequency freq = pd.infer_freq(_hvac_input.index) - assert freq.lower() == "h", ( - f"freq='{freq}': A reporting frequency other than H is not yet " - f"supported." - ) + assert freq.lower() == "h", f"freq='{freq}': A reporting frequency other than H is not yet " f"supported." freq_to_unit = {"h": "hr"} _hvac_input = _hvac_input.apply( lambda row: unit_registry.Quantity( @@ -169,9 +158,7 @@ def from_sql_file( cooling = _hvac_input.mul(is_cooling, level="KeyValue", axis=1) lighting = sql.timeseries_by_name(cls.LIGHTING).to_units(units) - zone_multipliers = sql.zone_info.set_index("ZoneName")["Multiplier"].rename( - "KeyValue" - ) + zone_multipliers = sql.zone_info.set_index("ZoneName")["Multiplier"].rename("KeyValue") lighting = cls.apply_multipliers( lighting, zone_multipliers, @@ -204,19 +191,13 @@ def from_sql_file( mech_vent = None nat_vent = None if len(infil_gain) == len(infil_loss): - infiltration = cls.subtract_loss_from_gain( - infil_gain, infil_loss, level="Name" - ) + infiltration = cls.subtract_loss_from_gain(infil_gain, infil_loss, level="Name") if nat_vent_gain.shape == nat_vent_loss.shape: - nat_vent = cls.subtract_loss_from_gain( - nat_vent_gain, nat_vent_loss, level="Name" - ) + nat_vent = cls.subtract_loss_from_gain(nat_vent_gain, nat_vent_loss, level="Name") # get the surface energy flow opaque_flow = sql.timeseries_by_name(cls.OPAQUE_ENERGY_FLOW).to_units(units) - opaque_storage = sql.timeseries_by_name(cls.OPAQUE_ENERGY_STORAGE).to_units( - units - ) + opaque_storage = sql.timeseries_by_name(cls.OPAQUE_ENERGY_STORAGE).to_units(units) opaque_storage_ = opaque_storage.copy() opaque_storage_.columns = opaque_flow.columns opaque_flow = -(opaque_flow + opaque_storage_) @@ -224,32 +205,18 @@ def from_sql_file( window_loss = cls.apply_multipliers(window_loss, zone_multipliers) window_gain = sql.timeseries_by_name(cls.WINDOW_GAIN).to_units(units) window_gain = cls.apply_multipliers(window_gain, zone_multipliers) - window_flow = cls.subtract_loss_from_gain( - window_gain, window_loss, level="Name" - ) - window_flow = cls.subtract_solar_from_window_net( - window_flow, solar_gain, level="KeyValue" - ) + window_flow = cls.subtract_loss_from_gain(window_gain, window_loss, level="Name") + window_flow = cls.subtract_solar_from_window_net(window_flow, solar_gain, level="KeyValue") - opaque_flow = cls.match_opaque_surface_to_zone( - sql.surfaces_table, opaque_flow, sql.zone_info - ) - opaque_storage = cls.match_opaque_surface_to_zone( - sql.surfaces_table, opaque_storage, sql.zone_info - ) + opaque_flow = cls.match_opaque_surface_to_zone(sql.surfaces_table, opaque_flow, sql.zone_info) + opaque_storage = cls.match_opaque_surface_to_zone(sql.surfaces_table, opaque_storage, sql.zone_info) if outdoor_surfaces_only: # inside surfaces are identified by ExtBoundCond > 0 - inside_surfaces = sql.surfaces_table[lambda x: x["ExtBoundCond"] > 0][ - "SurfaceName" - ].values.tolist() + inside_surfaces = sql.surfaces_table[lambda x: x["ExtBoundCond"] > 0]["SurfaceName"].values.tolist() # drop inside surfaces - opaque_flow = opaque_flow.drop( - inside_surfaces, level="KeyValue", axis=1, errors="ignore" - ) - opaque_storage = opaque_storage.drop( - inside_surfaces, level="KeyValue", axis=1, errors="ignore" - ) + opaque_flow = opaque_flow.drop(inside_surfaces, level="KeyValue", axis=1, errors="ignore") + opaque_storage = opaque_storage.drop(inside_surfaces, level="KeyValue", axis=1, errors="ignore") window_energy_flow = window_flow bal_obj = cls( @@ -285,10 +252,7 @@ def apply_multipliers(cls, data, idf): if isinstance(idf, IDF): multipliers = ( pd.Series( - { - zone.Name.upper(): zone.Multiplier - for zone in idf.idfobjects["ZONE"] - }, + {zone.Name.upper(): zone.Multiplier for zone in idf.idfobjects["ZONE"]}, name="Key_Name", ) .replace({"": 1}) @@ -303,9 +267,7 @@ def apply_multipliers(cls, data, idf): return data.mul(multipliers, level=key, axis=1) @classmethod - def subtract_cooled_from_heated_surface( - cls, _hvac_input_cooled_surface, _hvac_input_heated_surface - ): + def subtract_cooled_from_heated_surface(cls, _hvac_input_cooled_surface, _hvac_input_heated_surface): if _hvac_input_cooled_surface.empty: return _hvac_input_cooled_surface try: @@ -326,12 +288,7 @@ def subtract_cooled_from_heated_surface( @classmethod def get_rolling_sign_change(cls, data: pd.DataFrame): # create a sign series where -1 is negative and 0 or 1 is positive - sign = ( - np.sign(data) - .replace({0: np.NaN}) - .fillna(method="bfill") - .fillna(method="ffill") - ) + sign = np.sign(data).replace({0: np.nan}).fillna(method="bfill").fillna(method="ffill") # when does a change of sign occurs? sign_switch = sign != sign.shift(-1) # From sign, keep when the sign switches and fill with the previous values @@ -363,9 +320,7 @@ def match_window_to_zone(cls, idf, window_flow): window.get_referenced_object( # get the zone name though the surface name "Building_Surface_Name" ).Zone_Name.upper(), - float(window.Multiplier) - if window.Multiplier != "" - else 1, # multiplier of this window. + float(window.Multiplier) if window.Multiplier != "" else 1, # multiplier of this window. ) for window in idf.getsubsurfaces() ], @@ -384,16 +339,10 @@ def match_window_to_zone(cls, idf, window_flow): window_to_surface_match.rename(index=str.upper), on="Key_Name", ) - .set_index( - ["Building_Surface_Name", "Surface_Type", "Zone_Name"], append=True - ) - ) - window_flow = ( - stacked.drop(columns=["Multiplier"]).iloc[:, 0] * stacked["Multiplier"] - ) - window_flow = window_flow.unstack( - level=["Key_Name", "Building_Surface_Name", "Surface_Type", "Zone_Name"] + .set_index(["Building_Surface_Name", "Surface_Type", "Zone_Name"], append=True) ) + window_flow = stacked.drop(columns=["Multiplier"]).iloc[:, 0] * stacked["Multiplier"] + window_flow = window_flow.unstack(level=["Key_Name", "Building_Surface_Name", "Surface_Type", "Zone_Name"]) return window_flow # .groupby("Building_Surface_Name", axis=1).sum() @@ -408,15 +357,11 @@ def match_opaque_surface_to_zone(cls, surface_table, opaque_flow, zone_info): * Outside_Boundary_Condition * Zone_Name """ - surface_with_idx = surface_table.join( - zone_info["ZoneName"], on="ZoneIndex" - ).reset_index() + surface_with_idx = surface_table.join(zone_info["ZoneName"], on="ZoneIndex").reset_index() opaque_flow.columns = pd.MultiIndex.from_frame( opaque_flow.columns.to_frame(index=False).join( surface_with_idx.reset_index() - .set_index("SurfaceName")[ - ["ClassName", "ExtBoundCond", "ZoneName", "ZoneIndex"] - ] + .set_index("SurfaceName")[["ClassName", "ExtBoundCond", "ZoneName", "ZoneIndex"]] .rename( { "ClassName": "Surface_Type", @@ -435,9 +380,7 @@ def match_opaque_surface_to_zone(cls, surface_table, opaque_flow, zone_info): @classmethod def subtract_loss_from_gain(cls, load_gain, load_loss, level="OutputVariable"): try: - columns = load_gain.rename( - columns=lambda x: str.replace(x, " Gain", ""), level=level - ).columns + columns = load_gain.rename(columns=lambda x: str.replace(x, " Gain", ""), level=level).columns except KeyError: columns = None return EnergyDataFrame( @@ -450,10 +393,7 @@ def subtract_loss_from_gain(cls, load_gain, load_loss, level="OutputVariable"): def subtract_solar_from_window_net(cls, window_flow, solar_gain, level="Key_Name"): columns = window_flow.columns return EnergyDataFrame( - ( - window_flow.groupby(level=level, axis=1).sum() - - solar_gain.groupby(level=level, axis=1).sum() - ) + (window_flow.groupby(level=level, axis=1).sum() - solar_gain.groupby(level=level, axis=1).sum()) .loc[:, list(columns.get_level_values(level))] .values, columns=columns, @@ -464,8 +404,7 @@ def subtract_solar_from_window_net(cls, window_flow, solar_gain, level="Key_Name def subtract_vent_from_system(cls, system, vent, level="Key_Name"): columns = vent.columns return EnergyDataFrame( - system.groupby(level=level, axis=1).sum().values - - vent.groupby(level=level, axis=1).sum().values, + system.groupby(level=level, axis=1).sum().values - vent.groupby(level=level, axis=1).sum().values, columns=columns, index=system.index, ) @@ -480,9 +419,7 @@ def separate_gains_and_losses(self, component, level="Key_Name") -> EnergyDataFr Returns: """ - assert ( - component in self.__dict__.keys() - ), f"{component} is not a valid attribute of EndUseBalance." + assert component in self.__dict__.keys(), f"{component} is not a valid attribute of EndUseBalance." component_df = getattr(self, component) assert not component_df.empty, "Expected a component that is not empty." print(component) @@ -540,13 +477,11 @@ def to_df(self, separate_gains_and_losses=False, level="KeyValue"): .sum() .sort_index(axis=1) ) - for (surface_type), data in self.separate_gains_and_losses( - "opaque_flow", level="Zone_Name" - ).groupby(level=["Surface_Type"], axis=1): + for (surface_type), data in self.separate_gains_and_losses("opaque_flow", level="Zone_Name").groupby( + level=["Surface_Type"], axis=1 + ): summary_by_component[surface_type] = ( - data.groupby(level=["Zone_Name", "Period", "Gain/Loss"], axis=1) - .sum() - .sort_index(axis=1) + data.groupby(level=["Zone_Name", "Period", "Gain/Loss"], axis=1).sum().sort_index(axis=1) ) else: @@ -564,40 +499,30 @@ def to_df(self, separate_gains_and_losses=False, level="KeyValue"): ]: component_df = getattr(self, component) if not component_df.empty: - summary_by_component[component] = component_df.sum( - level=level, axis=1 - ).sort_index(axis=1) + summary_by_component[component] = component_df.sum(level=level, axis=1).sort_index(axis=1) for (zone_name, surface_type), data in self.opaque_flow.groupby( level=["Zone_Name", "Surface_Type"], axis=1 ): - summary_by_component[surface_type] = data.sum( - level="Zone_Name", axis=1 - ).sort_index(axis=1) + summary_by_component[surface_type] = data.sum(level="Zone_Name", axis=1).sort_index(axis=1) levels = ["Component", "Zone_Name"] # Add contribution of heating/cooling outside air, if any if not self.air_system.empty: summary_by_component["air_system_heating"] = ( - self.air_system.xs( - "Air System Heating Coil Total Heating Energy", level="Name", axis=1 - ) + self.air_system.xs("Air System Heating Coil Total Heating Energy", level="Name", axis=1) .assign(**{"Period": "Heating Periods", "Gain/Loss": "Heat Loss"}) .set_index(["Period", "Gain/Loss"], append=True) .unstack(["Period", "Gain/Loss"]) .droplevel("IndexGroup", axis=1) ) summary_by_component["air_system_cooling"] = ( - self.air_system.xs( - "Air System Cooling Coil Total Cooling Energy", level="Name", axis=1 - ) + self.air_system.xs("Air System Cooling Coil Total Cooling Energy", level="Name", axis=1) .assign(**{"Period": "Cooling Periods", "Gain/Loss": "Heat Gain"}) .set_index(["Period", "Gain/Loss"], append=True) .unstack(["Period", "Gain/Loss"]) .droplevel("IndexGroup", axis=1) ) - return pd.concat( - summary_by_component, axis=1, verify_integrity=True, names=levels - ) + return pd.concat(summary_by_component, axis=1, verify_integrity=True, names=levels) def component_summary(self) -> EnergyDataFrame: """Return a DataFrame of components summarized annually.""" @@ -613,29 +538,13 @@ def component_summary(self) -> EnergyDataFrame: .groupby(level=["Period", "Gain/Loss"]) .sum() ) - sum_solar_gain = ( - self.separate_gains_and_losses("solar_gain") - .sum() - .groupby(level=["Period", "Gain/Loss"]) - .sum() - ) - sum_lighting = ( - self.separate_gains_and_losses("lighting") - .sum() - .groupby(level=["Period", "Gain/Loss"]) - .sum() - ) + sum_solar_gain = self.separate_gains_and_losses("solar_gain").sum().groupby(level=["Period", "Gain/Loss"]).sum() + sum_lighting = self.separate_gains_and_losses("lighting").sum().groupby(level=["Period", "Gain/Loss"]).sum() sum_infiltration = ( - self.separate_gains_and_losses("infiltration") - .sum() - .groupby(level=["Period", "Gain/Loss"]) - .sum() + self.separate_gains_and_losses("infiltration").sum().groupby(level=["Period", "Gain/Loss"]).sum() ) sum_people_gain = ( - self.separate_gains_and_losses("people_gain") - .sum() - .groupby(level=["Period", "Gain/Loss"]) - .sum() + self.separate_gains_and_losses("people_gain").sum().groupby(level=["Period", "Gain/Loss"]).sum() ) df = pd.concat( @@ -661,9 +570,7 @@ def component_summary(self) -> EnergyDataFrame: def to_sankey(self, path_or_buf): system_data = self.to_df(separate_gains_and_losses=True) - annual_system_data = ( - system_data.sum().groupby(level=["Component", "Period", "Gain/Loss"]).sum() - ) + annual_system_data = system_data.sum().groupby(level=["Component", "Period", "Gain/Loss"]).sum() annual_system_data.rename( { "people_gain": "Occupants", @@ -712,9 +619,7 @@ def to_sankey(self, path_or_buf): 'select * from "TabularDataWithStrings" as f where f."TableName" == "End Uses" and f."ReportName" == "AnnualBuildingUtilityPerformanceSummary"', conn, ) - system_input = df.pivot( - index="RowName", columns="ColumnName", values="Value" - ).loc[end_uses, energy_sources] + system_input = df.pivot(index="RowName", columns="ColumnName", values="Value").loc[end_uses, energy_sources] system_input = system_input.astype("float") system_input = EnergyDataFrame( system_input.values, @@ -736,11 +641,7 @@ def to_sankey(self, path_or_buf): .loc["Net Conditioned Building Area", ("Area", "m2")] ) - system_input = ( - system_input.replace({0: np.NaN}) - .dropna(how="all") - .dropna(how="all", axis=1) - ) + system_input = system_input.replace({0: np.nan}).dropna(how="all").dropna(how="all", axis=1) system_input.rename_axis("source", axis=1, inplace=True) system_input.rename_axis("target", axis=0, inplace=True) system_input = system_input.unstack().rename("value").reset_index().dropna() @@ -805,16 +706,14 @@ def to_sankey(self, path_or_buf): # TO EUI flows["value"] = flows["value"] / floor_area - links = pd.DataFrame( - link_heating_system_to_gains + link_cooling_system_to_gains - ) + links = pd.DataFrame(link_heating_system_to_gains + link_cooling_system_to_gains) return pd.concat([flows, links]).to_csv(path_or_buf, index=False) def _sankey_heating(self, load, load_type="heating"): assert load_type in ["heating", "cooling"] load_source = ( load.unstack("Gain/Loss") - .replace({0: np.NaN}) + .replace({0: np.nan}) .loc[:, "Heat Gain"] .dropna(how="all") .apply(abs) @@ -823,7 +722,7 @@ def _sankey_heating(self, load, load_type="heating"): ) load_target = ( load.unstack("Gain/Loss") - .replace({0: np.NaN}) + .replace({0: np.nan}) .loc[:, "Heat Loss"] .dropna(how="all") .apply(abs) @@ -833,9 +732,7 @@ def _sankey_heating(self, load, load_type="heating"): load_source["target"] = load_type.title() + " Load" load_source = load_source.rename({"Component": "source"}, axis=1) load_source["source"] = load_source["source"] + " Gain" - load_source = load_source.replace( - {f"{load_type.title()} Gain": load_type.title() + " System"} - ) + load_source = load_source.replace({f"{load_type.title()} Gain": load_type.title() + " System"}) load_source_data = load_source.to_dict(orient="records") load_target["source"] = load_type.title() + " Load" @@ -862,7 +759,7 @@ def _sankey_cooling(self, load, load_type="cooling"): assert load_type in ["heating", "cooling"] load_source = ( load.unstack("Gain/Loss") - .replace({0: np.NaN}) + .replace({0: np.nan}) .loc[:, "Heat Loss"] .dropna(how="all") .apply(abs) @@ -871,7 +768,7 @@ def _sankey_cooling(self, load, load_type="cooling"): ) load_target = ( load.unstack("Gain/Loss") - .replace({0: np.NaN}) + .replace({0: np.nan}) .loc[:, "Heat Gain"] .dropna(how="all") .apply(abs) @@ -881,18 +778,12 @@ def _sankey_cooling(self, load, load_type="cooling"): load_source["target"] = load_type.title() + " Load" load_source = load_source.rename({"Component": "source"}, axis=1) load_source["source"] = load_source["source"] + " Losses" - load_source = load_source.replace( - {f"{load_type.title()} Losses": load_type.title() + " System"} - ) + load_source = load_source.replace({f"{load_type.title()} Losses": load_type.title() + " System"}) load_source_data = load_source.to_dict(orient="records") load_target["source"] = load_type.title() + " Load" load_target = load_target.rename({"Component": "target"}, axis=1) - load_target = ( - load_target.set_index("target") - .drop(load_type.title(), errors="ignore") - .reset_index() - ) + load_target = load_target.set_index("target").drop(load_type.title(), errors="ignore").reset_index() load_target_data = load_target.to_dict(orient="records") link_system_to_gains = ( load_source.set_index("source") diff --git a/archetypal/idfclass/extensions.py b/archetypal/idfclass/extensions.py index 41a4203ed..0a81c5155 100644 --- a/archetypal/idfclass/extensions.py +++ b/archetypal/idfclass/extensions.py @@ -5,9 +5,9 @@ from eppy.bunch_subclass import BadEPFieldError from eppy.EPlusInterfaceFunctions.eplusdata import Eplusdata, Idd, removecomment from eppy.idf_msequence import Idf_MSequence -from geomeppy.patches import EpBunch from archetypal.utils import extend_class, log +from geomeppy.patches import EpBunch @extend_class(EpBunch) @@ -156,6 +156,6 @@ def _parse_idd_type(epbunch, name): def get_name_attribute(__o: EpBunch): try: - return getattr(__o, "Key_Name") + return __o.Key_Name except BadEPFieldError: # Backwards compatibility - return getattr(__o, "Name") + return __o.Name diff --git a/archetypal/idfclass/idf.py b/archetypal/idfclass/idf.py index 66d1ec835..c295060ca 100644 --- a/archetypal/idfclass/idf.py +++ b/archetypal/idfclass/idf.py @@ -3,6 +3,7 @@ Various functions for processing EnergyPlus models and retrieving results in different forms. """ + import io import itertools import logging @@ -20,7 +21,7 @@ from io import IOBase, StringIO from itertools import chain from math import isclose -from typing import IO, Iterable, Optional, Tuple, Union, Literal +from typing import IO, Iterable, Literal, Optional, Tuple, Union ReportingFrequency = Literal["Annual", "Monthly", "Daily", "Hourly", "Timestep"] @@ -31,10 +32,6 @@ from eppy.EPlusInterfaceFunctions.eplusdata import Eplusdata from eppy.idf_msequence import Idf_MSequence from eppy.modeleditor import IDDNotSetError, namebunch, newrawobject -from geomeppy import IDF as GeomIDF -from geomeppy.geom.polygons import Polygon3D -from geomeppy.patches import EpBunch, idfreader1, obj2bunch -from geomeppy.recipes import _is_window, window_vertices_given_wall from pandas import DataFrame, Series from pandas.errors import ParserError from path import Path @@ -59,6 +56,10 @@ from archetypal.idfclass.variables import Variables from archetypal.reportdata import ReportData from archetypal.utils import log, settings +from geomeppy import IDF as GeomIDF +from geomeppy.geom.polygons import Polygon3D +from geomeppy.patches import EpBunch, idfreader1, obj2bunch +from geomeppy.recipes import _is_window, window_vertices_given_wall def find_and_launch(app_name, app_path_guess, file_path): @@ -195,7 +196,7 @@ def __init__( output_suffix="L", epmacro=False, keep_data=True, - keep_data_err=True, + keep_data_err=False, position=0, name=None, output_directory=None, @@ -263,13 +264,7 @@ def __init__( self._file_encoding = encoding self._reporting_frequency = reporting_frequency self.output_prefix = None - self.name = ( - name - if name is not None - else self.idfname.basename() - if isinstance(self.idfname, Path) - else None - ) + self.name = name if name is not None else self.idfname.basename() if isinstance(self.idfname, Path) else None self.output_directory = output_directory # Set dependants to None @@ -383,33 +378,21 @@ def from_example_files(cls, example_name, epw=None, **kwargs): from pathlib import Path as Pathlib example_name = Path(example_name) - example_files_dir: Path = ( - EnergyPlusVersion.current().current_install_dir / "ExampleFiles" - ) + example_files_dir: Path = EnergyPlusVersion.current().current_install_dir / "ExampleFiles" try: - file = next( - iter(Pathlib(example_files_dir).rglob(f"{example_name.stem}.idf")) - ) + file = next(iter(Pathlib(example_files_dir).rglob(f"{example_name.stem}.idf"))) except StopIteration: - full_list = list( - map(lambda x: str(x.name), example_files_dir.files("*.idf")) - ) + full_list = list(map(lambda x: str(x.name), example_files_dir.files("*.idf"))) raise ValueError(f"Choose from: {sorted(full_list)}") if epw is not None: epw = Path(epw) if not epw.exists(): - dir_weather_data_ = ( - EnergyPlusVersion.current().current_install_dir / "WeatherData" - ) + dir_weather_data_ = EnergyPlusVersion.current().current_install_dir / "WeatherData" try: - epw = next( - iter(Pathlib(dir_weather_data_).rglob(f"{epw.stem}.epw")) - ) + epw = next(iter(Pathlib(dir_weather_data_).rglob(f"{epw.stem}.epw"))) except StopIteration: - full_list = list( - map(lambda x: str(x.name), dir_weather_data_.files("*.epw")) - ) + full_list = list(map(lambda x: str(x.name), dir_weather_data_.files("*.epw"))) raise ValueError(f"Choose EPW from: {sorted(full_list)}") return cls(file, epw=epw, **kwargs) @@ -438,14 +421,9 @@ def read(self): - idd_index : dict """ if self.getiddname() is None: - errortxt = ( - "IDD file needed to read the idf file. " - "Set it using IDF.setiddname(iddfile)" - ) + errortxt = "IDD file needed to read the idf file. Set it using IDF.setiddname(iddfile)" raise IDDNotSetError(errortxt) - readout = idfreader1( - self.idfname, self.iddname, self, commdct=self.idd_info, block=self.block - ) + readout = idfreader1(self.idfname, self.iddname, self, commdct=self.idd_info, block=self.block) (self.idfobjects, block, self.model, idd_info, idd_index, idd_version) = readout self.setidd(idd_info, idd_index, block, idd_version) @@ -546,9 +524,7 @@ def iddname(self, value): def file_version(self) -> EnergyPlusVersion: """Return the :class:`EnergyPlusVersion` of the idf text file.""" if self._file_version is None: - return EnergyPlusVersion( - get_idf_version(self.idfname, encoding=self.encoding) - ) + return EnergyPlusVersion(get_idf_version(self.idfname, encoding=self.encoding)) else: return self._file_version @@ -755,8 +731,7 @@ def prep_outputs(self): @prep_outputs.setter def prep_outputs(self, value): assert isinstance(value, (bool, list)), ( - f"Expected bool or list of dict for " - f"SimulationOutput outputs. Got {type(value)}." + f"Expected bool or list of dict for " f"SimulationOutput outputs. Got {type(value)}." ) self._prep_outputs = value @@ -863,11 +838,7 @@ def idfversionupdater_dir(self) -> Path: Uses the current module's ep_version. """ - return ( - EnergyPlusVersion.latest().current_install_dir - / "PreProcess" - / "IDFVersionUpdater" - ).expand() + return (EnergyPlusVersion.latest().current_install_dir / "PreProcess" / "IDFVersionUpdater").expand() @property def name(self) -> str: @@ -897,9 +868,7 @@ def sql(self) -> dict: ) except FileNotFoundError: # check if htm output is in file - sql_object = self.anidfobject( - key="Output:SQLite".upper(), Option_Type="SimpleAndTabular" - ) + sql_object = self.anidfobject(key="Output:SQLite".upper(), Option_Type="SimpleAndTabular") if sql_object not in self.idfobjects["Output:SQLite".upper()]: self.addidfobject(sql_object) return self.simulate().sql() @@ -948,9 +917,7 @@ def open_idf(self): else: filepath = self.idfname - app_path_guess = ( - self.file_version.current_install_dir / "PreProcess" / "IDFEditor" - ) + app_path_guess = self.file_version.current_install_dir / "PreProcess" / "IDFEditor" find_and_launch("IDFEditor", app_path_guess, filepath.abspath()) def open_last_simulation(self): @@ -1037,12 +1004,8 @@ def net_conditioned_building_area(self) -> float: for surface in zone.zonesurfaces: if hasattr(surface, "tilt"): if surface.tilt == 180.0: - part_of = int( - zone.Part_of_Total_Floor_Area.upper() != "NO" - ) - multiplier = float( - zone.Multiplier if zone.Multiplier != "" else 1 - ) + part_of = int(zone.Part_of_Total_Floor_Area.upper() != "NO") + multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) area += surface.area * multiplier * part_of self._area_conditioned = area @@ -1071,12 +1034,8 @@ def unconditioned_building_area(self) -> float: for surface in zone.zonesurfaces: if hasattr(surface, "tilt"): if surface.tilt == 180.0: - part_of = int( - zone.Part_of_Total_Floor_Area.upper() == "NO" - ) - multiplier = float( - zone.Multiplier if zone.Multiplier != "" else 1 - ) + part_of = int(zone.Part_of_Total_Floor_Area.upper() == "NO") + multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) area += surface.area * multiplier * part_of self._area_unconditioned = area @@ -1104,9 +1063,7 @@ def total_building_area(self) -> float: for surface in zone.zonesurfaces: if hasattr(surface, "tilt"): if surface.tilt == 180.0: - multiplier = float( - zone.Multiplier if zone.Multiplier != "" else 1 - ) + multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) area += surface.area * multiplier self._area_total = area @@ -1147,12 +1104,7 @@ def _get_volume_from_surfs(zone_surfs): z1 = v1.z # Add volume of tetrahedron formed by triangle and origin vol += math.fabs( - x0 * y1 * z2 - + x1 * y2 * z0 - + x2 * y0 * z1 - - x0 * y2 * z1 - - x1 * y0 * z2 - - x2 * y1 * z0 + x0 * y1 * z2 + x1 * y2 * z0 + x2 * y0 * z1 - x0 * y2 * z1 - x1 * y0 * z2 - x2 * y1 * z0 ) return vol / 6.0 @@ -1170,13 +1122,8 @@ def partition_ratio(self) -> float: if surf.key.upper() not in ["INTERNALMASS", "WINDOWSHADINGCONTROL"] ]: if hasattr(surface, "tilt"): - if ( - surface.tilt == 90.0 - and surface.Outside_Boundary_Condition != "Outdoors" - ): - multiplier = float( - zone.Multiplier if zone.Multiplier != "" else 1 - ) + if surface.tilt == 90.0 and surface.Outside_Boundary_Condition != "Outdoors": + multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) partition_lineal += surface.width * multiplier self._partition_ratio = partition_lineal / max( self.net_conditioned_building_area, self.unconditioned_building_area @@ -1275,10 +1222,7 @@ def meters(self) -> Meters: try: self.simulation_dir.files("*.mdd") except FileNotFoundError: - raise Exception( - "call IDF.simulate() at least once to get a list of " - "possible meters" - ) + raise Exception("call IDF.simulate() at least once to get a list of possible meters") else: self._meters = Meters(self) return self._meters @@ -1401,9 +1345,7 @@ def simulate(self, force=False, **kwargs): level=logging.WARNING, ) - if ( - self.simulation_dir.exists() and not force - ): # don't simulate if results exists + if self.simulation_dir.exists() and not force: # don't simulate if results exists return self if self.as_version is not None: @@ -1431,10 +1373,7 @@ def simulate(self, force=False, **kwargs): # Todo: Add EpMacro Thread -> if exist in.imf "%program_path%EPMacro" # Run the expandobjects program if necessary - tmp = ( - self.output_directory.makedirs_p() / "expandobjects_run_" - + str(uuid.uuid1())[0:8] - ).mkdir() + tmp = (self.output_directory.makedirs_p() / "expandobjects_run_" + str(uuid.uuid1())[0:8]).mkdir() # Run the ExpandObjects preprocessor program expandobjects_thread = ExpandObjectsThread(self, tmp) try: @@ -1452,10 +1391,7 @@ def simulate(self, force=False, **kwargs): raise e # Run the Basement preprocessor program if necessary - tmp = ( - self.output_directory.makedirs_p() / "runBasement_run_" - + str(uuid.uuid1())[0:8] - ).mkdir() + tmp = (self.output_directory.makedirs_p() / "runBasement_run_" + str(uuid.uuid1())[0:8]).mkdir() basement_thread = BasementThread(self, tmp) try: basement_thread.start() @@ -1472,9 +1408,7 @@ def simulate(self, force=False, **kwargs): raise e # Run the Slab preprocessor program if necessary - tmp = ( - self.output_directory.makedirs_p() / "runSlab_run_" + str(uuid.uuid1())[0:8] - ).mkdir() + tmp = (self.output_directory.makedirs_p() / "runSlab_run_" + str(uuid.uuid1())[0:8]).mkdir() slab_thread = SlabThread(self, tmp) try: slab_thread.start() @@ -1491,9 +1425,7 @@ def simulate(self, force=False, **kwargs): raise e # Run the energyplus program - tmp = ( - self.output_directory.makedirs_p() / "eplus_run_" + str(uuid.uuid1())[0:8] - ).mkdir() + tmp = (self.output_directory.makedirs_p() / "eplus_run_" + str(uuid.uuid1())[0:8]).mkdir() running_simulation_thread = EnergyPlusThread(self, tmp) try: running_simulation_thread.start() @@ -1551,15 +1483,11 @@ def save(self, lineendings="default", encoding="latin-1", **kwargs): Returns: IDF: The IDF model """ - super(IDF, self).save( - filename=self.idfname, lineendings=lineendings, encoding=encoding - ) + super(IDF, self).save(filename=self.idfname, lineendings=lineendings, encoding=encoding) log(f"saved '{self.name}' at '{self.idfname}'") return self - def saveas( - self, filename, lineendings="default", encoding="latin-1", inplace=False - ): + def saveas(self, filename, lineendings="default", encoding="latin-1", inplace=False): """Save the IDF model as. Writes a new text file and load a new instance of the IDF class (new object). @@ -1578,17 +1506,13 @@ def saveas( Returns: IDF: A new IDF object based on the new location file. """ - super(IDF, self).save( - filename=filename, lineendings=lineendings, encoding=encoding - ) + super(IDF, self).save(filename=filename, lineendings=lineendings, encoding=encoding) import inspect sig = inspect.signature(IDF.__init__) kwargs = { - key: getattr(self, key) - for key in [a for a in sig.parameters] - if key not in ["self", "idfname", "kwargs"] + key: getattr(self, key) for key in [a for a in sig.parameters] if key not in ["self", "idfname", "kwargs"] } as_idf = IDF(filename, **kwargs) @@ -1722,9 +1646,7 @@ def upgrade(self, to_version=None, overwrite=True): else: self.as_version = to_version # set version number # execute transitions - tmp = ( - self.output_directory / "Transition_run_" + str(uuid.uuid1())[0:8] - ).makedirs_p() + tmp = (self.output_directory / "Transition_run_" + str(uuid.uuid1())[0:8]).makedirs_p() transition_thread = TransitionThread(self, tmp, overwrite=overwrite) transition_thread.start() transition_thread.join() @@ -1773,9 +1695,7 @@ def roundto(x, to=10.0): for zone in zones: multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) for surface in [ - surf - for surf in zone.zonesurfaces - if surf.key.upper() not in ["INTERNALMASS", "WINDOWSHADINGCONTROL"] + surf for surf in zone.zonesurfaces if surf.key.upper() not in ["INTERNALMASS", "WINDOWSHADINGCONTROL"] ]: if isclose(surface.tilt, 90, abs_tol=10): if surface.Outside_Boundary_Condition.lower() == "outdoors": @@ -1785,12 +1705,8 @@ def roundto(x, to=10.0): if hasattr(subsurface, "tilt"): if isclose(subsurface.tilt, 90, abs_tol=10): if subsurface.Surface_Type.lower() == "window": - surf_azim = roundto( - subsurface.azimuth, to=azimuth_threshold - ) - total_window_area[surf_azim] += ( - subsurface.area * multiplier - ) + surf_azim = roundto(subsurface.azimuth, to=azimuth_threshold) + total_window_area[surf_azim] += subsurface.area * multiplier if isclose(subsurface.tilt, 180, abs_tol=80): total_window_area["sky"] += subsurface.area * multiplier # Fix azimuth = 360 which is the same as azimuth 0 @@ -1802,20 +1718,14 @@ def roundto(x, to=10.0): from sigfig import round df = ( - pd.DataFrame( - {"wall_area": total_surface_area, "window_area": total_window_area} - ) + pd.DataFrame({"wall_area": total_surface_area, "window_area": total_window_area}) .rename_axis("Azimuth") .fillna(0) ) df.wall_area = df.wall_area.apply(round, decimals=1) df.window_area = df.window_area.apply(round, decimals=1) df["wwr"] = (df.window_area / df.wall_area).fillna(0).apply(round, 2) - df["wwr_rounded_%"] = ( - (df.window_area / df.wall_area * 100) - .fillna(0) - .apply(lambda x: roundto(x, to=round_to)) - ) + df["wwr_rounded_%"] = (df.window_area / df.wall_area * 100).fillna(0).apply(lambda x: roundto(x, to=round_to)) return df def space_heating_profile( @@ -1847,14 +1757,8 @@ def space_heating_profile( "Air System Total Heating Energy", "Zone Ideal Loads Zone Total Heating Energy", ) - series = self._energy_series( - energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds - ) - log( - "Retrieved Space Heating Profile in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + series = self._energy_series(energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds) + log(f"Retrieved Space Heating Profile in {time.time() - start_time:,.2f} seconds") return series def space_cooling_profile( @@ -1885,14 +1789,8 @@ def space_cooling_profile( "Air System Total Cooling Energy", "Zone Ideal Loads Zone Total Cooling Energy", ) - series = self._energy_series( - energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds - ) - log( - "Retrieved Space Cooling Profile in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + series = self._energy_series(energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds) + log(f"Retrieved Space Cooling Profile in {time.time() - start_time:,.2f} seconds") return series def service_water_heating_profile( @@ -1921,14 +1819,8 @@ def service_water_heating_profile( start_time = time.time() if energy_out_variable_name is None: energy_out_variable_name = ("WaterSystems:EnergyTransfer",) - series = self._energy_series( - energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds - ) - log( - "Retrieved Service Water Heating Profile in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + series = self._energy_series(energy_out_variable_name, units, name, EnergySeries_kwds=EnergySeries_kwds) + log(f"Retrieved Service Water Heating Profile in {time.time() - start_time:,.2f} seconds") return series def custom_profile( @@ -1963,7 +1855,7 @@ def custom_profile( prep_outputs, EnergySeries_kwds=EnergySeries_kwds, ) - log("Retrieved {} in {:,.2f} seconds".format(name, time.time() - start_time)) + log(f"Retrieved {name} in {time.time() - start_time:,.2f} seconds") return series def newidfobject(self, key, **kwargs) -> Optional[EpBunch]: @@ -2001,14 +1893,11 @@ def newidfobject(self, key, **kwargs) -> Optional[EpBunch]: # If object is supposed to be 'unique-object', delete all objects to be # sure there is only one of them when creating new object # (see following line) - if "unique-object" in set().union( - *(d.objidd[0].keys() for d in existing_objs) - ): + if "unique-object" in set().union(*(d.objidd[0].keys() for d in existing_objs)): for obj in existing_objs: self.removeidfobject(obj) log( - f"{obj} is a 'unique-object'; Removed and replaced with" - f" {new_object}", + f"{obj} is a 'unique-object'; Removed and replaced with" f" {new_object}", lg.DEBUG, ) self.addidfobject(new_object) @@ -2016,21 +1905,17 @@ def newidfobject(self, key, **kwargs) -> Optional[EpBunch]: if new_object in existing_objs: # If obj already exists, simply return the existing one. log( - f"object '{new_object}' already exists in {self.name}. " - f"Skipping.", + f"object '{new_object}' already exists in {self.name}. " f"Skipping.", lg.DEBUG, ) return next(x for x in existing_objs if x == new_object) elif new_object not in existing_objs and new_object.nameexists(): # Object does not exist (because not equal) but Name exists. - obj = self.getobject( - key=new_object.key.upper(), name=new_object.Name.upper() - ) + obj = self.getobject(key=new_object.key.upper(), name=new_object.Name.upper()) self.removeidfobject(obj) self.addidfobject(new_object) log( - f"{obj} exists but has different attributes; Removed and replaced " - f"with {new_object}", + f"{obj} exists but has different attributes; Removed and replaced " f"with {new_object}", lg.DEBUG, ) return new_object @@ -2172,10 +2057,7 @@ def get_schedule_epbunch(self, name, sch_type=None): try: return self.schedules_dict[name.upper()] except KeyError: - raise KeyError( - 'Unable to find schedule "{}" of type "{}" ' - 'in idf file "{}"'.format(name, sch_type, self.name) - ) + raise KeyError(f'Unable to find schedule "{name}" of type "{sch_type}" ' f'in idf file "{self.name}"') else: return self.getobject(sch_type.upper(), name) @@ -2235,10 +2117,7 @@ def _get_used_schedules(self, yearly_only=False): if obj.key.upper() not in schedule_types: for fieldvalue in obj.fieldvalues: try: - if ( - fieldvalue.upper() in all_schedules.keys() - and fieldvalue not in used_schedules - ): + if fieldvalue.upper() in all_schedules.keys() and fieldvalue not in used_schedules: used_schedules.append(fieldvalue) except (KeyError, AttributeError): pass @@ -2292,10 +2171,7 @@ def rename(self, objkey, objname, newname): idfobjects = self.idfobjects[robjkey] for idfobject in idfobjects: for findex in fieldindexlist: # for each field - if ( - idfobject[idfobject.objls[findex]].lower() - == objname.lower() - ): + if idfobject[idfobject.objls[findex]].lower() == objname.lower(): idfobject[idfobject.objls[findex]] = newname theobject = self.getobject(objkey, objname) fieldname = [item for item in theobject.objls if item.endswith("Name")][0] @@ -2346,30 +2222,16 @@ def set_wwr( lambda x: x.Outside_Boundary_Condition.lower() == "outdoors", surfaces or self.getsurfaces("wall"), ) - external_walls = filter( - lambda x: closest_cardinal_angle(x.azimuth) == degrees, external_walls - ) + external_walls = filter(lambda x: closest_cardinal_angle(x.azimuth) == degrees, external_walls) subsurfaces = self.getsubsurfaces() for wall in external_walls: # get any subsurfaces on the wall - wall_subsurfaces = list( - filter(lambda x: x.Building_Surface_Name == wall.Name, subsurfaces) - ) + wall_subsurfaces = list(filter(lambda x: x.Building_Surface_Name == wall.Name, subsurfaces)) if wall_subsurfaces and not construction: - constructions = list( - { - wss.Construction_Name - for wss in wall_subsurfaces - if _is_window(wss) - } - ) + constructions = list({wss.Construction_Name for wss in wall_subsurfaces if _is_window(wss)}) if len(constructions) > 1: - raise ValueError( - 'Not all subsurfaces on wall "{name}" have the same construction'.format( - name=wall.Name - ) - ) + raise ValueError(f'Not all subsurfaces on wall "{wall.Name}" have the same construction') construction = constructions[0] if len(wall_subsurfaces) == 0 and not force: # Don't create windows on walls that don't have any windows already. @@ -2410,22 +2272,16 @@ def _energy_series( self.outputs.add_custom(prep_outputs).apply() self.simulate() rd = ReportData.from_sqlite(self.sql_file, table_name=energy_out_variable_name) - profile = EnergySeries.from_reportdata( - rd, to_units=units, name=name, **EnergySeries_kwds - ) + profile = EnergySeries.from_reportdata(rd, to_units=units, name=name, **EnergySeries_kwds) return profile def _execute_transitions(self, idf_file, to_version, **kwargs): trans_exec = { - EnergyPlusVersion( - re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", executable).group(1) - ): executable + EnergyPlusVersion(re.search(r"to-V(([\d]*?)-([\d]*?)-([\d]))", executable).group(1)): executable for executable in self.idfversionupdater_dir.files("Transition-V*") } - transitions = [ - key for key in trans_exec if to_version >= key > self.file_version - ] + transitions = [key for key in trans_exec if to_version >= key > self.file_version] transitions.sort() for trans in tqdm( @@ -2436,12 +2292,12 @@ def _execute_transitions(self, idf_file, to_version, **kwargs): if not trans_exec[trans].exists(): raise EnergyPlusProcessError( cmd=trans_exec[trans], - stderr="The specified EnergyPlus version (v{}) does not have" - " the required transition program '{}' in the " + stderr=f"The specified EnergyPlus version (v{to_version}) does not have" + f" the required transition program '{trans_exec[trans]}' in the " "PreProcess folder. See the documentation " "(archetypal.readthedocs.io/troubleshooting.html#missing" "-transition-programs) " - "to solve this issue".format(to_version, trans_exec[trans]), + "to solve this issue", idf=self, ) else: @@ -2479,19 +2335,10 @@ def to_world(self): from geomeppy.geom.vectors import Vector3D from geomeppy.recipes import translate, translate_coords - if ( - "world" - in [ - o.Coordinate_System.lower() - for o in self.idfobjects["GLOBALGEOMETRYRULES"] - ] - or self.translated - ): + if "world" in [o.Coordinate_System.lower() for o in self.idfobjects["GLOBALGEOMETRYRULES"]] or self.translated: log("Model already set as World coordinates", level=lg.WARNING) return - zone_angles = set( - z.Direction_of_Relative_North or 0 for z in self.idfobjects["ZONE"] - ) + zone_angles = set(z.Direction_of_Relative_North or 0 for z in self.idfobjects["ZONE"]) # If Zones have Direction_of_Relative_North != 0, model needs to be rotated # before translation. if all(angle != 0 for angle in zone_angles): @@ -2508,16 +2355,12 @@ def to_world(self): self.translate(anchor) zone_origin = { - zone.Name.upper(): Vector3D( - zone.X_Origin or 0, zone.Y_Origin or 0, zone.Z_Origin or 0 - ) + zone.Name.upper(): Vector3D(zone.X_Origin or 0, zone.Y_Origin or 0, zone.Z_Origin or 0) for zone in self.idfobjects["ZONE"] } surfaces = {s.Name.upper(): s for s in self.getsurfaces()} subsurfaces = self.getsubsurfaces() - daylighting_refpoints = [ - p for p in self.idfobjects["DAYLIGHTING:REFERENCEPOINT"] - ] + daylighting_refpoints = [p for p in self.idfobjects["DAYLIGHTING:REFERENCEPOINT"]] attached_shading_surf_names = [] for g in self.idd_index["ref2names"]["AttachedShadingSurfNames"]: for item in self.idfobjects[g]: @@ -2571,21 +2414,15 @@ def view_model( ): """Show a zoomable, rotatable representation of the IDF.""" from matplotlib import pyplot as plt - from geomeppy.view_geometry import view_idf + from archetypal.plot import save_and_show + from geomeppy.view_geometry import view_idf if ( - "relative" - in [ - o.Coordinate_System.lower() - for o in self.idfobjects["GLOBALGEOMETRYRULES"] - ] + "relative" in [o.Coordinate_System.lower() for o in self.idfobjects["GLOBALGEOMETRYRULES"]] and self.coords_are_truly_relative ): - raise Exception( - "Model is in relative coordinates and must be translated to world using " - "IDF.to_world()." - ) + raise Exception("Model is in relative coordinates and must be translated to world using IDF.to_world().") view_idf(idf=self, test=~show) fig = plt.gcf() @@ -2618,9 +2455,7 @@ def coords_are_truly_relative(self): all_zone_origin_at_0 = False return ggr_asks_for_relative and not all_zone_origin_at_0 - def rotate( - self, angle: Optional[float] = None, anchor: Tuple[float, float, float] = None - ): + def rotate(self, angle: Optional[float] = None, anchor: Tuple[float, float, float] = None): """Rotate the IDF counterclockwise around `anchor` by the angle given (degrees). IF angle is None, rotates to Direction_of_Relative_North specified in Zone @@ -2629,12 +2464,8 @@ def rotate( if not angle: bldg_angle = self.idfobjects["BUILDING"][0].North_Axis or 0 log(f"Building North Axis = {bldg_angle}", level=lg.DEBUG) - zone_angles = set( - z.Direction_of_Relative_North for z in self.idfobjects["ZONE"] - ) - assert ( - len(zone_angles) == 1 - ), "Not all zone have the same Direction_of_Relative_North" + zone_angles = set(z.Direction_of_Relative_North for z in self.idfobjects["ZONE"]) + assert len(zone_angles) == 1, "Not all zone have the same Direction_of_Relative_North" zone_angle, *_ = zone_angles zone_angle = zone_angle or 0 log(f"Zone(s) North Axis = {zone_angle}", level=lg.DEBUG) @@ -2645,10 +2476,7 @@ def rotate( anchor = Vector3D(*anchor) # Rotate the building super(IDF, self).rotate(angle, anchor=anchor) - log( - f"Geometries rotated by {angle} degrees around " - f"{anchor or 'building centroid'}" - ) + log(f"Geometries rotated by {angle} degrees around " f"{anchor or 'building centroid'}") # after building is rotate, change the north axis and zone direction to zero. self.idfobjects["BUILDING"][0].North_Axis = 0 @@ -2694,16 +2522,12 @@ def reporting_frequency(self, value): self._reporting_frequency = value def getsiteshadingsurfaces(self, surface_type=""): - site_shading_types = self.idd_index["ref2names"][ - "AllShadingSurfNames" - ].difference(self.idd_index["ref2names"]["AttachedShadingSurfNames"]) - surfaces = itertools.chain.from_iterable( - [self.idfobjects[key.upper()] for key in site_shading_types] + site_shading_types = self.idd_index["ref2names"]["AllShadingSurfNames"].difference( + self.idd_index["ref2names"]["AttachedShadingSurfNames"] ) + surfaces = itertools.chain.from_iterable([self.idfobjects[key.upper()] for key in site_shading_types]) if surface_type: - surfaces = filter( - lambda x: x.Surface_Type.lower() == surface_type.lower(), surfaces - ) + surfaces = filter(lambda x: x.Surface_Type.lower() == surface_type.lower(), surfaces) return list(surfaces) @property @@ -2724,9 +2548,7 @@ def total_envelope_area(self): for surface in zone.zonesurfaces: if hasattr(surface, "tilt"): if surface.tilt == 180.0: - multiplier = float( - zone.Multiplier if zone.Multiplier != "" else 1 - ) + multiplier = float(zone.Multiplier if zone.Multiplier != "" else 1) area += surface.area * multiplier self._area_total = area diff --git a/archetypal/idfclass/load_balance.py b/archetypal/idfclass/load_balance.py index b00c50585..71eb14b80 100644 --- a/archetypal/idfclass/load_balance.py +++ b/archetypal/idfclass/load_balance.py @@ -120,9 +120,7 @@ def from_idf(cls, idf): total_load = cls.subtract_loss_from_gain(mech_vent_gain, mech_vent_loss) mech_vent = total_load.copy() mech_vent.rename( - columns=lambda x: str.replace( - x, "Zone Ideal Loads Supply Air", "Zone Ideal Loads Ventilation" - ), + columns=lambda x: str.replace(x, "Zone Ideal Loads Supply Air", "Zone Ideal Loads Ventilation"), level="OutputVariable", inplace=True, ) @@ -145,9 +143,7 @@ def from_idf(cls, idf): window_flow = cls.subtract_loss_from_gain(window_gain, window_loss) window_flow = cls.match_window_to_zone(idf, window_flow) face_energy_flow = opaque_flow.add( - window_flow.groupby(level=["Building_Surface_Name"], axis=1) - .sum() - .rename(columns=str.upper), + window_flow.groupby(level=["Building_Surface_Name"], axis=1).sum().rename(columns=str.upper), level="Key_Name", axis=1, fill_value=0, @@ -205,25 +201,17 @@ def match_window_to_zone(cls, idf, window_flow): window_to_surface_match.rename(index=str.upper), on="Key_Name", ) - .set_index( - ["Building_Surface_Name", "Surface_Type", "Zone_Name"], append=True - ) - ) - window_flow = stacked.drop(columns=["Multiplier"]).iloc[:, 0] * pd.to_numeric( - stacked["Multiplier"] - ) - window_flow = window_flow.unstack( - level=["Key_Name", "Building_Surface_Name", "Surface_Type", "Zone_Name"] + .set_index(["Building_Surface_Name", "Surface_Type", "Zone_Name"], append=True) ) + window_flow = stacked.drop(columns=["Multiplier"]).iloc[:, 0] * pd.to_numeric(stacked["Multiplier"]) + window_flow = window_flow.unstack(level=["Key_Name", "Building_Surface_Name", "Surface_Type", "Zone_Name"]) return window_flow # .groupby("Building_Surface_Name", axis=1).sum() @classmethod def subtract_loss_from_gain(cls, load_gain, load_loss): try: - columns = load_gain.rename( - columns=lambda x: str.replace(x, " Gain", ""), level="OutputVariable" - ).columns + columns = load_gain.rename(columns=lambda x: str.replace(x, " Gain", ""), level="OutputVariable").columns except KeyError: columns = None return EnergyDataFrame( diff --git a/archetypal/idfclass/meters.py b/archetypal/idfclass/meters.py index eb9f7e5fd..9ef70b037 100644 --- a/archetypal/idfclass/meters.py +++ b/archetypal/idfclass/meters.py @@ -6,12 +6,12 @@ import pandas as pd from energy_pandas import EnergySeries from eppy.bunch_subclass import BadEPFieldError -from geomeppy.patches import EpBunch from tabulate import tabulate from archetypal.idfclass.extensions import bunch2db from archetypal.reportdata import ReportData from archetypal.utils import log +from geomeppy.patches import EpBunch class Meter: @@ -98,10 +98,7 @@ def values( # the environment_type is specified by the simulationcontrol. try: for ctrl in self._idf.idfobjects["SIMULATIONCONTROL"]: - if ( - ctrl.Run_Simulation_for_Weather_File_Run_Periods.lower() - == "yes" - ): + if ctrl.Run_Simulation_for_Weather_File_Run_Periods.lower() == "yes": environment_type = 3 else: environment_type = 1 @@ -197,12 +194,8 @@ def __init__(self, idf): mdd, *_ = self._idf.simulate().simulation_dir.files("*.mdd") if not mdd: raise FileNotFoundError - meters = pd.read_csv( - mdd, skiprows=2, names=["key", "Key_Name", "Reporting_Frequency"] - ) - meters.Reporting_Frequency = meters.Reporting_Frequency.str.replace( - r"\;.*", "", regex=True - ) + meters = pd.read_csv(mdd, skiprows=2, names=["key", "Key_Name", "Reporting_Frequency"]) + meters.Reporting_Frequency = meters.Reporting_Frequency.str.replace(r"\;.*", "", regex=True) for key, group in meters.groupby("key"): meters_dict = group.T.to_dict() setattr( diff --git a/archetypal/idfclass/outputs.py b/archetypal/idfclass/outputs.py index 37561ea0f..adcd4b8ba 100644 --- a/archetypal/idfclass/outputs.py +++ b/archetypal/idfclass/outputs.py @@ -115,12 +115,9 @@ def __init__( """ self.idf = idf self.reporting_frequency = reporting_frequency - self.output_variables = set( - a.Variable_Name for a in idf.idfobjects["Output:Variable".upper()] - ) + self.output_variables = set(a.Variable_Name for a in idf.idfobjects["Output:Variable".upper()]) self.output_meters = set( - (get_name_attribute(a), a.Reporting_Frequency) - for a in idf.idfobjects["Output:Meter".upper()] + (get_name_attribute(a), a.Reporting_Frequency) for a in idf.idfobjects["Output:Meter".upper()] ) self.other_outputs = outputs @@ -184,9 +181,7 @@ def output_variables(self) -> tuple: @output_variables.setter def output_variables(self, value): if value is not None: - assert not isinstance( - value, (str, bytes) - ), f"Expected list or tuple. Got {type(value)}." + assert not isinstance(value, (str, bytes)), f"Expected list or tuple. Got {type(value)}." values = [] # for each element for output in value: @@ -207,9 +202,7 @@ def output_meters(self): @output_meters.setter def output_meters(self, value): if value is not None: - assert not isinstance( - value, (str, bytes) - ), f"Expected list or tuple. Got {type(value)}." + assert not isinstance(value, (str, bytes)), f"Expected list or tuple. Got {type(value)}." values = [] for output in value: if isinstance(output, tuple): @@ -229,9 +222,7 @@ def other_outputs(self): @other_outputs.setter def other_outputs(self, value): if value is not None: - assert all( - isinstance(item, dict) for item in value - ), f"Expected list of dict. Got {type(value)}." + assert all(isinstance(item, dict) for item in value), f"Expected list of dict. Got {type(value)}." values = [] for output in value: values.append(output) @@ -285,25 +276,16 @@ def add_custom(self, outputs): assert isinstance(outputs, Iterable), "outputs must be some sort of iterable" for output in outputs: if "meter" in output["key"].lower(): - self._output_meters.add( - (output["Key_Name"], output["Reporting_Frequency"].title()) - ) + self._output_meters.add((output["Key_Name"], output["Reporting_Frequency"].title())) elif "variable" in output["key"].lower(): - self._output_variables.add( - (output["Variable_Name"], output["Reporting_Frequency"].title()) - ) + self._output_variables.add((output["Variable_Name"], output["Reporting_Frequency"].title())) else: self._other_outputs.append(output) return self def add_basics(self): """Adds the summary report and the sql file to the idf outputs""" - return ( - self.add_summary_report() - .add_output_control() - .add_schedules() - .add_meter_variables() - ) + return self.add_summary_report().add_output_control().add_schedules().add_meter_variables() def add_schedules(self): """Adds Schedules object""" @@ -379,9 +361,7 @@ def add_sql(self, sql_output_style="SimpleAndTabular"): Returns: Outputs: self """ - outputs = [ - {"key": "Output:SQLite".upper(), **dict(Option_Type=sql_output_style)} - ] + outputs = [{"key": "Output:SQLite".upper(), **dict(Option_Type=sql_output_style)}] for output in outputs: self._other_outputs.append(output) @@ -441,9 +421,7 @@ def add_umi_template_outputs(self, reporting_frequency="Hourly"): "Zone Thermostat Heating Setpoint Temperature", ] for output in variables: - self._output_variables.add( - (output, reporting_frequency or self.reporting_frequency) - ) + self._output_variables.add((output, reporting_frequency or self.reporting_frequency)) meters = [ "Baseboard:EnergyTransfer", @@ -533,17 +511,13 @@ def add_sensible_heat_gain_summary_components(self): "Zone Other Equipment Convective Heating Energy", ] - window_heat_addition_and_window_heat_removal = [ - "Zone Windows Total Heat Gain Energy" - ] + window_heat_addition_and_window_heat_removal = ["Zone Windows Total Heat Gain Energy"] interzone_air_transfer_heat_addition_and_interzone_air_transfer_heat_removal = [ "Zone Air Heat Balance Interzone Air Transfer Rate" ] - infiltration_heat_addition_and_infiltration_heat_removal = [ - "Zone Air Heat Balance Outdoor Air Transfer Rate" - ] + infiltration_heat_addition_and_infiltration_heat_removal = ["Zone Air Heat Balance Outdoor Air Transfer Rate"] tuple( map( @@ -745,11 +719,7 @@ def apply(self): return self def __repr__(self): - variables = "OutputVariables:\n {}".format( - "\n ".join(map(str, self.output_variables)) - ) + variables = "OutputVariables:\n {}".format("\n ".join(map(str, self.output_variables))) meters = "OutputMeters:\n {}".format("\n ".join(map(str, self.output_meters))) - outputs = "Outputs:\n {}".format( - "\n ".join((a["key"] for a in self.other_outputs)) - ) + outputs = "Outputs:\n {}".format("\n ".join(a["key"] for a in self.other_outputs)) return "\n".join([variables, meters, outputs]) diff --git a/archetypal/idfclass/reports.py b/archetypal/idfclass/reports.py index dca128957..df34f72aa 100644 --- a/archetypal/idfclass/reports.py +++ b/archetypal/idfclass/reports.py @@ -10,9 +10,7 @@ from archetypal.utils import log -def get_report( - eplus_file, output_directory=None, output_report="sql", output_prefix=None, **kwargs -): +def get_report(eplus_file, output_directory=None, output_report="sql", output_prefix=None, **kwargs): """Returns the specified report format (html or sql) Args: @@ -39,19 +37,15 @@ def get_report( if fullpath_filename.exists(): return get_html_report(fullpath_filename) else: - raise FileNotFoundError( - 'File "{}" does not exist'.format(fullpath_filename) - ) + raise FileNotFoundError(f'File "{fullpath_filename}" does not exist') - elif "sql" == output_report.lower(): + elif output_report.lower() == "sql": # Get the sql report fullpath_filename = output_directory / output_prefix + "out.sql" if fullpath_filename.exists(): return get_sqlite_report(fullpath_filename) else: - raise FileNotFoundError( - 'File "{}" does not exist'.format(fullpath_filename) - ) + raise FileNotFoundError(f'File "{fullpath_filename}" does not exist') else: return None @@ -68,14 +62,12 @@ def get_html_report(report_fullpath): """ from eppy.results import readhtml # the eppy module with functions to read the html - with open(report_fullpath, "r", encoding="utf-8") as cache_file: + with open(report_fullpath, encoding="utf-8") as cache_file: filehandle = cache_file.read() # get a file handle to the html file - cached_tbl = readhtml.titletable( - filehandle - ) # get a file handle to the html file + cached_tbl = readhtml.titletable(filehandle) # get a file handle to the html file - log('Retrieved response from cache file "{}"'.format(report_fullpath)) + log(f'Retrieved response from cache file "{report_fullpath}"') return summary_reports_to_dataframes(cached_tbl) @@ -133,7 +125,7 @@ def get_sqlite_report(report_file, report_tables=None): # Try regular str read, could fail if wrong encoding conn.text_factory = str df = pd.read_sql_query( - "select * from {};".format(table), + f"select * from {table};", conn, index_col=report_tables[table]["PrimaryKey"], parse_dates=report_tables[table]["ParseDates"], @@ -145,7 +137,7 @@ def get_sqlite_report(report_file, report_tables=None): # columns only conn.text_factory = bytes df = pd.read_sql_query( - "select * from {};".format(table), + f"select * from {table};", conn, index_col=report_tables[table]["PrimaryKey"], parse_dates=report_tables[table]["ParseDates"], @@ -156,11 +148,7 @@ def get_sqlite_report(report_file, report_tables=None): for col in str_df: df[col] = str_df[col] all_tables[table] = df - log( - "SQL query parsed {} tables as DataFrames from {}".format( - len(all_tables), report_file - ) - ) + log(f"SQL query parsed {len(all_tables)} tables as DataFrames from {report_file}") return all_tables @@ -175,15 +163,9 @@ def get_ideal_loads_summary(idf): """ res = { "SDL/Cooling": idf.meters.OutputMeter.Cooling__DistrictCooling.values("kWh"), - "SDL/Domestic Hot Water": idf.meters.OutputMeter.WaterSystems__DistrictHeating.values( - "kWh" - ), - "SDL/Equipment": idf.meters.OutputMeter.InteriorEquipment__Electricity.values( - "kWh" - ), + "SDL/Domestic Hot Water": idf.meters.OutputMeter.WaterSystems__DistrictHeating.values("kWh"), + "SDL/Equipment": idf.meters.OutputMeter.InteriorEquipment__Electricity.values("kWh"), "SDL/Heating": idf.meters.OutputMeter.Heating__DistrictHeating.values("kWh"), - "SDL/Lighting": idf.meters.OutputMeter.InteriorLights__Electricity.values( - "kWh" - ), + "SDL/Lighting": idf.meters.OutputMeter.InteriorLights__Electricity.values("kWh"), } return pd.DataFrame(res) diff --git a/archetypal/idfclass/sql.py b/archetypal/idfclass/sql.py index 89abc74ae..3091559c4 100644 --- a/archetypal/idfclass/sql.py +++ b/archetypal/idfclass/sql.py @@ -1,4 +1,5 @@ """Module for parsing EnergyPlus SQLite result files into DataFrames.""" + import logging from datetime import timedelta from sqlite3 import connect @@ -49,14 +50,11 @@ def values(self, environment_type: int = 3, units: str = None) -> EnergyDataFram Returns: (EnergyDataFrame): The time series as an EnergyDataFrame. """ - cols = ( - "ReportDataDictionaryIndex, IndexGroup, KeyValue, Name, " - "Units, ReportingFrequency" - ) + cols = "ReportDataDictionaryIndex, IndexGroup, KeyValue, Name, Units, ReportingFrequency" query = f""" - SELECT {cols} - FROM ReportDataDictionary - WHERE Name=@output_name + SELECT {cols} + FROM ReportDataDictionary + WHERE Name=@output_name AND ReportingFrequency=@reporting_frequency; """ with connect(self._file_path) as conn: @@ -87,9 +85,7 @@ def __init__(self, file_path: str, available_outputs: List[tuple]): self._properties = {} for output, reporting_frequency in self._available_outputs: - name = ( - output.replace(":", "__").replace(" ", "_") + f"_{reporting_frequency}" - ) + name = output.replace(":", "__").replace(" ", "_") + f"_{reporting_frequency}" self._properties[name] = SqlOutput(file_path, output, reporting_frequency) setattr(self, name, self._properties[name]) @@ -122,7 +118,7 @@ class Sql: def __init__(self, file_path): """Initialize SQLiteResult""" - assert Path(file_path).exists(), "No file was found at {}".format(file_path) + assert Path(file_path).exists(), f"No file was found at {file_path}" self._file_path = file_path # values to be computed as soon as they are requested @@ -207,22 +203,17 @@ def full_html_report(self): "ReportForString"). """ with connect(self.file_path) as conn: - cols = ( - "ReportName, TableName, ReportForString, ColumnName, RowName, " - "Units, Value" - ) + cols = "ReportName, TableName, ReportForString, ColumnName, RowName, Units, Value" query = f"SELECT {cols} FROM TabularDataWithStrings" data = pd.read_sql(query, conn) - data.RowName = data.RowName.replace({"": np.NaN, "-": np.NaN}) + data.RowName = data.RowName.replace({"": np.nan, "-": np.nan}) data.dropna(subset=["RowName"], inplace=True) all_df = {} for name, df in data.groupby(["ReportName", "TableName", "ReportForString"]): try: - pivoted = df.pivot( - columns=["ColumnName", "Units"], index="RowName", values="Value" - ) + pivoted = df.pivot(columns=["ColumnName", "Units"], index="RowName", values="Value") except ValueError: # Cannot pivot; return long form pivoted = df @@ -274,14 +265,13 @@ def timeseries_by_name( reporting_frequency, ) not in self.available_outputs: log( - f"{(variable_or_meter, reporting_frequency)} not " - f"an available output in the Sql file.", + f"{(variable_or_meter, reporting_frequency)} not " f"an available output in the Sql file.", level=logging.WARNING, ) query = f""" - SELECT {cols} - FROM ReportDataDictionary - WHERE Name=@output_name + SELECT {cols} + FROM ReportDataDictionary + WHERE Name=@output_name AND ReportingFrequency=@reporting_frequency; """ header_rows = pd.read_sql( @@ -294,9 +284,9 @@ def timeseries_by_name( ) elif len(variable_or_meter) == 1: # assume it's a list query = f""" - SELECT {cols} - FROM ReportDataDictionary - WHERE Name=@output_name + SELECT {cols} + FROM ReportDataDictionary + WHERE Name=@output_name AND ReportingFrequency=@reporting_frequency; """ header_rows = pd.read_sql( @@ -309,8 +299,8 @@ def timeseries_by_name( ) else: # assume it is a list of outputs query = f""" - SELECT {cols} - FROM ReportDataDictionary + SELECT {cols} + FROM ReportDataDictionary WHERE Name IN {tuple(variable_or_meter)} AND ReportingFrequency=@reporting_frequency;""" header_rows = pd.read_sql( @@ -348,12 +338,12 @@ def tabular_data_by_name( with connect(self.file_path) as conn: cols = "RowName, ColumnName, Value, Units" query = f""" - SELECT {cols} FROM TabularDataWithStrings - WHERE + SELECT {cols} FROM TabularDataWithStrings + WHERE (@report_name IS NULL OR ReportName=@report_name) - AND + AND (@table_name IS NULL OR TableName=@table_name) - AND + AND (@report_for_string IS NULL OR ReportForString=@report_for_string); """ data = pd.read_sql( @@ -366,9 +356,7 @@ def tabular_data_by_name( }, ) try: - pivoted = data.pivot( - index="RowName", columns=["ColumnName", "Units"], values="Value" - ) + pivoted = data.pivot(index="RowName", columns=["ColumnName", "Units"], values="Value") except ValueError: # Cannot pivot; return long-form DataFrame pivoted = data @@ -417,20 +405,18 @@ def _extract_environment_periods(self): return df -def _extract_timeseries( - conn, environment_type, header_rows, rel_indices -) -> EnergyDataFrame: +def _extract_timeseries(conn, environment_type, header_rows, rel_indices) -> EnergyDataFrame: """Extract time series given indices.""" if len(rel_indices) == 1: data = pd.read_sql( """SELECT rd.Value, - rd.ReportDataDictionaryIndex, + rd.ReportDataDictionaryIndex, t.Month, t.Day, t.Hour, t.Minute, t.Interval - FROM ReportData as rd + FROM ReportData as rd LEFT JOIN Time As t ON rd.TimeIndex = t.TimeIndex LEFT JOIN EnvironmentPeriods as p ON t.EnvironmentPeriodIndex = p.EnvironmentPeriodIndex WHERE ReportDataDictionaryIndex=@rel_indices @@ -494,7 +480,5 @@ def _extract_timeseries( data.index = index # Create the EnergyDataFrame and set the units using dict data = EnergyDataFrame(data) - data.units = header_rows.set_index(["IndexGroup", "KeyValue", "Name"])[ - "Units" - ].to_dict() + data.units = header_rows.set_index(["IndexGroup", "KeyValue", "Name"])["Units"].to_dict() return data diff --git a/archetypal/idfclass/util.py b/archetypal/idfclass/util.py index e29f05329..a5842ee9f 100644 --- a/archetypal/idfclass/util.py +++ b/archetypal/idfclass/util.py @@ -117,5 +117,5 @@ def getoldiddfile(versionid): ver_str = "-".join(vlist) eplus_exe, _ = eppy.runner.run_functions.install_paths(ver_str) eplusfolder = os.path.dirname(eplus_exe) - iddfile = "{}/bin/Energy+.idd".format(eplusfolder) + iddfile = f"{eplusfolder}/bin/Energy+.idd" return iddfile diff --git a/archetypal/idfclass/variables.py b/archetypal/idfclass/variables.py index 55bef7f01..921a90253 100644 --- a/archetypal/idfclass/variables.py +++ b/archetypal/idfclass/variables.py @@ -1,14 +1,15 @@ """EnergyPlus variables module.""" + import logging from typing import Iterable import pandas as pd from energy_pandas import EnergyDataFrame -from geomeppy.patches import EpBunch from archetypal.idfclass.extensions import bunch2db from archetypal.reportdata import ReportData from archetypal.utils import log +from geomeppy.patches import EpBunch class Variable: @@ -76,10 +77,7 @@ def values( # the environment_type is specified by the simulationcontrol. try: for ctrl in self._idf.idfobjects["SIMULATIONCONTROL"]: - if ( - ctrl.Run_Simulation_for_Weather_File_Run_Periods.lower() - == "yes" - ): + if ctrl.Run_Simulation_for_Weather_File_Run_Periods.lower() == "yes": environment_type = 3 else: environment_type = 1 @@ -177,9 +175,7 @@ def collect_by_output_name( if not output_values: return EnergyDataFrame([]) else: - return pd.concat( - output_values, axis=1, names=["OutputVariable", "Key_Name"] - ) + return pd.concat(output_values, axis=1, names=["OutputVariable", "Key_Name"]) class Variables: @@ -217,9 +213,7 @@ def __init__(self, idf): skiprows=2, names=["key", "Key_Value", "Variable_Name", "Reporting_Frequency"], ) - variables.Reporting_Frequency = variables.Reporting_Frequency.str.replace( - r"\;.*", "", regex=True - ) + variables.Reporting_Frequency = variables.Reporting_Frequency.str.replace(r"\;.*", "", regex=True) for key, group in variables.groupby("key"): variable_dict = group.T.to_dict() setattr( diff --git a/archetypal/plot.py b/archetypal/plot.py index accdebb0c..1b5128137 100644 --- a/archetypal/plot.py +++ b/archetypal/plot.py @@ -22,9 +22,7 @@ from archetypal.utils import log -def save_and_show( - fig, ax, save, show, close, filename, file_format, dpi, axis_off, extent -): +def save_and_show(fig, ax, save, show, close, filename, file_format, dpi, axis_off, extent): """Save a figure to disk and show it, as specified. Args: @@ -56,9 +54,7 @@ def save_and_show( # create the save folder if it doesn't already exist if not os.path.exists(settings.imgs_folder): os.makedirs(settings.imgs_folder) - path_filename = os.path.join( - settings.imgs_folder, os.extsep.join([filename, file_format]) - ) + path_filename = os.path.join(settings.imgs_folder, os.extsep.join([filename, file_format])) if not isinstance(ax, (np.ndarray, list)): ax = [ax] @@ -78,9 +74,7 @@ def save_and_show( for ax in ax: # if axis is turned off, constrain the saved # figure's extent to the interior of the axis - extent = ax.get_window_extent().transformed( - fig.dpi_scale_trans.inverted() - ) + extent = ax.get_window_extent().transformed(fig.dpi_scale_trans.inverted()) else: pass fig.savefig( @@ -91,18 +85,14 @@ def save_and_show( facecolor=fig.get_facecolor(), transparent=True, ) - log( - "Saved the figure to disk in {:,.2f} seconds".format( - time.time() - start_time - ) - ) + log(f"Saved the figure to disk in {time.time() - start_time:,.2f} seconds") # show the figure if specified if show: start_time = time.time() plt.show() # fig.show() - log("Showed the plot in {:,.2f} seconds".format(time.time() - start_time)) + log(f"Showed the plot in {time.time() - start_time:,.2f} seconds") # if show=False, close the figure if close=True to prevent display elif close: plt.close() diff --git a/archetypal/reportdata.py b/archetypal/reportdata.py index 241cae489..9b218d5ea 100644 --- a/archetypal/reportdata.py +++ b/archetypal/reportdata.py @@ -33,17 +33,11 @@ class ReportData(DataFrame): def from_sql_dict(cls, sql_dict): """Create from dictionary.""" report_data = sql_dict["ReportData"] - report_data["ReportDataDictionaryIndex"] = to_numeric( - report_data["ReportDataDictionaryIndex"] - ) + report_data["ReportDataDictionaryIndex"] = to_numeric(report_data["ReportDataDictionaryIndex"]) report_data_dict = sql_dict["ReportDataDictionary"] - return cls( - report_data.reset_index().join( - report_data_dict, on=["ReportDataDictionaryIndex"] - ) - ) + return cls(report_data.reset_index().join(report_data_dict, on=["ReportDataDictionaryIndex"])) @classmethod def from_sqlite( @@ -77,10 +71,10 @@ def from_sqlite( ReportData: a :class:`ReportData` which is a subclass of :class:`DataFrame`. """ if not isinstance(sqlite_file, str): - raise TypeError("Please provide a str, not a {}".format(type(sqlite_file))) + raise TypeError(f"Please provide a str, not a {type(sqlite_file)}") file = Path(sqlite_file) if not file.exists(): - raise FileNotFoundError("Could not find sql file {}".format(file.relpath())) + raise FileNotFoundError(f"Could not find sql file {file.relpath()}") import sqlite3 @@ -89,7 +83,7 @@ def from_sqlite( # empty dict to hold all DataFrames all_tables = {} # Iterate over all tables in the report_tables list - sql_query = f""" + sql_query = """ SELECT rd.ReportDataIndex, rd.TimeIndex, rd.ReportDataDictionaryIndex, @@ -125,15 +119,11 @@ def from_sqlite( """ params = {"warmup_flag": warmup_flag} if table_name: - conditions, table_name = cls.multiple_conditions( - "table_name", table_name, "Name" - ) + conditions, table_name = cls.multiple_conditions("table_name", table_name, "Name") sql_query = sql_query.replace(";", """ AND (%s);""" % conditions) params.update(table_name) if environment_type: - conditions, env_name = cls.multiple_conditions( - "env_name", environment_type, "EnvironmentType" - ) + conditions, env_name = cls.multiple_conditions("env_name", environment_type, "EnvironmentType") sql_query = sql_query.replace(";", """ AND (%s);""" % conditions) params.update(env_name) if reporting_frequency: @@ -150,12 +140,8 @@ def multiple_conditions(basename, cond_names, var_name): if not isinstance(cond_names, (list, tuple)): cond_names = [cond_names] cond_names = set(cond_names) - cond_names = { - "%s_%s" % (basename, i): name for i, name in enumerate(cond_names) - } - conditions = " OR ".join( - ["%s = @%s" % (var_name, cond_name) for cond_name in cond_names] - ) + cond_names = {"%s_%s" % (basename, i): name for i, name in enumerate(cond_names)} + conditions = " OR ".join(["%s = @%s" % (var_name, cond_name) for cond_name in cond_names]) return conditions, cond_names @staticmethod @@ -237,10 +223,7 @@ def filter_report_data( if reportdataindex: c_2 = ( conjunction( - *[ - self[self.REPORTDATAINDEX] == reportdataindex - for reportdataindex in reportdataindex - ], + *[self[self.REPORTDATAINDEX] == reportdataindex for reportdataindex in reportdataindex], logical=np.logical_or, ) if isinstance(reportdataindex, tuple) @@ -261,8 +244,7 @@ def filter_report_data( c_4 = ( conjunction( *[ - self[self.REPORTDATADICTIONARYINDEX] - == reportdatadictionaryindex + self[self.REPORTDATADICTIONARYINDEX] == reportdatadictionaryindex for reportdatadictionaryindex in reportdatadictionaryindex ], logical=np.logical_or, @@ -293,9 +275,7 @@ def filter_report_data( c_n.append(c_6) if type: c_7 = ( - conjunction( - *[self[self.TYPE] == type for type in type], logical=np.logical_or - ) + conjunction(*[self[self.TYPE] == type for type in type], logical=np.logical_or) if isinstance(type, tuple) else self[self.TYPE] == type ) @@ -313,10 +293,7 @@ def filter_report_data( if timesteptype: c_9 = ( conjunction( - *[ - self[self.TIMESTEPTYPE] == timesteptype - for timesteptype in timesteptype - ], + *[self[self.TIMESTEPTYPE] == timesteptype for timesteptype in timesteptype], logical=np.logical_or, ) if isinstance(timesteptype, tuple) @@ -335,9 +312,7 @@ def filter_report_data( c_n.append(c_10) if name: c_11 = ( - conjunction( - *[self[self.NAME] == name for name in name], logical=np.logical_or - ) + conjunction(*[self[self.NAME] == name for name in name], logical=np.logical_or) if isinstance(name, tuple) else self[self.NAME] == name ) @@ -345,10 +320,7 @@ def filter_report_data( if reportingfrequency: c_12 = ( conjunction( - *[ - self[self.REPORTINGFREQUENCY] == reportingfrequency - for reportingfrequency in reportingfrequency - ], + *[self[self.REPORTINGFREQUENCY] == reportingfrequency for reportingfrequency in reportingfrequency], logical=np.logical_or, ) if isinstance(reportingfrequency, tuple) @@ -358,10 +330,7 @@ def filter_report_data( if schedulename: c_13 = ( conjunction( - *[ - self[self.SCHEDULENAME] == schedulename - for schedulename in schedulename - ], + *[self[self.SCHEDULENAME] == schedulename for schedulename in schedulename], logical=np.logical_or, ) if isinstance(schedulename, tuple) @@ -380,7 +349,7 @@ def filter_report_data( c_n.append(c_14) filtered_df = self.loc[conjunction(*c_n, logical=np.logical_and)] - log("filtered ReportData in {:,.2f} seconds".format(time.time() - start_time)) + log(f"filtered ReportData in {time.time() - start_time:,.2f} seconds") if inplace: return filtered_df._update_inplace(filtered_df) else: diff --git a/archetypal/schedule.py b/archetypal/schedule.py index d5f3dacc0..ba50a8a15 100644 --- a/archetypal/schedule.py +++ b/archetypal/schedule.py @@ -93,8 +93,7 @@ def NumericType(self, value): validators.string(value, allow_empty=True) if value is not None: assert value.lower() in self._NUMERIC_TYPES, ( - f"Input error for value '{value}'. NumericType must " - f"be one of '{self._NUMERIC_TYPES}'" + f"Input error for value '{value}'. NumericType must " f"be one of '{self._NUMERIC_TYPES}'" ) self._numeric_type = value @@ -107,8 +106,7 @@ def UnitType(self): def UnitType(self, value): value = validators.string(value) assert value.lower() in map(str.lower, self._UNIT_TYPES), ( - f"Input error for value '{value}'. UnitType must " - f"be one of '{self._UNIT_TYPES}'" + f"Input error for value '{value}'. UnitType must " f"be one of '{self._UNIT_TYPES}'" ) self._unit_type = value @@ -138,9 +136,7 @@ def from_epbunch(cls, epbunch): Args: epbunch (EpBunch): The epbunch of key "SCHEDULETYPELIMITS". """ - assert ( - epbunch.key.upper() == "SCHEDULETYPELIMITS" - ), f"Expected 'SCHEDULETYPELIMITS' epbunch. Got {epbunch.key}." + assert epbunch.key.upper() == "SCHEDULETYPELIMITS", f"Expected 'SCHEDULETYPELIMITS' epbunch. Got {epbunch.key}." name = epbunch.Name lower_limit = epbunch.Lower_Limit_Value upper_limit = epbunch.Upper_Limit_Value @@ -150,12 +146,8 @@ def from_epbunch(cls, epbunch): Name=name, LowerLimit=lower_limit if checkers.is_numeric(lower_limit) else None, UpperLimit=upper_limit if checkers.is_numeric(upper_limit) else None, - NumericType=numeric_type - if checkers.is_string(numeric_type, minimum_length=1) - else "Continuous", - UnitType=unit_type - if checkers.is_string(unit_type, minimum_length=1) - else "Dimensionless", + NumericType=numeric_type if checkers.is_string(numeric_type, minimum_length=1) else "Continuous", + UnitType=unit_type if checkers.is_string(unit_type, minimum_length=1) else "Dimensionless", ) def to_dict(self): @@ -204,17 +196,11 @@ def duplicate(self): def __copy__(self): """Get copy of self.""" - return self.__class__( - self.Name, self.LowerLimit, self.UpperLimit, self.NumericType, self.UnitType - ) + return self.__class__(self.Name, self.LowerLimit, self.UpperLimit, self.NumericType, self.UnitType) def __repr__(self): """Return the string representation of self.""" - return ( - self.Name - + f" {self.LowerLimit} < values < {self.UpperLimit}" - + f"Units: {self.UnitType}" - ) + return self.Name + f" {self.LowerLimit} < values < {self.UpperLimit}" + f"Units: {self.UnitType}" def __keys__(self): """Get keys of self. Useful for hashing.""" @@ -249,12 +235,8 @@ def get_interval_day_ep_schedule_values(epbunch) -> np.ndarray: hourly_values = np.arange(24, dtype=float) start_hour = 0 for i in range(number_of_day_sch): - value = float(epbunch["Value_Until_Time_{}".format(i + 1)]) - until_time = [ - int(s.strip()) - for s in epbunch["Time_{}".format(i + 1)].split(":") - if s.strip().isdigit() - ] + value = float(epbunch[f"Value_Until_Time_{i + 1}"]) + until_time = [int(s.strip()) for s in epbunch[f"Time_{i + 1}"].split(":") if s.strip().isdigit()] end_hour = int(until_time[0] + until_time[1] / 60) for hour in range(start_hour, end_hour): hourly_values[hour] = value @@ -276,9 +258,7 @@ def get_hourly_day_ep_schedule_values(epbunch): return np.array(epbunch.fieldvalues[3:]) @staticmethod - def get_compact_weekly_ep_schedule_values( - epbunch, start_date, index=None, strict=False - ) -> np.ndarray: + def get_compact_weekly_ep_schedule_values(epbunch, start_date, index=None, strict=False) -> np.ndarray: """Get values for schedule:week:compact. Args: @@ -288,7 +268,7 @@ def get_compact_weekly_ep_schedule_values( index: """ if index is None: - idx = pd.date_range(start=start_date, periods=168, freq="1H") + idx = pd.date_range(start=start_date, periods=168, freq="1h") slicer_ = pd.Series([False] * (len(idx)), index=idx) else: slicer_ = pd.Series([False] * (len(index)), index=index) @@ -299,21 +279,15 @@ def get_compact_weekly_ep_schedule_values( num_of_daily_schedules = int(len(epbunch.fieldvalues[2:]) / 2) for i in range(num_of_daily_schedules): - day_type = epbunch["DayType_List_{}".format(i + 1)].lower() + day_type = epbunch[f"DayType_List_{i + 1}"].lower() # This field can optionally contain the prefix โ€œForโ€ - how = _ScheduleParser._field_set( - epbunch, day_type.strip("for: "), start_date, slicer_, strict - ) + how = _ScheduleParser._field_set(epbunch, day_type.strip("for: "), start_date, slicer_, strict) if not weekly_schedules.loc[how].empty: # Loop through days and replace with day:schedule values days = [] - for name, day in weekly_schedules.loc[how].groupby( - pd.Grouper(freq="D") - ): + for name, day in weekly_schedules.loc[how].groupby(pd.Grouper(freq="D")): if not day.empty: - ref = epbunch.get_referenced_object( - "ScheduleDay_Name_{}".format(i + 1) - ) + ref = epbunch.get_referenced_object(f"ScheduleDay_Name_{i + 1}") day.loc[:] = _ScheduleParser.get_schedule_values( sched_epbunch=ref, start_date=start_date, strict=strict ) @@ -346,10 +320,8 @@ def get_daily_weekly_ep_schedule_values(epbunch, start_date, strict) -> np.ndarr "Saturday", "Sunday", ]: - ref = epbunch.get_referenced_object("{}_ScheduleDay_Name".format(day)) - h = _ScheduleParser.get_schedule_values( - sched_epbunch=ref, start_date=start_date, strict=strict - ) + ref = epbunch.get_referenced_object(f"{day}_ScheduleDay_Name") + h = _ScheduleParser.get_schedule_values(sched_epbunch=ref, start_date=start_date, strict=strict) hourly_values.append(h) hourly_values = np.array(hourly_values) # shift days earlier by self.startDayOfTheWeek @@ -378,13 +350,11 @@ def get_list_day_ep_schedule_values(epbunch, start_date) -> np.ndarray: except Exception: all_values[i] = 0 # create a fake index to help us with the resampling - index = pd.date_range( - start=start_date, periods=(24 * 60) / freq, freq="{}T".format(freq) - ) + index = pd.date_range(start=start_date, periods=(24 * 60) / freq, freq=f"{freq}T") series = pd.Series(all_values, index=index) # resample series to hourly values and apply resampler function - series = series.resample("1H").apply(_how(method)) + series = series.resample("1h").apply(_how(method)) return series.values @@ -424,9 +394,7 @@ def get_file_ep_schedule_values(epbunch) -> np.ndarray: delimeter = _separator(sep) skip_rows = int(rows) - 1 # We want to keep the column col = [int(column) - 1] # zero-based - epbunch = pd.read_csv( - file, delimiter=delimeter, skiprows=skip_rows, usecols=col - ) + epbunch = pd.read_csv(file, delimiter=delimeter, skiprows=skip_rows, usecols=col) return epbunch.iloc[:, 0].values @@ -442,7 +410,7 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: field_sets = ["through", "for", "interpolate", "until", "value"] fields = epbunch.fieldvalues[3:] - index = pd.date_range(start=start_date, periods=8760, freq="H") + index = pd.date_range(start=start_date, periods=8760, freq="h") zeros = np.zeros(len(index)) slicer_ = pd.Series([False] * len(index), index=index) @@ -454,9 +422,7 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: how_interpolate = None for field in fields: if any([spe in field.lower() for spe in field_sets]): - f_set, hour, minute, value = _ScheduleParser._field_interpreter( - field, epbunch.Name - ) + f_set, hour, minute, value = _ScheduleParser._field_interpreter(field, epbunch.Name) if f_set.lower() == "through": # main condition. All sub-conditions must obey a @@ -469,9 +435,7 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: from_time = "00:00" # Prepare ep_to_day variable - ep_to_day = _ScheduleParser._date_field_interpretation( - value, start_date - ) + timedelta(days=1) + ep_to_day = _ScheduleParser._date_field_interpretation(value, start_date) + timedelta(days=1) # Calculate Timedelta in days days = (ep_to_day - ep_from_day).days @@ -496,29 +460,21 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: for value in fors: if value.lower() == "allotherdays": # Apply condition to slice - how = _ScheduleParser._field_set( - epbunch, value, start_date, slicer_, strict - ) + how = _ScheduleParser._field_set(epbunch, value, start_date, slicer_, strict) # Reset for condition for_condition = how else: - how = _ScheduleParser._field_set( - epbunch, value, start_date, slicer_, strict - ) + how = _ScheduleParser._field_set(epbunch, value, start_date, slicer_, strict) if how is not None: for_condition.loc[how] = True elif value.lower() == "allotherdays": # Apply condition to slice - how = _ScheduleParser._field_set( - epbunch, value, start_date, slicer_, strict - ) + how = _ScheduleParser._field_set(epbunch, value, start_date, slicer_, strict) # Reset for condition for_condition = how else: # Apply condition to slice - how = _ScheduleParser._field_set( - epbunch, value, start_date, slicer_, strict - ) + how = _ScheduleParser._field_set(epbunch, value, start_date, slicer_, strict) for_condition.loc[how] = True # Combine the for_condition with all_conditions @@ -528,9 +484,7 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: # self.sliced_day_.loc[all_conditions] = True elif "interpolate" in f_set.lower(): # we need to upsample to series to 8760 * 60 values - new_idx = pd.date_range( - start=start_date, periods=525600, closed="left", freq="T" - ) + new_idx = pd.date_range(start=start_date, periods=525600, closed="left", freq="T") series = series.resample("T").pad() series = series.reindex(new_idx) series.fillna(method="pad", inplace=True) @@ -545,18 +499,12 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: until_condition = _ScheduleParser._invalidate_condition(series) if series.index.freq.name == "T": # until_time = str(int(hour) - 1) + ':' + minute - until_time = timedelta( - hours=int(hour), minutes=int(minute) - ) - timedelta(minutes=1) + until_time = timedelta(hours=int(hour), minutes=int(minute)) - timedelta(minutes=1) else: until_time = str(int(hour) - 1) + ":" + minute - until_condition.loc[ - until_condition.between_time(from_time, str(until_time)).index - ] = True - all_conditions = ( - for_condition & through_conditions & until_condition - ) + until_condition.loc[until_condition.between_time(from_time, str(until_time)).index] = True + all_conditions = for_condition & through_conditions & until_condition from_time = str(int(hour)) + ":" + minute elif f_set.lower() == "value": @@ -577,7 +525,7 @@ def get_compact_ep_schedule_values(epbunch, start_date, strict) -> np.ndarray: # update in memory slice slicer_.loc[all_conditions] = True if how_interpolate: - return series.resample("H").mean().values + return series.resample("h").mean().values else: return series.values @@ -592,33 +540,29 @@ def get_yearly_ep_schedule_values(cls, epbunch, start_date, strict) -> np.ndarra """ # first week year = start_date.year - idx = pd.date_range(start=start_date, periods=8760, freq="1H") - hourly_values = pd.Series([0] * 8760, index=idx) + idx = pd.date_range(start=start_date, periods=8760, freq="h") + hourly_values = pd.Series([0] * 8760, index=idx, dtype=float) # generate weekly schedules num_of_weekly_schedules = int(len(epbunch.fieldvalues[3:]) / 5) for i in range(num_of_weekly_schedules): - ref = epbunch.get_referenced_object("ScheduleWeek_Name_{}".format(i + 1)) + ref = epbunch.get_referenced_object(f"ScheduleWeek_Name_{i + 1}") - start_month = getattr(epbunch, "Start_Month_{}".format(i + 1)) - end_month = getattr(epbunch, "End_Month_{}".format(i + 1)) - start_day = getattr(epbunch, "Start_Day_{}".format(i + 1)) - end_day = getattr(epbunch, "End_Day_{}".format(i + 1)) + start_month = getattr(epbunch, f"Start_Month_{i + 1}") + end_month = getattr(epbunch, f"End_Month_{i + 1}") + start_day = getattr(epbunch, f"Start_Day_{i + 1}") + end_day = getattr(epbunch, f"End_Day_{i + 1}") - start = datetime.strptime( - "{}/{}/{}".format(year, start_month, start_day), "%Y/%m/%d" - ) - end = datetime.strptime( - "{}/{}/{}".format(year, end_month, end_day), "%Y/%m/%d" - ) + start = datetime.strptime(f"{year}/{start_month}/{start_day}", "%Y/%m/%d") + end = datetime.strptime(f"{year}/{end_month}/{end_day}", "%Y/%m/%d") days = (end - start).days + 1 end_date = start_date + timedelta(days=days) + timedelta(hours=23) how = pd.IndexSlice[start_date:end_date] weeks = [] - for name, week in hourly_values.loc[how].groupby(pd.Grouper(freq="168H")): + for name, week in hourly_values.loc[how].groupby(pd.Grouper(freq="168h")): if not week.empty: try: week.loc[:] = cls.get_schedule_values( @@ -640,9 +584,7 @@ def get_yearly_ep_schedule_values(cls, epbunch, start_date, strict) -> np.ndarra return hourly_values.values @staticmethod - def get_schedule_values( - sched_epbunch, start_date, index=None, strict=False - ) -> list: + def get_schedule_values(sched_epbunch, start_date, index=None, strict=False) -> list: """Get schedule values for epbunch. Args: @@ -655,37 +597,26 @@ def get_schedule_values( sch_type = sched_epbunch.key.upper() if sch_type.upper() == "schedule:year".upper(): - hourly_values = cls.get_yearly_ep_schedule_values( - sched_epbunch, start_date, strict - ) + hourly_values = cls.get_yearly_ep_schedule_values(sched_epbunch, start_date, strict) elif sch_type.upper() == "schedule:day:interval".upper(): hourly_values = cls.get_interval_day_ep_schedule_values(sched_epbunch) elif sch_type.upper() == "schedule:day:hourly".upper(): hourly_values = cls.get_hourly_day_ep_schedule_values(sched_epbunch) elif sch_type.upper() == "schedule:day:list".upper(): - hourly_values = cls.get_list_day_ep_schedule_values( - sched_epbunch, start_date - ) + hourly_values = cls.get_list_day_ep_schedule_values(sched_epbunch, start_date) elif sch_type.upper() == "schedule:week:compact".upper(): - hourly_values = cls.get_compact_weekly_ep_schedule_values( - sched_epbunch, start_date, index, strict - ) + hourly_values = cls.get_compact_weekly_ep_schedule_values(sched_epbunch, start_date, index, strict) elif sch_type.upper() == "schedule:week:daily".upper(): - hourly_values = cls.get_daily_weekly_ep_schedule_values( - sched_epbunch, start_date, strict - ) + hourly_values = cls.get_daily_weekly_ep_schedule_values(sched_epbunch, start_date, strict) elif sch_type.upper() == "schedule:constant".upper(): hourly_values = cls.get_constant_ep_schedule_values(sched_epbunch) elif sch_type.upper() == "schedule:compact".upper(): - hourly_values = cls.get_compact_ep_schedule_values( - sched_epbunch, start_date, strict - ) + hourly_values = cls.get_compact_ep_schedule_values(sched_epbunch, start_date, strict) elif sch_type.upper() == "schedule:file".upper(): hourly_values = cls.get_file_ep_schedule_values(sched_epbunch) else: log( - "Archetypal does not currently support schedules of type " - '"{}"'.format(sch_type), + "Archetypal does not currently support schedules of type " f'"{sch_type}"', lg.WARNING, ) hourly_values = [] @@ -730,10 +661,7 @@ def _field_interpreter(field, name): minute = None value = statement.strip() else: - msg = ( - 'The schedule "{sch}" contains a Field ' - 'that is not understood: "{field}"'.format(sch=name, field=field) - ) + msg = f'The schedule "{name}" contains a Field ' f'that is not understood: "{field}"' raise NotImplementedError(msg) elif "for" in field.lower(): keywords = [word for word in values_sets if word in field.lower()] @@ -752,16 +680,13 @@ def _field_interpreter(field, name): minute = None else: # parse without a colon - msg = ( - 'The schedule "{sch}" contains a Field ' - 'that is not understood: "{field}"'.format(sch=name, field=field) - ) + msg = f'The schedule "{name}" contains a Field ' f'that is not understood: "{field}"' raise NotImplementedError(msg) elif "interpolate" in field.lower(): msg = ( - 'The schedule "{sch}" contains sub-hourly values (' - 'Field-Set="{field}"). The average over the hour is ' - "taken".format(sch=name, field=field) + f'The schedule "{name}" contains sub-hourly values (' + f'Field-Set="{field}"). The average over the hour is ' + "taken" ) log(msg, lg.WARNING) f_set, value = field.split(":") @@ -782,10 +707,7 @@ def _field_interpreter(field, name): minute = minute.strip() value = None else: - msg = ( - 'The schedule "{sch}" contains a Field ' - 'that is not understood: "{field}"'.format(sch=name, field=field) - ) + msg = f'The schedule "{name}" contains a Field ' f'that is not understood: "{field}"' raise NotImplementedError(msg) elif "value" in field.lower(): if ":" in field.lower(): @@ -795,10 +717,7 @@ def _field_interpreter(field, name): hour = None minute = None else: - msg = ( - 'The schedule "{sch}" contains a Field ' - 'that is not understood: "{field}"'.format(sch=name, field=field) - ) + msg = f'The schedule "{name}" contains a Field ' f'that is not understood: "{field}"' raise NotImplementedError(msg) else: # deal with the data value @@ -830,9 +749,7 @@ def get_schedule_type_limits_data(epbunch): upper_limit, numeric_type, unit_type, - ) = epbunch.theidf.get_schedule_type_limits_data_by_name( - schedule_limit_name - ) + ) = epbunch.theidf.get_schedule_type_limits_data_by_name(schedule_limit_name) return lower_limit, upper_limit, numeric_type, unit_type @@ -871,9 +788,7 @@ def _field_set(schedule_epbunch, field, start_date, slicer_=None, strict=False): if slicer_ is not None: return _conjunction( *[ - _ScheduleParser.special_day( - schedule_epbunch, field, slicer_, strict, start_date - ), + _ScheduleParser.special_day(schedule_epbunch, field, slicer_, strict, start_date), ~slicer_, ], logical=operator.or_, @@ -913,16 +828,12 @@ def _field_set(schedule_epbunch, field, start_date, slicer_=None, strict=False): return None elif field.lower() == "holiday" or field.lower() == "holidays": field = "holiday" - return _ScheduleParser.special_day( - schedule_epbunch, field, slicer_, strict, start_date - ) + return _ScheduleParser.special_day(schedule_epbunch, field, slicer_, strict, start_date) elif not strict: # If not strict, ignore missing field-sets such as CustomDay1 return lambda x: x < 0 else: - raise NotImplementedError( - f"Archetypal does not yet support The Field_set '{field}'" - ) + raise NotImplementedError(f"Archetypal does not yet support The Field_set '{field}'") @staticmethod def _date_field_interpretation(field, start_date): @@ -955,10 +866,7 @@ def _date_field_interpretation(field, start_date): try: date = _ScheduleParser._parse_fancy_string(field, start_date) except Exception as e: - msg = ( - f"the schedule contains a " - f"Field that is not understood: '{field}'" - ) + msg = f"the schedule contains a " f"Field that is not understood: '{field}'" raise ValueError(msg, e) else: return date @@ -1010,12 +918,7 @@ def _parse_fancy_string(field, start_date): monthcal = c.monthdatescalendar(start_date.year, month) # iterate though the month and get the nth weekday - date = [ - day - for week in monthcal - for day in week - if day.weekday() == dayofweek and day.month == month - ][nth] + date = [day for week in monthcal for day in week if day.weekday() == dayofweek and day.month == month][nth] return datetime(date.year, date.month, date.day) @staticmethod @@ -1034,24 +937,15 @@ def special_day(schedule_epbunch, field, slicer_, strict, start_date): dds = schedule_epbunch.theidf.idfobjects["RunPeriodControl:SpecialDays".upper()] dd = [ - dd - for dd in dds - if dd.Special_Day_Type.lower() == field - or dd.Special_Day_Type.lower() in special_day_types + dd for dd in dds if dd.Special_Day_Type.lower() == field or dd.Special_Day_Type.lower() in special_day_types ] if len(dd) > 0: for dd in dd: # can have more than one special day types field = dd.Start_Date - special_day_start_date = _ScheduleParser._date_field_interpretation( - field, start_date - ) + special_day_start_date = _ScheduleParser._date_field_interpretation(field, start_date) duration = int(dd.Duration) - to_date = ( - special_day_start_date - + timedelta(days=duration) - + timedelta(hours=-1) - ) + to_date = special_day_start_date + timedelta(days=duration) + timedelta(hours=-1) sp_slicer_.loc[special_day_start_date:to_date] = True return sp_slicer_ @@ -1060,7 +954,7 @@ def special_day(schedule_epbunch, field, slicer_, strict, start_date): else: msg = ( 'Could not find a "SizingPeriod:DesignDay" object ' - 'needed for schedule with Day Type "{}"'.format(field.capitalize()) + f'needed for schedule with Day Type "{field.capitalize()}"' ) raise ValueError(msg) @@ -1085,9 +979,7 @@ def design_day(schedule_epbunch, field, slicer_, start_date, strict): month = dd.Month day = dd.Day_of_Month data = str(month) + "/" + str(day) - ep_start_date = _ScheduleParser._date_field_interpretation( - data, start_date - ) + ep_start_date = _ScheduleParser._date_field_interpretation(data, start_date) ep_orig = datetime(start_date.year, 1, 1) days_to_speciald = (ep_start_date - ep_orig).days duration = 1 # Duration of 1 day @@ -1220,9 +1112,7 @@ def from_epbunch(cls, epbunch, strict=False, Type=None, **kwargs): """ if Type is None: try: - type_limit_ep = epbunch.get_referenced_object( - "Schedule_Type_Limits_Name" - ) + type_limit_ep = epbunch.get_referenced_object("Schedule_Type_Limits_Name") Type = ScheduleTypeLimits.from_epbunch(type_limit_ep) except (BadEPFieldError, AttributeError): pass @@ -1233,16 +1123,10 @@ def from_epbunch(cls, epbunch, strict=False, Type=None, **kwargs): schedule = cls( Name=kwargs.pop("Name", name), epbunch=epbunch, - start_day_of_the_week=kwargs.pop( - "start_day_of_the_week", start_day_of_the_week - ), + start_day_of_the_week=kwargs.pop("start_day_of_the_week", start_day_of_the_week), Type=Type, DataSource=kwargs.pop("DataSource", epbunch.theidf.name), - Values=np.array( - _ScheduleParser.get_schedule_values( - epbunch, start_date=start_date, strict=strict - ) - ), + Values=np.array(_ScheduleParser.get_schedule_values(epbunch, start_date=start_date, strict=strict)), **kwargs, ) return schedule @@ -1294,9 +1178,7 @@ def mean(self): @property def series(self): """Return an :class:`EnergySeries`.""" - index = pd.date_range( - start=self.startDate, periods=self.all_values.size, freq="1H" - ) + index = pd.date_range(start=self.startDate, periods=self.all_values.size, freq="1h") if self.Type is not None: units = self.Type.UnitType else: @@ -1339,10 +1221,9 @@ def replace(self, new_values: Union[pd.Series]): "The index of `new_values` must be a `pandas.DatetimeIndex`. Instead, " f"`{type(new_values.index)}` was provided." ) - assert not self.series.index.difference(new_values.index).empty, ( - "There is no overlap between self.index and new_values.index. Please " - "check your dates." - ) + assert not self.series.index.difference( + new_values.index + ).empty, "There is no overlap between self.index and new_values.index. Please check your dates." # create a copy of self.series as orig. orig = self.series.copy() @@ -1359,9 +1240,7 @@ def replace(self, new_values: Union[pd.Series]): orig.loc[idx] = new_values # adjust remaining time steps with the average difference. Inplace. - orig.loc[orig.index.difference(idx)] += diff.sum() / len( - orig.index.difference(idx) - ) + orig.loc[orig.index.difference(idx)] += diff.sum() / len(orig.index.difference(idx)) new = orig # assert the sum has not changed as a sanity check. @@ -1447,9 +1326,7 @@ def to_year_week_day(self): dict_day[name] = unique_day # Create idf_objects for schedule:day:hourly - ep_day = DaySchedule( - Name=name, Type=self.Type, Values=[unique_day[i] for i in range(24)] - ) + ep_day = DaySchedule(Name=name, Type=self.Type, Values=[unique_day[i] for i in range(24)]) ep_days.append(ep_day) # create unique weeks from unique days @@ -1462,9 +1339,7 @@ def to_year_week_day(self): return_counts=True, ) except ValueError: - raise ValueError( - "Looks like the idf model needs to be rerun with 'annual=True'" - ) + raise ValueError("Looks like the idf model needs to be rerun with 'annual=True'") # We use the calendar module to set the week days order import calendar @@ -1483,7 +1358,7 @@ def to_year_week_day(self): day_of_week = unique_week[..., i * 24 : (i + 1) * 24] for key, ep_day in zip(dict_day, ep_days): if (day_of_week == dict_day[key]).all(): - dict_week[week_id]["day_{}".format(day)] = ep_day + dict_week[week_id][f"day_{day}"] = ep_day # Create idf_objects for schedule:week:daily @@ -1492,22 +1367,14 @@ def to_year_week_day(self): for week_id in dict_week: ep_week = WeekSchedule( Name=week_id, - Days=[ - dict_week[week_id]["day_{}".format(day_num)] - for day_num in c.iterweekdays() - ], + Days=[dict_week[week_id][f"day_{day_num}"] for day_num in c.iterweekdays()], ) ep_weeks[week_id] = ep_week blocks = {} from_date = datetime(self.year, 1, 1) bincount = [sum(1 for _ in group) for key, group in groupby(nws + 1) if key] - week_order = { - i: v - for i, v in enumerate( - np.array([key for key, group in groupby(nws + 1) if key]) - 1 - ) - } + week_order = {i: v for i, v in enumerate(np.array([key for key, group in groupby(nws + 1) if key]) - 1)} for i, (week_n, count) in enumerate(zip(week_order, bincount)): week_id = list(dict_week)[week_order[i]] to_date = from_date + timedelta(days=int(count * 7), hours=-1) @@ -1567,9 +1434,7 @@ def _repr_svg_(self): vmax = self.Type.UpperLimit else: vmin, vmax = (None, None) - fig, ax = self.series.plot2d( - cmap="Greys", show=False, figsize=(7, 2), dpi=72, vmin=vmin, vmax=vmax - ) + fig, ax = self.series.plot2d(cmap="Greys", show=False, figsize=(7, 2), dpi=72, vmin=vmin, vmax=vmax) f = io.BytesIO() fig.savefig(f, format="svg") plt.close(fig) @@ -1610,9 +1475,7 @@ def combine(self, other, weights=None, quantity=None): return self if not weights: weights = [1, 1] - new_values = np.average( - [self.all_values, other.all_values], axis=0, weights=weights - ) + new_values = np.average([self.all_values, other.all_values], axis=0, weights=weights) # the new object's name name = "+".join([self.Name, other.Name]) diff --git a/archetypal/simple_glazing.py b/archetypal/simple_glazing.py index c82da0da5..928026790 100644 --- a/archetypal/simple_glazing.py +++ b/archetypal/simple_glazing.py @@ -144,7 +144,7 @@ def calc_simple_glazing(shgc, u_factor, visible_transmittance=None): dict["Comments"] = ( "Properties calculated from Simple Glazing System with " - "SHGC={:.3f}, UFactor={:.3f} and Tvis={:.3f}".format(shgc, u_factor, T_vis) + f"SHGC={shgc:.3f}, UFactor={u_factor:.3f} and Tvis={T_vis:.3f}" ) return dict @@ -307,17 +307,11 @@ def t_sol(shgc, u_factor): def r_i_s_intermediate(shgc, t_sol, u_factor): if u_factor >= 4.5: return 1 / ( - 29.436546 * (shgc - t_sol) ** 3 - - 21.943415 * (shgc - t_sol) ** 2 - + 9.945872 * (shgc - t_sol) - + 7.426151 + 29.436546 * (shgc - t_sol) ** 3 - 21.943415 * (shgc - t_sol) ** 2 + 9.945872 * (shgc - t_sol) + 7.426151 ) if u_factor <= 3.4: return 1 / ( - 199.8208128 * (shgc - t_sol) ** 3 - - 90.639733 * (shgc - t_sol) ** 2 - + 19.737055 * (shgc - t_sol) - + 6.766575 + 199.8208128 * (shgc - t_sol) ** 3 - 90.639733 * (shgc - t_sol) ** 2 + 19.737055 * (shgc - t_sol) + 6.766575 ) diff --git a/archetypal/tabulardata.py b/archetypal/tabulardata.py index 301d2aee1..ca0e42bd6 100644 --- a/archetypal/tabulardata.py +++ b/archetypal/tabulardata.py @@ -85,10 +85,7 @@ def filter_tabular_data( if archetype: c_1 = ( - conjunction( - *[self[self.ARCHETYPE] == archetype for archetype in archetype], - logical=np.logical_or - ) + conjunction(*[self[self.ARCHETYPE] == archetype for archetype in archetype], logical=np.logical_or) if isinstance(archetype, tuple) else self[self.ARCHETYPE] == archetype ) @@ -96,11 +93,8 @@ def filter_tabular_data( if tabulardataindex: c_2 = ( conjunction( - *[ - self[self.TABULARDATAINDEX] == tabulardataindex - for tabulardataindex in tabulardataindex - ], - logical=np.logical_or + *[self[self.TABULARDATAINDEX] == tabulardataindex for tabulardataindex in tabulardataindex], + logical=np.logical_or, ) if isinstance(tabulardataindex, tuple) else self[self.TABULARDATAINDEX] == tabulardataindex @@ -108,30 +102,21 @@ def filter_tabular_data( c_n.append(c_2) if value: c_3 = ( - conjunction( - *[self[self.VALUE] == value for value in value], - logical=np.logical_or - ) + conjunction(*[self[self.VALUE] == value for value in value], logical=np.logical_or) if isinstance(value, tuple) else self[self.VALUE] == value ) c_n.append(c_3) if reportname: c_4 = ( - conjunction( - *[self[self.REPORTNAME] == reportname for reportname in reportname], - logical=np.logical_or - ) + conjunction(*[self[self.REPORTNAME] == reportname for reportname in reportname], logical=np.logical_or) if isinstance(reportname, tuple) else self[self.REPORTNAME] == reportname ) c_n.append(c_4) if value: c_5 = ( - conjunction( - *[self[self.VALUE] == value for value in value], - logical=np.logical_or - ) + conjunction(*[self[self.VALUE] == value for value in value], logical=np.logical_or) if isinstance(value, tuple) else self[self.VALUE] == value ) @@ -139,11 +124,8 @@ def filter_tabular_data( if reportforstring: c_6 = ( conjunction( - *[ - self[self.REPORTFORSTRING] == reportforstring - for reportforstring in reportforstring - ], - logical=np.logical_or + *[self[self.REPORTFORSTRING] == reportforstring for reportforstring in reportforstring], + logical=np.logical_or, ) if isinstance(reportforstring, tuple) else self[self.REPORTFORSTRING] == reportforstring @@ -151,47 +133,35 @@ def filter_tabular_data( c_n.append(c_6) if tablename: c_7 = ( - conjunction( - *[self[self.TABLENAME] == tablename for tablename in tablename], - logical=np.logical_or - ) + conjunction(*[self[self.TABLENAME] == tablename for tablename in tablename], logical=np.logical_or) if isinstance(tablename, tuple) else self[self.TABLENAME] == tablename ) c_n.append(c_7) if rowname: c_8 = ( - conjunction( - *[self[self.ROWNAME] == rowname for rowname in rowname], - logical=np.logical_or - ) + conjunction(*[self[self.ROWNAME] == rowname for rowname in rowname], logical=np.logical_or) if isinstance(rowname, tuple) else self[self.ROWNAME] == rowname ) c_n.append(c_8) if columnname: c_9 = ( - conjunction( - *[self[self.COLUMNNAME] == columnname for columnname in columnname], - logical=np.logical_or - ) + conjunction(*[self[self.COLUMNNAME] == columnname for columnname in columnname], logical=np.logical_or) if isinstance(columnname, tuple) else self[self.COLUMNNAME] == columnname ) c_n.append(c_9) if units: c_14 = ( - conjunction( - *[self[self.UNITS] == units for units in units], - logical=np.logical_or - ) + conjunction(*[self[self.UNITS] == units for units in units], logical=np.logical_or) if isinstance(units, tuple) else self[self.UNITS] == units ) c_n.append(c_14) filtered_df = self.loc[conjunction(*c_n, logical=np.logical_and)] - log("filtered TabularData in {:,.2f} seconds".format(time.time() - start_time)) + log(f"filtered TabularData in {time.time() - start_time:,.2f} seconds") if inplace: return filtered_df._update_inplace(filtered_df) else: diff --git a/archetypal/template/__init__.py b/archetypal/template/__init__.py index 3aef30585..841339234 100644 --- a/archetypal/template/__init__.py +++ b/archetypal/template/__init__.py @@ -41,7 +41,7 @@ YearSchedule, YearSchedulePart, ) -from archetypal.template.structure import StructureInformation, MassRatio +from archetypal.template.structure import MassRatio, StructureInformation from archetypal.template.ventilation import VentilationSetting from archetypal.template.window_setting import WindowSetting from archetypal.template.zone_construction_set import ZoneConstructionSet diff --git a/archetypal/template/building_template.py b/archetypal/template/building_template.py index ef78e234b..ba41a00cc 100644 --- a/archetypal/template/building_template.py +++ b/archetypal/template/building_template.py @@ -126,9 +126,7 @@ def Perimeter(self): @Perimeter.setter def Perimeter(self, value): - assert isinstance( - value, ZoneDefinition - ), f"Expected a ZoneDefinition, not {type(value)}" + assert isinstance(value, ZoneDefinition), f"Expected a ZoneDefinition, not {type(value)}" self._perimeter = value @property @@ -138,9 +136,7 @@ def Core(self): @Core.setter def Core(self, value): - assert isinstance( - value, ZoneDefinition - ), f"Expected a ZoneDefinition, not {type(value)}" + assert isinstance(value, ZoneDefinition), f"Expected a ZoneDefinition, not {type(value)}" self._core = value @property @@ -150,9 +146,7 @@ def Structure(self): @Structure.setter def Structure(self, value): - assert isinstance( - value, StructureInformation - ), f"Expected a StructureInformation, not {type(value)}" + assert isinstance(value, StructureInformation), f"Expected a StructureInformation, not {type(value)}" self._structure_definition = value @property @@ -162,9 +156,7 @@ def Windows(self): @Windows.setter def Windows(self, value): - assert isinstance( - value, WindowSetting - ), f"Expected a WindowSetting, not {type(value)}" + assert isinstance(value, WindowSetting), f"Expected a WindowSetting, not {type(value)}" self._window_setting = value @property @@ -174,9 +166,7 @@ def DefaultWindowToWallRatio(self): @DefaultWindowToWallRatio.setter def DefaultWindowToWallRatio(self, value): - self._default_window_to_wall_ratio = validators.float( - value, minimum=0, maximum=1 - ) + self._default_window_to_wall_ratio = validators.float(value, minimum=0, maximum=1) @property def Lifespan(self): @@ -203,9 +193,7 @@ def YearFrom(self): @YearFrom.setter def YearFrom(self, value): - self._year_from = validators.integer( - value, coerce_value=True, maximum=self.YearTo, allow_empty=True - ) + self._year_from = validators.integer(value, coerce_value=True, maximum=self.YearTo, allow_empty=True) @property def YearTo(self): @@ -214,9 +202,7 @@ def YearTo(self): @YearTo.setter def YearTo(self, value): - self._year_to = validators.integer( - value, coerce_value=True, minimum=self.YearFrom, allow_empty=True - ) + self._year_to = validators.integer(value, coerce_value=True, minimum=self.YearFrom, allow_empty=True) @property def Country(self): @@ -336,9 +322,7 @@ def from_dict( try: window = window_settings[window_data["$ref"]] except KeyError: - window = WindowSetting.from_dict( - window_data, schedules, window_constructions - ) + window = WindowSetting.from_dict(window_data, schedules, window_constructions) return cls( Core=core, @@ -408,26 +392,12 @@ def reduced_model(cls, name, zones, **kwargs): zone: ZoneDefinition cores = list( - chain.from_iterable( - [ - list(repeat(zone.duplicate(), zone.multiplier)) - for zone in zones - if zone.is_core - ] - ) + chain.from_iterable([list(repeat(zone.duplicate(), zone.multiplier)) for zone in zones if zone.is_core]) ) perimeters = list( - chain.from_iterable( - [ - list(repeat(zone.duplicate(), zone.multiplier)) - for zone in zones - if not zone.is_core - ] - ) + chain.from_iterable([list(repeat(zone.duplicate(), zone.multiplier)) for zone in zones if not zone.is_core]) ) - assert ( - len(perimeters) >= 1 - ), "Building complexity reduction must have at least one perimeter zone." + assert len(perimeters) >= 1, "Building complexity reduction must have at least one perimeter zone." Core = None # reduce list of core zones @@ -478,8 +448,7 @@ def reduced_model(cls, name, zones, **kwargs): level=lg.DEBUG, ) log( - f"Completed model complexity reduction for BuildingTemplate '{name}' " - f"in {time.time() - start_time:,.2f}" + f"Completed model complexity reduction for BuildingTemplate '{name}' " f"in {time.time() - start_time:,.2f}" ) return cls( name, @@ -568,18 +537,14 @@ def get_unique(self): def recursive_replace(umibase): for key, obj in umibase.mapping(validate=False).items(): - if isinstance( - obj, (UmiBase, MaterialLayer, YearSchedulePart, MassRatio) - ): + if isinstance(obj, (UmiBase, MaterialLayer, YearSchedulePart, MassRatio)): recursive_replace(obj) setattr(umibase, key, obj.get_unique()) elif isinstance(obj, list): [ recursive_replace(obj) for obj in obj - if isinstance( - obj, (UmiBase, MaterialLayer, YearSchedulePart, MassRatio) - ) + if isinstance(obj, (UmiBase, MaterialLayer, YearSchedulePart, MassRatio)) ] recursive_replace(self) @@ -622,13 +587,7 @@ def get_ref(self, ref): ref: """ return next( - iter( - [ - value - for value in BuildingTemplate.CREATED_OBJECTS - if value.id == ref["$ref"] - ] - ), + iter([value for value in BuildingTemplate.CREATED_OBJECTS if value.id == ref["$ref"]]), None, ) diff --git a/archetypal/template/conditioning.py b/archetypal/template/conditioning.py index a22670d69..fbf287570 100644 --- a/archetypal/template/conditioning.py +++ b/archetypal/template/conditioning.py @@ -306,9 +306,7 @@ def CoolingSetpoint(self): @CoolingSetpoint.setter def CoolingSetpoint(self, value): - assert ( - self._heating_setpoint < value - ), "Heating setpoint must be lower than the cooling setpoint." + assert self._heating_setpoint < value, "Heating setpoint must be lower than the cooling setpoint." self._cooling_setpoint = validators.float(value, minimum=-100, maximum=100) @property @@ -318,9 +316,7 @@ def HeatingSetpoint(self): @HeatingSetpoint.setter def HeatingSetpoint(self, value): - assert ( - value < self._cooling_setpoint - ), "Heating setpoint must be lower than the cooling setpoint." + assert value < self._cooling_setpoint, "Heating setpoint must be lower than the cooling setpoint." self._heating_setpoint = validators.float(value, minimum=-100, maximum=100) @property @@ -385,8 +381,7 @@ def IsHeatingOn(self): @IsHeatingOn.setter def IsHeatingOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsHeatingOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsHeatingOn must " f"be a boolean, not a {type(value)}" ) self._is_heating_on = value @@ -399,8 +394,7 @@ def HeatingSchedule(self): def HeatingSchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. HeatingSchedule must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. HeatingSchedule must " f"be an UmiSchedule, not a {type(value)}" ) self._heating_schedule = value @@ -413,14 +407,12 @@ def HeatingLimitType(self): def HeatingLimitType(self, value): if checkers.is_string(value): assert IdealSystemLimit[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in IdealSystemLimit)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in IdealSystemLimit)}" ) self._heating_limit_type = IdealSystemLimit[value] elif checkers.is_numeric(value): assert IdealSystemLimit(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in IdealSystemLimit)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in IdealSystemLimit)}" ) self._heating_limit_type = IdealSystemLimit(value) elif isinstance(value, IdealSystemLimit): @@ -434,16 +426,10 @@ def HeatingFuelType(self): @HeatingFuelType.setter def HeatingFuelType(self, value): if checkers.is_string(value): - assert FuelType[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in FuelType)}" - ) + assert FuelType[value], f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in FuelType)}" self._heating_fuel_type = FuelType[value] elif checkers.is_numeric(value): - assert FuelType(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in FuelType)}" - ) + assert FuelType(value), f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in FuelType)}" self._heating_fuel_type = FuelType(value) elif isinstance(value, FuelType): self._heating_fuel_type = value @@ -465,8 +451,7 @@ def IsCoolingOn(self): @IsCoolingOn.setter def IsCoolingOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsCoolingOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsCoolingOn must " f"be a boolean, not a {type(value)}" ) self._is_cooling_on = value @@ -479,8 +464,7 @@ def CoolingSchedule(self): def CoolingSchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. CoolingSchedule must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. CoolingSchedule must " f"be an UmiSchedule, not a {type(value)}" ) self._cooling_schedule = value @@ -493,14 +477,12 @@ def CoolingLimitType(self): def CoolingLimitType(self, value): if checkers.is_string(value): assert IdealSystemLimit[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in IdealSystemLimit)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in IdealSystemLimit)}" ) self._cooling_limit_type = IdealSystemLimit[value] elif checkers.is_numeric(value): assert IdealSystemLimit(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in IdealSystemLimit)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in IdealSystemLimit)}" ) self._cooling_limit_type = IdealSystemLimit(value) elif isinstance(value, IdealSystemLimit): @@ -514,16 +496,10 @@ def CoolingFuelType(self): @CoolingFuelType.setter def CoolingFuelType(self, value): if checkers.is_string(value): - assert FuelType[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in FuelType)}" - ) + assert FuelType[value], f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in FuelType)}" self._cooling_fuel_type = FuelType[value] elif checkers.is_numeric(value): - assert FuelType(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in FuelType)}" - ) + assert FuelType(value), f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in FuelType)}" self._cooling_fuel_type = FuelType(value) elif isinstance(value, FuelType): self._cooling_fuel_type = value @@ -545,8 +521,7 @@ def IsMechVentOn(self): @IsMechVentOn.setter def IsMechVentOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsMechVentOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsMechVentOn must " f"be a boolean, not a {type(value)}" ) self._is_mech_vent_on = value @@ -559,14 +534,12 @@ def EconomizerType(self): def EconomizerType(self, value): if checkers.is_string(value): assert EconomizerTypes[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in EconomizerTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in EconomizerTypes)}" ) self._economizer_type = EconomizerTypes[value] elif checkers.is_numeric(value): assert EconomizerTypes(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in EconomizerTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in EconomizerTypes)}" ) self._economizer_type = EconomizerTypes(value) elif isinstance(value, EconomizerTypes): @@ -581,8 +554,7 @@ def MechVentSchedule(self): def MechVentSchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. MechVentSchedule must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. MechVentSchedule must " f"be an UmiSchedule, not a {type(value)}" ) self._mech_vent_schedule = value @@ -595,14 +567,12 @@ def HeatRecoveryType(self): def HeatRecoveryType(self, value): if checkers.is_string(value): assert HeatRecoveryTypes[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in HeatRecoveryTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in HeatRecoveryTypes)}" ) self._heat_recovery_type = HeatRecoveryTypes[value] elif checkers.is_numeric(value): assert HeatRecoveryTypes(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in HeatRecoveryTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in HeatRecoveryTypes)}" ) self._heat_recovery_type = HeatRecoveryTypes(value) elif isinstance(value, HeatRecoveryTypes): @@ -615,9 +585,7 @@ def HeatRecoveryEfficiencyLatent(self): @HeatRecoveryEfficiencyLatent.setter def HeatRecoveryEfficiencyLatent(self, value): - self._heat_recovery_efficiency_latent = validators.float( - value, minimum=0, maximum=1 - ) + self._heat_recovery_efficiency_latent = validators.float(value, minimum=0, maximum=1) @property def HeatRecoveryEfficiencySensible(self): @@ -626,9 +594,7 @@ def HeatRecoveryEfficiencySensible(self): @HeatRecoveryEfficiencySensible.setter def HeatRecoveryEfficiencySensible(self, value): - self._heat_recovery_efficiency_sensible = validators.float( - value, minimum=0, maximum=1 - ) + self._heat_recovery_efficiency_sensible = validators.float(value, minimum=0, maximum=1) @classmethod def from_dict(cls, data, schedules, **kwargs): @@ -695,11 +661,7 @@ def to_dict(self): data_dict["$id"] = str(self.id) data_dict["CoolingSchedule"] = self.CoolingSchedule.to_ref() data_dict["CoolingCoeffOfPerf"] = round(self.CoolingCoeffOfPerf, 3) - data_dict["CoolingSetpoint"] = ( - round(self.CoolingSetpoint, 3) - if not math.isnan(self.CoolingSetpoint) - else 26 - ) + data_dict["CoolingSetpoint"] = round(self.CoolingSetpoint, 3) if not math.isnan(self.CoolingSetpoint) else 26 data_dict["CoolingLimitType"] = self.CoolingLimitType.value data_dict["CoolingFuelType"] = self.CoolingFuelType.value data_dict["EconomizerType"] = self.EconomizerType.value @@ -707,17 +669,9 @@ def to_dict(self): data_dict["HeatingLimitType"] = self.HeatingLimitType.value data_dict["HeatingFuelType"] = self.HeatingFuelType.value data_dict["HeatingSchedule"] = self.HeatingSchedule.to_ref() - data_dict["HeatingSetpoint"] = ( - round(self.HeatingSetpoint, 3) - if not math.isnan(self.HeatingSetpoint) - else 20 - ) - data_dict["HeatRecoveryEfficiencyLatent"] = round( - self.HeatRecoveryEfficiencyLatent, 3 - ) - data_dict["HeatRecoveryEfficiencySensible"] = round( - self.HeatRecoveryEfficiencySensible, 3 - ) + data_dict["HeatingSetpoint"] = round(self.HeatingSetpoint, 3) if not math.isnan(self.HeatingSetpoint) else 20 + data_dict["HeatRecoveryEfficiencyLatent"] = round(self.HeatRecoveryEfficiencyLatent, 3) + data_dict["HeatRecoveryEfficiencySensible"] = round(self.HeatRecoveryEfficiencySensible, 3) data_dict["HeatRecoveryType"] = self.HeatRecoveryType.value data_dict["IsCoolingOn"] = self.IsCoolingOn data_dict["IsHeatingOn"] = self.IsHeatingOn @@ -845,19 +799,12 @@ def get_equipment_list(zone, zone_ep): Args: zone_ep: """ - connections = zone_ep.getreferingobjs( - iddgroups=["Zone HVAC Equipment Connections"], fields=["Zone_Name"] - ) - referenced_object = next(iter(connections)).get_referenced_object( - "Zone_Conditioning_Equipment_List_Name" - ) + connections = zone_ep.getreferingobjs(iddgroups=["Zone HVAC Equipment Connections"], fields=["Zone_Name"]) + referenced_object = next(iter(connections)).get_referenced_object("Zone_Conditioning_Equipment_List_Name") # EquipmentList can have 18 objects. Filter out the None objects. return filter( None, - [ - referenced_object.get_referenced_object(f"Zone_Equipment_{i}_Name") - for i in range(1, 19) - ], + [referenced_object.get_referenced_object(f"Zone_Equipment_{i}_Name") for i in range(1, 19)], ) def fresh_air_from_ideal_loads(self, zone, zone_ep): @@ -872,23 +819,11 @@ def fresh_air_from_ideal_loads(self, zone, zone_ep): MechVentSchedule) """ equip_list = self.get_equipment_list(zone, zone_ep) - equipment = next( - iter( - [ - eq - for eq in equip_list - if eq.key.lower() == "ZoneHVAC:IdealLoadsAirSystem".lower() - ] - ) - ) - oa_spec = equipment.get_referenced_object( - "Design_Specification_Outdoor_Air_Object_Name" - ) + equipment = next(iter([eq for eq in equip_list if eq.key.lower() == "ZoneHVAC:IdealLoadsAirSystem".lower()])) + oa_spec = equipment.get_referenced_object("Design_Specification_Outdoor_Air_Object_Name") oa_area = float(oa_spec.Outdoor_Air_Flow_per_Zone_Floor_Area) oa_person = float(oa_spec.Outdoor_Air_Flow_per_Person) - mechvent_schedule = self._mechanical_schedule_from_outdoorair_object( - oa_spec, zone - ) + mechvent_schedule = self._mechanical_schedule_from_outdoorair_object(oa_spec, zone) return True, oa_area, oa_person, mechvent_schedule def fresh_air_from_zone_sizes(self, zone): @@ -910,11 +845,7 @@ def fresh_air_from_zone_sizes(self, zone): select t.ColumnName, t.Value from TabularDataWithStrings t where TableName == 'Zone Sensible Heating' and RowName == '{zone.Name.upper()}'""" - oa = ( - pd.read_sql_query(sql_query, con=conn, coerce_float=True) - .set_index("ColumnName") - .squeeze() - ) + oa = pd.read_sql_query(sql_query, con=conn, coerce_float=True).set_index("ColumnName").squeeze() oa = pd.to_numeric(oa, errors="coerce") oa_design = oa["Minimum Outdoor Air Flow Rate"] # m3/s isoa = oa["Calculated Design Air Flow"] > 0 # True if ach > 0 @@ -922,18 +853,14 @@ def fresh_air_from_zone_sizes(self, zone): if zone.occupants > 0: oa_person = oa_design / zone.occupants else: - oa_person = np.NaN + oa_person = np.nan designobjs = zone._epbunch.getreferingobjs( iddgroups=["HVAC Design Objects"], fields=["Zone_or_ZoneList_Name"] ) obj = next(iter(eq for eq in designobjs if eq.key.lower() == "sizing:zone")) - oa_spec = obj.get_referenced_object( - "Design_Specification_Outdoor_Air_Object_Name" - ) - mechvent_schedule = self._mechanical_schedule_from_outdoorair_object( - oa_spec, zone - ) + oa_spec = obj.get_referenced_object("Design_Specification_Outdoor_Air_Object_Name") + mechvent_schedule = self._mechanical_schedule_from_outdoorair_object(oa_spec, zone) return isoa, oa_area, oa_person, mechvent_schedule def _mechanical_schedule_from_outdoorair_object(self, oa_spec, zone) -> UmiSchedule: @@ -942,8 +869,7 @@ def _mechanical_schedule_from_outdoorair_object(self, oa_spec, zone) -> UmiSched epbunch = zone.idf.schedules_dict[oa_spec.Outdoor_Air_Schedule_Name.upper()] umi_schedule = UmiSchedule.from_epbunch(epbunch) log( - f"Mechanical Ventilation Schedule set as {UmiSchedule} for " - f"zone {zone.Name}", + f"Mechanical Ventilation Schedule set as {UmiSchedule} for " f"zone {zone.Name}", lg.DEBUG, ) return umi_schedule @@ -952,9 +878,7 @@ def _mechanical_schedule_from_outdoorair_object(self, oa_spec, zone) -> UmiSched # Try to get try: values = ( - self.idf.variables.OutputVariable[ - "Air_System_Outdoor_Air_Minimum_Flow_Fraction" - ] + self.idf.variables.OutputVariable["Air_System_Outdoor_Air_Minimum_Flow_Fraction"] .values() # return values .mean(axis=1) # for more than one system, return mean .values # get numpy array @@ -962,13 +886,8 @@ def _mechanical_schedule_from_outdoorair_object(self, oa_spec, zone) -> UmiSched except KeyError: # if no Air_System_Outdoor_Air_Minimum_Flow_Fraction defined, # then create an always off schedule as a backup. - log( - f"No Mechanical Ventilation Schedule specified for zone " - f"{zone.Name}" - ) - return UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff", allow_duplicates=True - ) + log(f"No Mechanical Ventilation Schedule specified for zone " f"{zone.Name}") + return UmiSchedule.constant_schedule(value=0, Name="AlwaysOff", allow_duplicates=True) else: log( f"Mechanical Ventilation Schedule specified for zone " @@ -1003,9 +922,7 @@ def _set_zone_cops(self, zone, zone_ep, nolimit=False): total_input_heating_energy = 0 for meter in heating_meters: try: - total_input_heating_energy += ( - zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() - ) + total_input_heating_energy += zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() except KeyError: pass # pass if meter does not exist for model @@ -1016,17 +933,13 @@ def _set_zone_cops(self, zone, zone_ep, nolimit=False): total_output_heating_energy = 0 for meter in heating_energy_transfer_meters: try: - total_output_heating_energy += ( - zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() - ) + total_output_heating_energy += zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() except KeyError: pass # pass if meter does not exist for model if total_output_heating_energy == 0: # IdealLoadsAirSystem try: total_output_heating_energy += ( - zone_ep.theidf.meters.OutputMeter["Heating__EnergyTransfer"] - .values("kWh") - .sum() + zone_ep.theidf.meters.OutputMeter["Heating__EnergyTransfer"].values("kWh").sum() ) except KeyError: pass @@ -1041,9 +954,7 @@ def _set_zone_cops(self, zone, zone_ep, nolimit=False): total_input_cooling_energy = 0 for meter in cooling_meters: try: - total_input_cooling_energy += ( - zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() - ) + total_input_cooling_energy += zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() except KeyError: pass # pass if meter does not exist for model @@ -1054,35 +965,23 @@ def _set_zone_cops(self, zone, zone_ep, nolimit=False): total_output_cooling_energy = 0 for meter in cooling_energy_transfer_meters: try: - total_output_cooling_energy += ( - zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() - ) + total_output_cooling_energy += zone_ep.theidf.meters.OutputMeter[meter].values("kWh").sum() except KeyError: pass # pass if meter does not exist for model if total_output_cooling_energy == 0: # IdealLoadsAirSystem try: total_output_cooling_energy += ( - zone_ep.theidf.meters.OutputMeter["Cooling__EnergyTransfer"] - .values("kWh") - .sum() + zone_ep.theidf.meters.OutputMeter["Cooling__EnergyTransfer"].values("kWh").sum() ) except KeyError: pass - ratio_cooling = total_output_cooling_energy / ( - total_output_cooling_energy + total_output_heating_energy - ) - ratio_heating = total_output_heating_energy / ( - total_output_cooling_energy + total_output_heating_energy - ) + ratio_cooling = total_output_cooling_energy / (total_output_cooling_energy + total_output_heating_energy) + ratio_heating = total_output_heating_energy / (total_output_cooling_energy + total_output_heating_energy) # estimate fans electricity for cooling and heating try: - fans_energy = ( - zone_ep.theidf.meters.OutputMeter["Fans__Electricity"] - .values("kWh") - .sum() - ) + fans_energy = zone_ep.theidf.meters.OutputMeter["Fans__Electricity"].values("kWh").sum() fans_cooling = fans_energy * ratio_cooling fans_heating = fans_energy * ratio_heating except KeyError: @@ -1092,11 +991,7 @@ def _set_zone_cops(self, zone, zone_ep, nolimit=False): # estimate pumps electricity for cooling and heating try: - pumps_energy = ( - zone_ep.theidf.meters.OutputMeter["Pumps__Electricity"] - .values("kWh") - .sum() - ) + pumps_energy = zone_ep.theidf.meters.OutputMeter["Pumps__Electricity"].values("kWh").sum() pumps_cooling = pumps_energy * ratio_cooling pumps_heating = pumps_energy * ratio_heating except KeyError: @@ -1247,9 +1142,7 @@ def _set_heat_recovery(self, zone, zone_ep): # get possible heat recovery objects from this idf heat_recovery_in_idf = list( - chain.from_iterable( - zone_ep.theidf.idfobjects[key.upper()] for key in heat_recovery_objects - ) + chain.from_iterable(zone_ep.theidf.idfobjects[key.upper()] for key in heat_recovery_objects) ) # Set defaults @@ -1277,17 +1170,11 @@ def _set_heat_recovery(self, zone, zone_ep): "Supply Air Inlet TยฐC)" ) - elif ( - object.key.upper() == "HeatExchanger:AirToAir:SensibleAndLatent".upper() - ): + elif object.key.upper() == "HeatExchanger:AirToAir:SensibleAndLatent".upper(): # Do HeatExchanger:AirToAir:SensibleAndLatent calculation - HeatRecoveryEfficiencyLatent = ( - object.Latent_Effectiveness_at_100_Heating_Air_Flow - ) - HeatRecoveryEfficiencySensible = ( - object.Sensible_Effectiveness_at_100_Heating_Air_Flow - ) + HeatRecoveryEfficiencyLatent = object.Latent_Effectiveness_at_100_Heating_Air_Flow + HeatRecoveryEfficiencySensible = object.Sensible_Effectiveness_at_100_Heating_Air_Flow HeatRecoveryType = HeatRecoveryTypes.Enthalpy elif object.key.upper() == "HeatExchanger:Desiccant:BalancedFlow".upper(): @@ -1297,14 +1184,11 @@ def _set_heat_recovery(self, zone, zone_ep): HeatRecoveryEfficiencySensible = 0.7 HeatRecoveryType = HeatRecoveryTypes.Enthalpy - elif ( - object.key.upper() == "HeatExchanger:Desiccant:BalancedFlow" - ":PerformanceDataType1".upper() - ): + elif object.key.upper() == "HeatExchanger:Desiccant:BalancedFlow:PerformanceDataType1".upper(): # This is not an actual HeatExchanger, pass pass else: - msg = 'Heat exchanger object "{}" is not ' "implemented".format(object) + msg = f'Heat exchanger object "{object}" is not ' "implemented" raise NotImplementedError(msg) self.HeatRecoveryEfficiencyLatent = HeatRecoveryEfficiencyLatent @@ -1327,12 +1211,8 @@ def _get_recoverty_effectiveness(object, zone, zone_ep): .Value.mean() .unstack(level=-1) ) - HeatRecoveryEfficiencySensible = effectiveness.loc[ - object.Name.upper(), "Heat Exchanger Sensible Effectiveness" - ] - HeatRecoveryEfficiencyLatent = effectiveness.loc[ - object.Name.upper(), "Heat Exchanger Latent Effectiveness" - ] + HeatRecoveryEfficiencySensible = effectiveness.loc[object.Name.upper(), "Heat Exchanger Sensible Effectiveness"] + HeatRecoveryEfficiencyLatent = effectiveness.loc[object.Name.upper(), "Heat Exchanger Latent Effectiveness"] return HeatRecoveryEfficiencyLatent, HeatRecoveryEfficiencySensible @staticmethod @@ -1349,14 +1229,8 @@ def _get_design_limits(zone, zone_size, load_name, nolimit=False): if nolimit: return IdealSystemLimit.NoLimit, 100, 100 try: - cap = ( - zone_size[zone_size["LoadType"] == load_name]["UserDesLoad"].values[0] - / zone.area - ) - flow = ( - zone_size[zone_size["LoadType"] == load_name]["UserDesFlow"].values[0] - / zone.area - ) + cap = zone_size[zone_size["LoadType"] == load_name]["UserDesLoad"].values[0] / zone.area + flow = zone_size[zone_size["LoadType"] == load_name]["UserDesFlow"].values[0] / zone.area LimitType = IdealSystemLimit.LimitFlowRateAndCapacity except Exception: cap = 100 @@ -1427,56 +1301,32 @@ def combine(self, other, weights=None): weights = [self.area, other.area] new_attr = dict( - CoolingCoeffOfPerf=UmiBase.float_mean( - self, other, "CoolingCoeffOfPerf", weights - ), + CoolingCoeffOfPerf=UmiBase.float_mean(self, other, "CoolingCoeffOfPerf", weights), CoolingLimitType=max(self.CoolingLimitType, other.CoolingLimitType), CoolingSetpoint=UmiBase.float_mean(self, other, "CoolingSetpoint", weights), EconomizerType=max(self.EconomizerType, other.EconomizerType), - HeatRecoveryEfficiencyLatent=UmiBase.float_mean( - self, other, "HeatRecoveryEfficiencyLatent", weights - ), - HeatRecoveryEfficiencySensible=UmiBase.float_mean( - self, other, "HeatRecoveryEfficiencySensible", weights - ), + HeatRecoveryEfficiencyLatent=UmiBase.float_mean(self, other, "HeatRecoveryEfficiencyLatent", weights), + HeatRecoveryEfficiencySensible=UmiBase.float_mean(self, other, "HeatRecoveryEfficiencySensible", weights), HeatRecoveryType=max(self.HeatRecoveryType, other.HeatRecoveryType), - HeatingCoeffOfPerf=UmiBase.float_mean( - self, other, "HeatingCoeffOfPerf", weights - ), + HeatingCoeffOfPerf=UmiBase.float_mean(self, other, "HeatingCoeffOfPerf", weights), HeatingLimitType=max(self.HeatingLimitType, other.HeatingLimitType), HeatingSetpoint=UmiBase.float_mean(self, other, "HeatingSetpoint", weights), IsCoolingOn=any((self.IsCoolingOn, other.IsCoolingOn)), IsHeatingOn=any((self.IsHeatingOn, other.IsHeatingOn)), IsMechVentOn=any((self.IsMechVentOn, other.IsMechVentOn)), MaxCoolFlow=UmiBase.float_mean(self, other, "MaxCoolFlow", weights), - MaxCoolingCapacity=UmiBase.float_mean( - self, other, "MaxCoolingCapacity", weights - ), + MaxCoolingCapacity=UmiBase.float_mean(self, other, "MaxCoolingCapacity", weights), MaxHeatFlow=UmiBase.float_mean(self, other, "MaxHeatFlow", weights), - MaxHeatingCapacity=UmiBase.float_mean( - self, other, "MaxHeatingCapacity", weights - ), - MinFreshAirPerArea=UmiBase.float_mean( - self, other, "MinFreshAirPerArea", weights - ), - MinFreshAirPerPerson=UmiBase.float_mean( - self, other, "MinFreshAirPerPerson", weights - ), - HeatingSchedule=UmiSchedule.combine( - self.HeatingSchedule, other.HeatingSchedule, weights - ), - CoolingSchedule=UmiSchedule.combine( - self.CoolingSchedule, other.CoolingSchedule, weights - ), - MechVentSchedule=UmiSchedule.combine( - self.MechVentSchedule, other.MechVentSchedule, weights - ), + MaxHeatingCapacity=UmiBase.float_mean(self, other, "MaxHeatingCapacity", weights), + MinFreshAirPerArea=UmiBase.float_mean(self, other, "MinFreshAirPerArea", weights), + MinFreshAirPerPerson=UmiBase.float_mean(self, other, "MinFreshAirPerPerson", weights), + HeatingSchedule=UmiSchedule.combine(self.HeatingSchedule, other.HeatingSchedule, weights), + CoolingSchedule=UmiSchedule.combine(self.CoolingSchedule, other.CoolingSchedule, weights), + MechVentSchedule=UmiSchedule.combine(self.MechVentSchedule, other.MechVentSchedule, weights), area=1 if self.area + other.area == 2 else self.area + other.area, ) # create a new object with the previous attributes - new_obj = self.__class__( - **meta, **new_attr, allow_duplicates=self.allow_duplicates - ) + new_obj = self.__class__(**meta, **new_attr, allow_duplicates=self.allow_duplicates) new_obj.predecessors.update(self.predecessors + other.predecessors) return new_obj @@ -1601,10 +1451,8 @@ def __eq__(self, other): self.CoolingSetpoint == other.CoolingSetpoint, self.CoolingSchedule == other.CoolingSchedule, self.EconomizerType == other.EconomizerType, - self.HeatRecoveryEfficiencyLatent - == other.HeatRecoveryEfficiencyLatent, - self.HeatRecoveryEfficiencySensible - == other.HeatRecoveryEfficiencySensible, + self.HeatRecoveryEfficiencyLatent == other.HeatRecoveryEfficiencyLatent, + self.HeatRecoveryEfficiencySensible == other.HeatRecoveryEfficiencySensible, self.HeatRecoveryType == other.HeatRecoveryType, self.HeatingCoeffOfPerf == other.HeatingCoeffOfPerf, self.HeatingLimitType == other.HeatingLimitType, diff --git a/archetypal/template/constructions/base_construction.py b/archetypal/template/constructions/base_construction.py index 9b6c863f7..baa6c0ac3 100644 --- a/archetypal/template/constructions/base_construction.py +++ b/archetypal/template/constructions/base_construction.py @@ -165,15 +165,10 @@ def Layers(self) -> List[Union[MaterialLayer, GasLayer]]: def Layers(self, value): value = validators.iterable(value, minimum_length=1, maximum_length=10) assert all(isinstance(a, (MaterialLayer, GasLayer)) for a in value), ( - f"Input error for '{value}'. Layers must be a list of MaterialLayer " - f"or GasLayer objects only." + f"Input error for '{value}'. Layers must be a list of MaterialLayer " f"or GasLayer objects only." ) - assert isinstance( - value[0], MaterialLayer - ), "The outside layer cannot be a GasLayer" - assert isinstance( - value[-1], MaterialLayer - ), "The inside layer cannot be a GasLayer" + assert isinstance(value[0], MaterialLayer), "The outside layer cannot be a GasLayer" + assert isinstance(value[-1], MaterialLayer), "The inside layer cannot be a GasLayer" self._layers = value @property @@ -246,9 +241,7 @@ def in_h(self, t_kelvin=293.15, delta_t=15, height=1.0, angle=90, pressure=10132 _rad_h = 4 * 5.6697e-8 * self.inside_emissivity * (t_kelvin**3) return _conv_h + _rad_h - def in_h_c( - self, t_kelvin=293.15, delta_t=15, height=1.0, angle=90, pressure=101325 - ): + def in_h_c(self, t_kelvin=293.15, delta_t=15, height=1.0, angle=90, pressure=101325): """Get detailed indoor convective heat transfer coef. according to ISO 15099. This is used for window U-factor calculations and all of the @@ -298,9 +291,7 @@ def in_h_c( nusselt = 0.56 * ((_rayleigh_h * _sin_a) ** (1 / 4)) else: nusselt = 0.58 * (_rayleigh_h ** (1 / 5)) - _conv_h = nusselt * ( - gas_material.conductivity_at_temperature(t_kelvin, pressure) / height - ) + _conv_h = nusselt * (gas_material.conductivity_at_temperature(t_kelvin, pressure) / height) return _conv_h @property @@ -324,9 +315,7 @@ def __copy__(self): def __eq__(self, other): """Assert self is equivalent to other.""" - return isinstance(other, LayeredConstruction) and all( - [self.Layers == other.Layers] - ) + return isinstance(other, LayeredConstruction) and all([self.Layers == other.Layers]) @property def children(self): diff --git a/archetypal/template/constructions/internal_mass.py b/archetypal/template/constructions/internal_mass.py index c8061aa42..823f918f9 100644 --- a/archetypal/template/constructions/internal_mass.py +++ b/archetypal/template/constructions/internal_mass.py @@ -22,9 +22,7 @@ def surface_name(self): @surface_name.setter def surface_name(self, value): - self._surface_name = validators.string( - value, minimum_length=1, maximum_length=100 - ) + self._surface_name = validators.string(value, minimum_length=1, maximum_length=100) @property def construction(self) -> OpaqueConstruction: @@ -34,8 +32,7 @@ def construction(self) -> OpaqueConstruction: @construction.setter def construction(self, value): assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. construction must be of type " - f"{OpaqueConstruction}, not {type(value)}." + f"Input value error for {value}. construction must be of type " f"{OpaqueConstruction}, not {type(value)}." ) self._construction = value @@ -72,9 +69,7 @@ def from_zone(cls, zone_epbunch): # one. for int_obj in internal_mass_objs: if int_obj.key.upper() == "INTERNALMASS": - mass_opaque_constructions.append( - OpaqueConstruction.from_epbunch(int_obj, Category="Internal Mass") - ) + mass_opaque_constructions.append(OpaqueConstruction.from_epbunch(int_obj, Category="Internal Mass")) area += float(int_obj.Surface_Area) # If one or more constructions, combine them into one. diff --git a/archetypal/template/constructions/opaque_construction.py b/archetypal/template/constructions/opaque_construction.py index cbf4691f7..376651b95 100644 --- a/archetypal/template/constructions/opaque_construction.py +++ b/archetypal/template/constructions/opaque_construction.py @@ -78,7 +78,7 @@ def r_value(self, value): alpha = float(value) / self.r_value new_r_value = ( - ((alpha - 1) * sum([a.r_value for a in all_layers_except_insulation_layer])) + (alpha - 1) * sum([a.r_value for a in all_layers_except_insulation_layer]) ) + alpha * insulation_layer.r_value insulation_layer.r_value = new_r_value @@ -105,10 +105,7 @@ def equivalent_heat_capacity_per_unit_volume(self): https://doi.org/10.1016/j.applthermaleng.2003.10.015 """ return (1 / self.total_thickness) * sum( - [ - layer.Material.Density * layer.Material.SpecificHeat * layer.Thickness - for layer in self.Layers - ] + [layer.Material.Density * layer.Material.SpecificHeat * layer.Thickness for layer in self.Layers] ) @property @@ -156,9 +153,7 @@ def solar_reflectance_index(self): solar_absorptance = exposed_material.Material.SolarAbsorptance thermal_emissivity = exposed_material.Material.ThermalEmittance - x = (20.797 * solar_absorptance - 0.603 * thermal_emissivity) / ( - 9.5205 * thermal_emissivity + 12.0 - ) + x = (20.797 * solar_absorptance - 0.603 * thermal_emissivity) / (9.5205 * thermal_emissivity + 12.0) sri = 123.97 - 141.35 * x + 9.6555 * x * x return sri @@ -212,16 +207,11 @@ def combine(self, other, method="dominant_wall", allow_duplicates=False): oc = self.dominant_wall(other, weights) return oc else: - raise ValueError( - 'Possible choices are ["constant_ufactor", "dominant_wall"]' - ) + raise ValueError('Possible choices are ["constant_ufactor", "dominant_wall"]') # layers for the new OpaqueConstruction layers = [MaterialLayer(mat, t) for mat, t in zip(new_m, new_t)] new_obj = self.__class__(**meta, Layers=layers) - new_name = ( - "Combined Opaque Construction {{{}}} with u_value " - "of {:,.3f} W/m2k".format(uuid.uuid1(), new_obj.u_value) - ) + new_name = f"Combined Opaque Construction {{{uuid.uuid1()}}} with u_value " f"of {new_obj.u_value:,.3f} W/m2k" new_obj.rename(new_name) new_obj.predecessors.update(self.predecessors + other.predecessors) new_obj.area = sum(weights) @@ -234,12 +224,7 @@ def dominant_wall(self, other, weights): other: weights: """ - oc = [ - x - for _, x in sorted( - zip([2, 1], [self, other]), key=lambda pair: pair[0], reverse=True - ) - ][0] + oc = [x for _, x in sorted(zip([2, 1], [self, other]), key=lambda pair: pair[0], reverse=True)][0] return oc def _constant_ufactor(self, other, weights=None): @@ -266,23 +251,13 @@ def obj_func( expected_total_thickness, ): """Objective function for thickness evaluation.""" - u_value = 1 / sum( - [ - thickness / mat.Conductivity - for thickness, mat in zip(thicknesses, materials) - ] - ) + u_value = 1 / sum([thickness / mat.Conductivity for thickness, mat in zip(thicknesses, materials)]) # Specific_heat: (J/kg K) - h_calc = [ - mat.SpecificHeat for thickness, mat in zip(thicknesses, materials) - ] + h_calc = [mat.SpecificHeat for thickness, mat in zip(thicknesses, materials)] # (kg/m3) x (m) = (kg/m2) - mass_per_unit_area = [ - mat.Density * thickness - for thickness, mat in zip(thicknesses, materials) - ] + mass_per_unit_area = [mat.Density * thickness for thickness, mat in zip(thicknesses, materials)] specific_heat = np.average(h_calc, weights=mass_per_unit_area) return ( (u_value - expected_u_value) ** 2 @@ -299,15 +274,10 @@ def obj_func( ) # Get a set of all materials sorted by Material Density (descending order) - materials = list( - sorted( - set( - [layer.Material for layer in self.Layers] - + [layer.Material for layer in other.Layers] - ), - key=lambda x: x.Density, - reverse=True, - ) + materials = sorted( + set([layer.Material for layer in self.Layers] + [layer.Material for layer in other.Layers]), + key=lambda x: x.Density, + reverse=True, ) # Setup weights @@ -319,12 +289,8 @@ def obj_func( weights = [1, 1] # Calculate the desired equivalent specific heat - equi_spec_heat = np.average( - [self.specific_heat, other.specific_heat], weights=weights - ) - two_wall_thickness = np.average( - [self.total_thickness, other.total_thickness], weights=weights - ) + equi_spec_heat = np.average([self.specific_heat, other.specific_heat], weights=weights) + two_wall_thickness = np.average([self.total_thickness, other.total_thickness], weights=weights) x0 = np.ones(len(materials)) bnds = tuple([(0.003, None) for layer in materials]) res = minimize( @@ -426,10 +392,7 @@ def from_epbunch(cls, epbunch, **kwargs): "internalmass", "construction", "construction:internalsource", - ), ( - f"Expected ('Internalmass', 'Construction', 'construction:internalsource')." - f"Got '{epbunch.key}'." - ) + ), f"Expected ('Internalmass', 'Construction', 'construction:internalsource')." f"Got '{epbunch.key}'." name = epbunch.Name # treat internalmass and regular surfaces differently @@ -570,8 +533,5 @@ def to_epbunch(self, idf): key="CONSTRUCTION", Name=self.Name, Outside_Layer=self.Layers[0].to_epbunch(idf).Name, - **{ - f"Layer_{i+2}": layer.to_epbunch(idf).Name - for i, layer in enumerate(self.Layers[1:]) - }, + **{f"Layer_{i+2}": layer.to_epbunch(idf).Name for i, layer in enumerate(self.Layers[1:])}, ) diff --git a/archetypal/template/constructions/window_construction.py b/archetypal/template/constructions/window_construction.py index af934bb90..b30ea05ea 100644 --- a/archetypal/template/constructions/window_construction.py +++ b/archetypal/template/constructions/window_construction.py @@ -98,8 +98,7 @@ def Category(self): @Category.setter def Category(self, value): assert value.lower() in self._CATEGORIES, ( - f"Input error for value '{value}'. The " - f"Category must be one of ({self._CATEGORIES})" + f"Input error for value '{value}'. The " f"Category must be one of ({self._CATEGORIES})" ) self._category = value @@ -130,11 +129,7 @@ def r_factor(self): """ gap_count = self.gap_count if gap_count == 0: # single pane - return ( - self.Layers[0].r_value - + (1 / self.out_h_simple()) - + (1 / self.in_h_simple()) - ) + return self.Layers[0].r_value + (1 / self.out_h_simple()) + (1 / self.in_h_simple()) elif gap_count == 1: heat_transfers, temperature_profile = self.heat_balance("summer", 0) *_, Q_dot_i4 = heat_transfers @@ -227,9 +222,7 @@ def from_dict(cls, data, materials, **kwargs): _id = data.pop("$id") layers = [ MaterialLayer(materials[layer["Material"]["$ref"]], layer["Thickness"]) - if isinstance( - materials[layer["Material"]["$ref"]], (MaterialLayer, GlazingMaterial) - ) + if isinstance(materials[layer["Material"]["$ref"]], (MaterialLayer, GlazingMaterial)) else GasLayer(materials[layer["Material"]["$ref"]], layer["Thickness"]) for layer in data.pop("Layers") ] @@ -252,9 +245,7 @@ def from_epbunch(cls, Construction, **kwargs): """ layers = WindowConstruction._layers_from_construction(Construction, **kwargs) catdict = {0: "Single", 1: "Single", 2: "Double", 3: "Triple", 4: "Quadruple"} - category = catdict[ - len([lyr for lyr in layers if isinstance(lyr.Material, GlazingMaterial)]) - ] + category = catdict[len([lyr for lyr in layers if isinstance(lyr.Material, GlazingMaterial)])] return cls(Name=Construction.Name, Layers=layers, Category=category, **kwargs) @classmethod @@ -433,9 +424,7 @@ def temperature_profile( self.Layers[0].r_value, in_r_init, ] - in_delta_t = (in_r_init / sum(r_values)) * ( - outside_temperature - inside_temperature - ) + in_delta_t = (in_r_init / sum(r_values)) * (outside_temperature - inside_temperature) r_values[-1] = 1 / self.in_h( inside_temperature - (in_delta_t / 2) + 273.15, in_delta_t, @@ -443,32 +432,22 @@ def temperature_profile( angle, pressure, ) - temperatures = self._temperature_profile_from_r_values( - r_values, outside_temperature, inside_temperature - ) + temperatures = self._temperature_profile_from_r_values(r_values, outside_temperature, inside_temperature) return temperatures, r_values # multi-layered window construction guess = abs(inside_temperature - outside_temperature) / 2 guess = 1 if guess < 1 else guess # prevents zero division with gas conductance avg_guess = ((inside_temperature + outside_temperature) / 2) + 273.15 - r_values, emissivities = self._layered_r_value_initial( - gap_count, guess, avg_guess, wind_speed - ) + r_values, emissivities = self._layered_r_value_initial(gap_count, guess, avg_guess, wind_speed) r_last = 0 r_next = sum(r_values) while abs(r_next - r_last) > 0.001: # 0.001 is the r-value tolerance r_last = sum(r_values) - temperatures = self._temperature_profile_from_r_values( - r_values, outside_temperature, inside_temperature - ) - r_values = self._layered_r_value( - temperatures, r_values, emissivities, height, angle, pressure - ) + temperatures = self._temperature_profile_from_r_values(r_values, outside_temperature, inside_temperature) + r_values = self._layered_r_value(temperatures, r_values, emissivities, height, angle, pressure) r_next = sum(r_values) - temperatures = self._temperature_profile_from_r_values( - r_values, outside_temperature, inside_temperature - ) + temperatures = self._temperature_profile_from_r_values(r_values, outside_temperature, inside_temperature) return temperatures, r_values @staticmethod @@ -478,9 +457,7 @@ def _layers_from_construction(construction, **kwargs): for field in construction.fieldnames[2:]: # Loop through the layers from the outside layer towards the # indoor layers and get the material they are made of. - material = construction.get_referenced_object(field) or kwargs.get( - "material", None - ) + material = construction.get_referenced_object(field) or kwargs.get("material", None) if material: # Create the WindowMaterial:Glazing or the WindowMaterial:Gas # and append to the list of layers @@ -506,9 +483,7 @@ def _layers_from_construction(construction, **kwargs): elif material.key.upper() == "WindowMaterial:Gas".upper(): # Todo: Make gas name generic, like in UmiTemplateLibrary Editor - material_obj = GasMaterial( - Name=material.Gas_Type.upper(), Conductivity=0.02 - ) + material_obj = GasMaterial(Name=material.Gas_Type.upper(), Conductivity=0.02) material_layer = GasLayer(material_obj, material.Thickness) elif material.key.upper() == "WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM": glass_properties = calc_simple_glazing( @@ -516,13 +491,9 @@ def _layers_from_construction(construction, **kwargs): material.UFactor, material.Visible_Transmittance, ) - material_obj = GlazingMaterial( - Name=material.Name, **glass_properties - ) + material_obj = GlazingMaterial(Name=material.Name, **glass_properties) - material_layer = MaterialLayer( - material_obj, glass_properties["Thickness"] - ) + material_layer = MaterialLayer(material_obj, glass_properties["Thickness"]) layers.append(material_layer) break else: @@ -531,9 +502,7 @@ def _layers_from_construction(construction, **kwargs): layers.append(material_layer) return layers - def _layered_r_value_initial( - self, gap_count, delta_t_guess=15, avg_t_guess=273.15, wind_speed=6.7 - ): + def _layered_r_value_initial(self, gap_count, delta_t_guess=15, avg_t_guess=273.15, wind_speed=6.7): """Compute initial r-values of each layer within a layered construction.""" r_vals = [1 / self.out_h(wind_speed, avg_t_guess - delta_t_guess)] emiss = [] @@ -545,9 +514,7 @@ def _layered_r_value_initial( else: # gas layer e_front = self.Layers[i + 1].Material.IREmissivityFront e_back = self.Layers[i + 1].Material.IREmissivityBack - r_vals.append( - 1 / lyr.u_value(delta_t, e_back, e_front, t_kelvin=avg_t_guess) - ) + r_vals.append(1 / lyr.u_value(delta_t, e_back, e_front, t_kelvin=avg_t_guess)) emiss.append((e_back, e_front)) r_vals.append(1 / self.in_h_simple()) return r_vals, emiss @@ -592,9 +559,7 @@ def _solve_r_values(self, r_values, emissivities): r_next = sum(r_values) return r_values - def _temperature_profile_from_r_values( - self, r_values, outside_temperature=-18, inside_temperature=21 - ): + def _temperature_profile_from_r_values(self, r_values, outside_temperature=-18, inside_temperature=21): """Get a list of temperatures at each material boundary between R-values.""" r_factor = sum(r_values) delta_t = inside_temperature - outside_temperature @@ -658,15 +623,11 @@ def shgc(self, environmental_conditions="summer", global_radiation=783): conditions. """ # Q_dot_noSun - heat_transfers, temperature_profile = self.heat_balance( - environmental_conditions, 0 - ) + heat_transfers, temperature_profile = self.heat_balance(environmental_conditions, 0) *_, Q_dot_noSun = heat_transfers # Q_dot_Sun - heat_transfers, temperature_profile = self.heat_balance( - environmental_conditions, 783 - ) + heat_transfers, temperature_profile = self.heat_balance(environmental_conditions, 783) *_, Q_dot_i4 = heat_transfers Q_dot_sun = -Q_dot_i4 + self.solar_transmittance * global_radiation @@ -687,9 +648,7 @@ def heat_balance(self, environmental_conditions="summer", G_t=783): Returns: tuple: heat_flux, temperature_profile """ - assert ( - self.glazing_count == 2 - ), f"Expected a window with 2 glazing layers, not {self.glazing_count}." + assert self.glazing_count == 2, f"Expected a window with 2 glazing layers, not {self.glazing_count}." ENV_CONDITIONS = {"summer": [32, 24, 2.75], "winter": [-18, 21, 5.5]} ( outside_temperature, @@ -736,11 +695,7 @@ def heat_balance(self, environmental_conditions="summer", G_t=783): abs(T_3 - T_2), height, angle, (T_3 + T_2) / 2 + 273.15, pressure ) Q_dot_c_32 = h_c_32 * (T_3 - T_2) - Q_dot_r_32 = ( - sigma - * ((T_3 + 273.15) ** 4 - (T_2 + 273.15) ** 4) - / (1 / epsilon_2 + 1 / epsilon_3 - 1) - ) + Q_dot_r_32 = sigma * ((T_3 + 273.15) ** 4 - (T_2 + 273.15) ** 4) / (1 / epsilon_2 + 1 / epsilon_3 - 1) Q_dot_32 = Q_dot_c_32 + Q_dot_r_32 # "Heat balance at surface 3" @@ -749,9 +704,7 @@ def heat_balance(self, environmental_conditions="summer", G_t=783): # Q_dot_32 = Q_dot_abs_3 + Q_dot_43 # "Heat balance at surface 4" - h_c_i = self.in_h_c( - (T_4 + T_i) / 2 + 273.15, abs(T_i - T_4), height, angle, pressure - ) + h_c_i = self.in_h_c((T_4 + T_i) / 2 + 273.15, abs(T_i - T_4), height, angle, pressure) Q_dot_c_i4 = h_c_i * (T_i - T_4) Q_dot_r_i4 = epsilon_4 * sigma * ((T_i + 273.15) ** 4 - (T_4 + 273.15) ** 4) Q_dot_i4 = Q_dot_c_i4 + Q_dot_r_i4 @@ -768,6 +721,5 @@ def heat_balance(self, environmental_conditions="summer", G_t=783): def assert_almost_equal(self, temperatures_last, temperatures_next): return all( - abs(desired - actual) < 1.5 * 10 ** (-3) - for desired, actual in zip(temperatures_last, temperatures_next) + abs(desired - actual) < 1.5 * 10 ** (-3) for desired, actual in zip(temperatures_last, temperatures_next) ) diff --git a/archetypal/template/dhw.py b/archetypal/template/dhw.py index 613961eaa..8cbfe37ab 100644 --- a/archetypal/template/dhw.py +++ b/archetypal/template/dhw.py @@ -83,8 +83,7 @@ def IsOn(self): @IsOn.setter def IsOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsOn must " f"be a boolean, not a {type(value)}" ) self._is_on = value @@ -97,8 +96,7 @@ def WaterSchedule(self): def WaterSchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. WaterSchedule must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. WaterSchedule must " f"be an UmiSchedule, not a {type(value)}" ) self._water_schedule = value @@ -153,12 +151,8 @@ def to_dict(self): data_dict["FlowRatePerFloorArea"] = round(self.FlowRatePerFloorArea, sigfigs=4) data_dict["IsOn"] = self.IsOn data_dict["WaterSchedule"] = self.WaterSchedule.to_ref() - data_dict["WaterSupplyTemperature"] = round( - self.WaterSupplyTemperature, sigfigs=4 - ) - data_dict["WaterTemperatureInlet"] = round( - self.WaterTemperatureInlet, sigfigs=4 - ) + data_dict["WaterSupplyTemperature"] = round(self.WaterSupplyTemperature, sigfigs=4) + data_dict["WaterTemperatureInlet"] = round(self.WaterTemperatureInlet, sigfigs=4) data_dict["Category"] = self.Category data_dict["Comments"] = validators.string(self.Comments, allow_empty=True) data_dict["DataSource"] = self.DataSource @@ -181,9 +175,7 @@ def from_zone(cls, zone_epbunch, **kwargs): return None # First, find the WaterUse:Equipment assigned to this zone - dhw_objs = zone_epbunch.getreferingobjs( - iddgroups=["Water Systems"], fields=["Zone_Name"] - ) + dhw_objs = zone_epbunch.getreferingobjs(iddgroups=["Water Systems"], fields=["Zone_Name"]) if not dhw_objs: # Sometimes, some of the WaterUse:Equipment objects are not assigned to # any zone. Therefore, to account for their water usage, we can try to @@ -253,17 +245,13 @@ def _do_inlet_temp(cls, dhw_objs): if obj.Cold_Water_Supply_Temperature_Schedule_Name != "": # If a cold water supply schedule is provided, create the # schedule - epbunch = obj.theidf.schedules_dict[ - obj.Cold_Water_Supply_Temperature_Schedule_Name.upper() - ] + epbunch = obj.theidf.schedules_dict[obj.Cold_Water_Supply_Temperature_Schedule_Name.upper()] cold_schd_names = UmiSchedule.from_epbunch(epbunch) WaterTemperatureInlet.append(cold_schd_names.mean) else: # If blank, water temperatures are calculated by the # Site:WaterMainsTemperature object. - water_mains_temps = obj.theidf.idfobjects[ - "Site:WaterMainsTemperature".upper() - ] + water_mains_temps = obj.theidf.idfobjects["Site:WaterMainsTemperature".upper()] if water_mains_temps: # If a "Site:WaterMainsTemperature" object exists, # do water depending on calc method: @@ -271,23 +259,15 @@ def _do_inlet_temp(cls, dhw_objs): if water_mains_temp.Calculation_Method.lower() == "schedule": # From Schedule method mains_scd = UmiSchedule.from_epbunch( - obj.theidf.schedules_dict[ - water_mains_temp.Schedule_Name.upper() - ] + obj.theidf.schedules_dict[water_mains_temp.Schedule_Name.upper()] ) WaterTemperatureInlet.append(mains_scd.mean()) elif water_mains_temp.Calculation_Method.lower() == "correlation": # From Correlation method - mean_outair_temp = ( - water_mains_temp.Annual_Average_Outdoor_Air_Temperature - ) - max_dif = ( - water_mains_temp.Maximum_Difference_In_Monthly_Average_Outdoor_Air_Temperatures - ) + mean_outair_temp = water_mains_temp.Annual_Average_Outdoor_Air_Temperature + max_dif = water_mains_temp.Maximum_Difference_In_Monthly_Average_Outdoor_Air_Temperatures - WaterTemperatureInlet.append( - water_main_correlation(mean_outair_temp, max_dif).mean() - ) + WaterTemperatureInlet.append(water_main_correlation(mean_outair_temp, max_dif).mean()) else: # Else, there is no Site:WaterMainsTemperature object in # the input file, a default constant value of 10 C is @@ -398,15 +378,9 @@ def combine(self, other, **kwargs): ], ), IsOn=any((self.IsOn, other.IsOn)), - FlowRatePerFloorArea=self.float_mean( - other, "FlowRatePerFloorArea", [self.area, other.area] - ), - WaterSupplyTemperature=self.float_mean( - other, "WaterSupplyTemperature", [self.area, other.area] - ), - WaterTemperatureInlet=self.float_mean( - other, "WaterTemperatureInlet", [self.area, other.area] - ), + FlowRatePerFloorArea=self.float_mean(other, "FlowRatePerFloorArea", [self.area, other.area]), + WaterSupplyTemperature=self.float_mean(other, "WaterSupplyTemperature", [self.area, other.area]), + WaterTemperatureInlet=self.float_mean(other, "WaterTemperatureInlet", [self.area, other.area]), area=self.area + other.area, **meta, ) @@ -530,10 +504,7 @@ def __eq__(self, other): def __str__(self): """Return string representation.""" - return ( - f"{str(self.id)}: {str(self.Name)} " - f"PeakFlow {self.FlowRatePerFloorArea:.5f} m3/hr/m2" - ) + return f"{self.id!s}: {self.Name!s} " f"PeakFlow {self.FlowRatePerFloorArea:.5f} m3/hr/m2" def __copy__(self): """Create a copy of self.""" @@ -635,9 +606,7 @@ def water_main_correlation(t_out_avg, max_diff): days = np.arange(1, 365) def function(t_out_avg, day, max_diff): - return (t_out_avg + 6) + ratio * (max_diff / 2) * np.sin( - np.deg2rad(0.986 * (day - 15 - lag) - 90) - ) + return (t_out_avg + 6) + ratio * (max_diff / 2) * np.sin(np.deg2rad(0.986 * (day - 15 - lag) - 90)) mains = [Q_(function(t_out_avg_F.m, day, max_diff_F.m), "degF") for day in days] series = pd.Series([temp.to("degC").m for temp in mains]) diff --git a/archetypal/template/load.py b/archetypal/template/load.py index 3182dbba5..51243bad8 100644 --- a/archetypal/template/load.py +++ b/archetypal/template/load.py @@ -152,14 +152,12 @@ def DimmingType(self): def DimmingType(self, value): if checkers.is_string(value): assert DimmingTypes[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in DimmingTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in DimmingTypes)}" ) self._dimming_type = DimmingTypes[value] elif checkers.is_numeric(value): assert DimmingTypes(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in DimmingTypes)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in DimmingTypes)}" ) self._dimming_type = DimmingTypes(value) elif isinstance(value, DimmingTypes): @@ -176,8 +174,7 @@ def EquipmentAvailabilitySchedule(self): def EquipmentAvailabilitySchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input value error for '{value}'. Value must be of type '" - f"{UmiSchedule}', not {type(value)}" + f"Input value error for '{value}'. Value must be of type '" f"{UmiSchedule}', not {type(value)}" ) # set quantity on schedule as well value.quantity = self.EquipmentPowerDensity @@ -190,9 +187,7 @@ def EquipmentPowerDensity(self): @EquipmentPowerDensity.setter def EquipmentPowerDensity(self, value): - self._equipment_power_density = validators.float( - value, minimum=0, allow_empty=True - ) + self._equipment_power_density = validators.float(value, minimum=0, allow_empty=True) @property def IlluminanceTarget(self): @@ -210,9 +205,7 @@ def LightingPowerDensity(self): @LightingPowerDensity.setter def LightingPowerDensity(self, value): - self._lighting_power_density = validators.float( - value, minimum=0, allow_empty=True - ) + self._lighting_power_density = validators.float(value, minimum=0, allow_empty=True) @property def LightsAvailabilitySchedule(self) -> UmiSchedule: @@ -223,8 +216,7 @@ def LightsAvailabilitySchedule(self) -> UmiSchedule: def LightsAvailabilitySchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input value error for '{value}'. Value must be of type '" - f"{UmiSchedule}', not {type(value)}" + f"Input value error for '{value}'. Value must be of type '" f"{UmiSchedule}', not {type(value)}" ) # set quantity on schedule as well value.quantity = self.LightingPowerDensity @@ -239,8 +231,7 @@ def OccupancySchedule(self) -> UmiSchedule: def OccupancySchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input value error for '{value}'. Value must be if type '" - f"{UmiSchedule}', not {type(value)}" + f"Input value error for '{value}'. Value must be if type '" f"{UmiSchedule}', not {type(value)}" ) # set quantity on schedule as well value.quantity = self.PeopleDensity @@ -263,8 +254,7 @@ def IsEquipmentOn(self): @IsEquipmentOn.setter def IsEquipmentOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsEquipmentOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsEquipmentOn must " f"be a boolean, not a {type(value)}" ) self._is_equipment_on = value @@ -276,8 +266,7 @@ def IsLightingOn(self): @IsLightingOn.setter def IsLightingOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsLightingOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsLightingOn must " f"be a boolean, not a {type(value)}" ) self._is_lighting_on = value @@ -289,8 +278,7 @@ def IsPeopleOn(self): @IsPeopleOn.setter def IsPeopleOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsPeopleOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsPeopleOn must " f"be a boolean, not a {type(value)}" ) self._is_people_on = value @@ -351,12 +339,8 @@ def from_dict(cls, data, schedules, **kwargs): _id = data.pop("$id") return cls( id=_id, - EquipmentAvailabilitySchedule=schedules[ - data.pop("EquipmentAvailabilitySchedule")["$ref"] - ], - LightsAvailabilitySchedule=schedules[ - data.pop("LightsAvailabilitySchedule")["$ref"] - ], + EquipmentAvailabilitySchedule=schedules[data.pop("EquipmentAvailabilitySchedule")["$ref"]], + LightsAvailabilitySchedule=schedules[data.pop("LightsAvailabilitySchedule")["$ref"]], OccupancySchedule=schedules[data.pop("OccupancySchedule")["$ref"]], **data, **kwargs, @@ -396,10 +380,7 @@ def from_zone(cls, zone, zone_ep, **kwargs): def get_schedule(series): """Compute the schedule with quantity for nominal equipment series.""" sched = series["ScheduleIndex"] - sql_query = ( - "select t.ScheduleName, t.ScheduleType as M from " - "Schedules t where ScheduleIndex=?" - ) + sql_query = "select t.ScheduleName, t.ScheduleType as M from Schedules t where ScheduleIndex=?" sched_name, sched_type = c.execute(sql_query, (int(sched),)).fetchone() level_ = float(series["DesignLevel"]) if level_ > 0: @@ -427,12 +408,10 @@ def get_schedule(series): schedules, quantity=True, ) - EquipmentPowerDensity = ( - EquipmentAvailabilitySchedule.quantity / zone.area - ) + EquipmentPowerDensity = EquipmentAvailabilitySchedule.quantity / zone.area else: EquipmentAvailabilitySchedule = None - EquipmentPowerDensity = np.NaN + EquipmentPowerDensity = np.nan # Verifies if Lights in zone sql_query = "select t.* from NominalLighting t where ZoneIndex=?" @@ -453,17 +432,14 @@ def get_schedule(series): LightingPowerDensity = LightsAvailabilitySchedule.quantity / zone.area else: LightsAvailabilitySchedule = None - LightingPowerDensity = np.NaN + LightingPowerDensity = np.nan # Verifies if People in zone def get_schedule(series): """Compute schedule with quantity for nominal equipment series.""" sched = series["NumberOfPeopleScheduleIndex"] - sql_query = ( - "select t.ScheduleName, t.ScheduleType as M from " - "Schedules t where ScheduleIndex=?" - ) + sql_query = "select t.ScheduleName, t.ScheduleType as M from Schedules t where ScheduleIndex=?" sched_name, sched_type = c.execute(sql_query, (int(sched),)).fetchone() return UmiSchedule.from_epbunch( zone_ep.theidf.schedules_dict[sched_name.upper()], @@ -488,7 +464,7 @@ def get_schedule(series): PeopleDensity = OccupancySchedule.quantity / zone.area else: OccupancySchedule = None - PeopleDensity = np.NaN + PeopleDensity = np.nan name = zone.Name + "_ZoneLoad" z_load = cls( @@ -550,8 +526,7 @@ def combine(self, other, weights=None): getattr(other, str(zone_weight)), ] log( - 'using zone {} "{}" as weighting factor in "{}" ' - "combine.".format( + 'using zone {} "{}" as weighting factor in "{}" ' "combine.".format( zone_weight, " & ".join(list(map(str, map(int, weights)))), self.__class__.__name__, @@ -566,13 +541,9 @@ def combine(self, other, weights=None): weights=[self.area, other.area], quantity=True, ), - EquipmentPowerDensity=self.float_mean( - other, "EquipmentPowerDensity", weights - ), + EquipmentPowerDensity=self.float_mean(other, "EquipmentPowerDensity", weights), IlluminanceTarget=self.float_mean(other, "IlluminanceTarget", weights), - LightingPowerDensity=self.float_mean( - other, "LightingPowerDensity", weights - ), + LightingPowerDensity=self.float_mean(other, "LightingPowerDensity", weights), LightsAvailabilitySchedule=UmiSchedule.combine( self.LightsAvailabilitySchedule, other.LightsAvailabilitySchedule, @@ -591,9 +562,7 @@ def combine(self, other, weights=None): PeopleDensity=self.float_mean(other, "PeopleDensity", weights), ) - new_obj = self.__class__( - **meta, **new_attr, allow_duplicates=self.allow_duplicates - ) + new_obj = self.__class__(**meta, **new_attr, allow_duplicates=self.allow_duplicates) new_obj.area = self.area + other.area new_obj.volume = self.volume + other.volume new_obj.predecessors.update(self.predecessors + other.predecessors) @@ -661,30 +630,20 @@ def to_dict(self): data_dict["$id"] = str(self.id) data_dict["DimmingType"] = self.DimmingType.value - data_dict[ - "EquipmentAvailabilitySchedule" - ] = self.EquipmentAvailabilitySchedule.to_ref() + data_dict["EquipmentAvailabilitySchedule"] = self.EquipmentAvailabilitySchedule.to_ref() data_dict["EquipmentPowerDensity"] = ( - round(self.EquipmentPowerDensity, 3) - if not math.isnan(self.EquipmentPowerDensity) - else 0 + round(self.EquipmentPowerDensity, 3) if not math.isnan(self.EquipmentPowerDensity) else 0 ) data_dict["IlluminanceTarget"] = round(self.IlluminanceTarget, 3) data_dict["LightingPowerDensity"] = ( - round(self.LightingPowerDensity, 3) - if not math.isnan(self.LightingPowerDensity) - else 0 + round(self.LightingPowerDensity, 3) if not math.isnan(self.LightingPowerDensity) else 0 ) - data_dict[ - "LightsAvailabilitySchedule" - ] = self.LightsAvailabilitySchedule.to_ref() + data_dict["LightsAvailabilitySchedule"] = self.LightsAvailabilitySchedule.to_ref() data_dict["OccupancySchedule"] = self.OccupancySchedule.to_ref() data_dict["IsEquipmentOn"] = self.IsEquipmentOn data_dict["IsLightingOn"] = self.IsLightingOn data_dict["IsPeopleOn"] = self.IsPeopleOn - data_dict["PeopleDensity"] = ( - round(self.PeopleDensity, 3) if not math.isnan(self.PeopleDensity) else 0 - ) + data_dict["PeopleDensity"] = round(self.PeopleDensity, 3) if not math.isnan(self.PeopleDensity) else 0 data_dict["Category"] = self.Category data_dict["Comments"] = validators.string(self.Comments, allow_empty=True) data_dict["DataSource"] = self.DataSource @@ -772,9 +731,7 @@ def to_epbunch(self, idf, zone_name): "SCHEDULE:CONSTANT", Name="WorkEfficiency", Hourly_Value=0 ).Name, Clothing_Insulation_Calculation_Method="DynamicClothingModelASHRAE55", - Air_Velocity_Schedule_Name=idf.newidfobject( - "SCHEDULE:CONSTANT", Name="AirVelocity", Hourly_Value=0.2 - ).Name, + Air_Velocity_Schedule_Name=idf.newidfobject("SCHEDULE:CONSTANT", Name="AirVelocity", Hourly_Value=0.2).Name, ) lights = idf.newidfobject( key="LIGHTS", @@ -804,9 +761,7 @@ def to_epbunch(self, idf, zone_name): def __copy__(self): """Create a copy of self.""" - return self.__class__( - **self.mapping(validate=False), area=self.area, volume=self.volume - ) + return self.__class__(**self.mapping(validate=False), area=self.area, volume=self.volume) def __add__(self, other): """Combine self and other.""" @@ -856,17 +811,11 @@ def _resolve_dimming_type(zone, zone_ep): """ # First, retrieve the list of Daylighting objects for this zone. Uses the eppy # `getreferingobjs` method. - possible_ctrls = zone_ep.getreferingobjs( - iddgroups=["Daylighting"], fields=["Zone_Name"] - ) + possible_ctrls = zone_ep.getreferingobjs(iddgroups=["Daylighting"], fields=["Zone_Name"]) # Then, if there are controls if possible_ctrls: # Filter only the "Daylighting:Controls" - ctrls = [ - ctrl - for ctrl in possible_ctrls - if ctrl.key.upper() == "Daylighting:Controls".upper() - ] + ctrls = [ctrl for ctrl in possible_ctrls if ctrl.key.upper() == "Daylighting:Controls".upper()] ctrl_types = [ctrl["Lighting_Control_Type"] for ctrl in ctrls] # There should only be one control per zone. A set of controls should return 1. @@ -881,13 +830,12 @@ def _resolve_dimming_type(zone, zone_ep): return DimmingTypes[dimming_type] # Return first element else: raise ValueError( - "Could not resolve more than one dimming types for Zone {}. " - "Make sure there is only one".format(zone.Name) + f"Could not resolve more than one dimming types for Zone {zone.Name}. Make sure there is only one" ) else: # Else, there are no dimming controls => set to "Off". log( - "No dimming type found for zone {}. Setting as Off".format(zone.Name), + f"No dimming type found for zone {zone.Name}. Setting as Off", lg.DEBUG, ) return DimmingTypes.Off @@ -901,20 +849,12 @@ def _resolve_illuminance_target(zone, zone_ep): """ # First, retrieve the list of Daylighting objects for this zone. Uses the eppy # `getreferingobjs` method. - possible_ctrls = zone_ep.getreferingobjs( - iddgroups=["Daylighting"], fields=["Zone_Name"] - ) + possible_ctrls = zone_ep.getreferingobjs(iddgroups=["Daylighting"], fields=["Zone_Name"]) # Then, if there are controls if possible_ctrls: # Filter only the "Daylighting:Controls" - ctrls = [ - ctrl - for ctrl in possible_ctrls - if ctrl.key.upper() == "Daylighting:Controls".upper() - ] - ctrl_types = [ - ctrl["Illuminance_Setpoint_at_Reference_Point_1"] for ctrl in ctrls - ] + ctrls = [ctrl for ctrl in possible_ctrls if ctrl.key.upper() == "Daylighting:Controls".upper()] + ctrl_types = [ctrl["Illuminance_Setpoint_at_Reference_Point_1"] for ctrl in ctrls] # There should only be one control per zone. A set of controls should return 1. if len(set(ctrl_types)) == 1: @@ -923,14 +863,13 @@ def _resolve_illuminance_target(zone, zone_ep): return float(dimming_type) # Return first element else: raise ValueError( - "Could not resolve more than one illuminance targets for Zone {}. " - "Make sure there is only one".format(zone.Name) + f"Could not resolve more than one illuminance targets for Zone {zone.Name}. " + "Make sure there is only one" ) else: # Else, there are no dimming controls => set to "Off". log( - "No illuminance target found for zone {}. Setting to default 500 " - "lux".format(zone.Name), + f"No illuminance target found for zone {zone.Name}. Setting to default 500 lux", lg.DEBUG, ) return 500 diff --git a/archetypal/template/materials/gas_layer.py b/archetypal/template/materials/gas_layer.py index 929810a23..5e5641e4d 100644 --- a/archetypal/template/materials/gas_layer.py +++ b/archetypal/template/materials/gas_layer.py @@ -1,4 +1,5 @@ """archetypal GasLayer.""" + import collections import logging as lg import math @@ -9,7 +10,7 @@ from archetypal.utils import log -class GasLayer(object): +class GasLayer: """Class used to define one gas layer in a window construction assembly. This class has two attributes: @@ -41,8 +42,7 @@ def Material(self, value): from archetypal.template.materials import GasMaterial assert isinstance(value, GasMaterial), ( - f"Input value error for '{value}'. Value must be of type (GasMaterial), " - f"not {type(value)}." + f"Input value error for '{value}'. Value must be of type (GasMaterial), " f"not {type(value)}." ) self._material = value @@ -56,8 +56,7 @@ def Thickness(self, value): self._thickness = value if value < 0.003: log( - "Modeling layer thinner (less) than 0.003 m (not recommended) for " - f"MaterialLayer '{self}'", + "Modeling layer thinner (less) than 0.003 m (not recommended) for " f"MaterialLayer '{self}'", lg.WARNING, ) @@ -95,11 +94,7 @@ def u_value(self, value): @property def heat_capacity(self): """Get the material layer's heat capacity [J/(m2-k)].""" - return ( - self.Material.Density - * self.Material.specific_heat_at_temperature(273.15) - * self.Thickness - ) + return self.Material.Density * self.Material.specific_heat_at_temperature(273.15) * self.Thickness @property def specific_heat(self): @@ -132,9 +127,9 @@ def u_value( pressure: The average pressure of the gas cavity in Pa. Default is 101325 Pa for standard pressure at sea level. """ - return self.convective_conductance( - delta_t, height, t_kelvin, pressure - ) + self.radiative_conductance(emissivity_1, emissivity_2, t_kelvin) + return self.convective_conductance(delta_t, height, t_kelvin, pressure) + self.radiative_conductance( + emissivity_1, emissivity_2, t_kelvin + ) def u_value_at_angle( self, @@ -171,9 +166,7 @@ def u_value_at_angle( delta_t, height, angle, t_kelvin, pressure ) + self.radiative_conductance(emissivity_1, emissivity_2, t_kelvin) - def convective_conductance( - self, delta_t=15, height=1.0, t_kelvin=273.15, pressure=101325 - ): + def convective_conductance(self, delta_t=15, height=1.0, t_kelvin=273.15, pressure=101325): """Get convective conductance of the cavity in a vertical position. Args: @@ -190,9 +183,7 @@ def convective_conductance( self.Material.conductivity_at_temperature(t_kelvin) / self.Thickness ) - def convective_conductance_at_angle( - self, delta_t=15, height=1.0, angle=90, t_kelvin=273.15, pressure=101325 - ): + def convective_conductance_at_angle(self, delta_t=15, height=1.0, angle=90, t_kelvin=273.15, pressure=101325): """Get convective conductance of the cavity in an angle. Args: @@ -213,9 +204,7 @@ def convective_conductance_at_angle( self.Material.conductivity_at_temperature(t_kelvin) / self.Thickness ) - def radiative_conductance( - self, emissivity_1=0.84, emissivity_2=0.84, t_kelvin=273.15 - ): + def radiative_conductance(self, emissivity_1=0.84, emissivity_2=0.84, t_kelvin=273.15): """Get the radiative conductance of the cavity given emissivities on both sides. Args: @@ -226,15 +215,9 @@ def radiative_conductance( t_kelvin: The average temperature of the gas cavity in Kelvin. Default: 273.15 K (0C). """ - return ( - (4 * 5.6697e-8) - * (((1 / emissivity_1) + (1 / emissivity_2) - 1) ** -1) - * (t_kelvin ** 3) - ) + return (4 * 5.6697e-8) * (((1 / emissivity_1) + (1 / emissivity_2) - 1) ** -1) * (t_kelvin**3) - def nusselt_at_angle( - self, delta_t=15, height=1.0, angle=90, t_kelvin=273.15, pressure=101325 - ): + def nusselt_at_angle(self, delta_t=15, height=1.0, angle=90, t_kelvin=273.15, pressure=101325): """Get Nusselt number for a cavity at a given angle, temp diff and height. Args: @@ -260,13 +243,13 @@ def dot_x(x): cos_a = math.cos(math.radians(angle)) sin_a_18 = math.sin(1.8 * math.radians(angle)) term_1 = dot_x(1 - (1708 / (rayleigh * cos_a))) - term_2 = 1 - ((1708 * (sin_a_18 ** 1.6)) / (rayleigh * cos_a)) + term_2 = 1 - ((1708 * (sin_a_18**1.6)) / (rayleigh * cos_a)) term_3 = dot_x(((rayleigh * cos_a) / 5830) ** (1 / 3) - 1) return 1 + (1.44 * term_1 * term_2) + term_3 elif angle < 90: g = 0.5 / ((1 + ((rayleigh / 3160) ** 20.6)) ** 0.1) - n_u1 = (1 + (((0.0936 * (rayleigh ** 0.314)) / (1 + g)) ** 7)) ** (1 / 7) - n_u2 = (0.104 + (0.175 / (self.Thickness / height))) * (rayleigh ** 0.283) + n_u1 = (1 + (((0.0936 * (rayleigh**0.314)) / (1 + g)) ** 7)) ** (1 / 7) + n_u2 = (0.104 + (0.175 / (self.Thickness / height))) * (rayleigh**0.283) n_u_60 = max(n_u1, n_u2) n_u_90 = self.nusselt(delta_t, height, t_kelvin, pressure) return (n_u_60 + n_u_90) / 2 @@ -293,9 +276,9 @@ def nusselt(self, delta_t=15, height=1.0, t_kelvin=273.15, pressure=101325): if rayleigh > 50000: n_u_l_1 = 0.0673838 * (rayleigh ** (1 / 3)) elif rayleigh > 10000: - n_u_l_1 = 0.028154 * (rayleigh ** 0.4134) + n_u_l_1 = 0.028154 * (rayleigh**0.4134) else: - n_u_l_1 = 1 + 1.7596678e-10 * (rayleigh ** 2.2984755) + n_u_l_1 = 1 + 1.7596678e-10 * (rayleigh**2.2984755) n_u_l_2 = 0.242 * ((rayleigh * (self.Thickness / height)) ** 0.272) return max(n_u_l_1, n_u_l_2) @@ -312,7 +295,7 @@ def rayleigh(self, delta_t=15, t_kelvin=273.15, pressure=101325): """ _numerator = ( (self.Material.density_at_temperature(t_kelvin, pressure) ** 2) - * (self.Thickness ** 3) + * (self.Thickness**3) * 9.81 * self.Material.specific_heat_at_temperature(t_kelvin) * delta_t @@ -363,13 +346,11 @@ def __eq__(self, other): if not isinstance(other, GasLayer): return NotImplemented else: - return all( - [self.Thickness == other.Thickness, self.Material == other.Material] - ) + return all([self.Thickness == other.Thickness, self.Material == other.Material]) def __repr__(self): """Return a representation of self.""" - return "{} with thickness of {:,.3f} m".format(self.Material, self.Thickness) + return f"{self.Material} with thickness of {self.Thickness:,.3f} m" def __iter__(self): """Iterate over attributes. Yields tuple of (keys, value).""" diff --git a/archetypal/template/materials/gas_material.py b/archetypal/template/materials/gas_material.py index 7eb716311..ecbbda0df 100644 --- a/archetypal/template/materials/gas_material.py +++ b/archetypal/template/materials/gas_material.py @@ -21,9 +21,7 @@ class GasMaterial(MaterialBase): _GASTYPES = ("air", "argon", "krypton", "xenon", "sf6") - def __init__( - self, Name, Conductivity=None, Density=None, Category="Gases", **kwargs - ): + def __init__(self, Name, Conductivity=None, Density=None, Category="Gases", **kwargs): """Initialize object with parameters. Args: @@ -291,9 +289,7 @@ def __eq__(self, other): self.Density == other.Density, self.EmbodiedCarbon == other.EmbodiedCarbon, self.EmbodiedEnergy == other.EmbodiedEnergy, - np.array_equal( - self.SubstitutionRatePattern, other.SubstitutionRatePattern - ), + np.array_equal(self.SubstitutionRatePattern, other.SubstitutionRatePattern), self.SubstitutionTimestep == other.SubstitutionTimestep, self.TransportCarbon == other.TransportCarbon, self.TransportDistance == other.TransportDistance, diff --git a/archetypal/template/materials/glazing_material.py b/archetypal/template/materials/glazing_material.py index 28ba8eba9..7a71c611b 100644 --- a/archetypal/template/materials/glazing_material.py +++ b/archetypal/template/materials/glazing_material.py @@ -191,13 +191,11 @@ def VisibleTransmittance(self): @VisibleTransmittance.setter def VisibleTransmittance(self, value): assert value + self._visible_reflectance_front <= 1, ( - f"Sum of window transmittance and reflectance '" - f"{self._visible_reflectance_front}' is greater than 1." + f"Sum of window transmittance and reflectance '" f"{self._visible_reflectance_front}' is greater than 1." ) if self._visible_reflectance_back is not None: assert value + self._visible_reflectance_back <= 1, ( - f"Sum of window transmittance and reflectance '" - f"{self._visible_reflectance_back}' is greater than 1." + f"Sum of window transmittance and reflectance '" f"{self._visible_reflectance_back}' is greater than 1." ) self._visible_transmittance = validators.float(value, False, 0.0, 1.0) @@ -252,28 +250,19 @@ def combine(self, other, weights=None, allow_duplicates=False): meta = self._get_predecessors_meta(other) if not weights: - log( - 'using GlazingMaterial density as weighting factor in "{}" ' - "combine.".format(self.__class__.__name__) - ) + log(f'using GlazingMaterial density as weighting factor in "{self.__class__.__name__}" ' "combine.") weights = [self.Density, other.Density] # iterate over attributes and apply either float_mean or str_mean. new_attr = {} for attr, value in self.mapping().items(): if attr not in ["Comments", "DataSource"]: if isinstance(value, (int, float)) or isinstance(other, (int, float)): - new_attr[attr] = UmiBase.float_mean( - self, other, attr=attr, weights=weights - ) + new_attr[attr] = UmiBase.float_mean(self, other, attr=attr, weights=weights) elif isinstance(value, str) or isinstance(other, str): - new_attr[attr] = UmiBase._str_mean( - self, other, attr=attr, append=False - ) + new_attr[attr] = UmiBase._str_mean(self, other, attr=attr, append=False) elif isinstance(value, list) or isinstance(other, list): new_attr[attr] = getattr(self, attr) + getattr(other, attr) - elif isinstance(value, collections.UserList) or isinstance( - other, collections.UserList - ): + elif isinstance(value, collections.UserList) or isinstance(other, collections.UserList): pass else: raise NotImplementedError diff --git a/archetypal/template/materials/material_base.py b/archetypal/template/materials/material_base.py index 7574566c9..8cf0f587b 100644 --- a/archetypal/template/materials/material_base.py +++ b/archetypal/template/materials/material_base.py @@ -175,9 +175,7 @@ def __eq__(self, other): self.TransportCarbon == other.TransportCarbon, self.TransportDistance == other.TransportDistance, self.TransportEnergy == other.TransportEnergy, - np.array_equal( - self.SubstitutionRatePattern, other.SubstitutionRatePattern - ), + np.array_equal(self.SubstitutionRatePattern, other.SubstitutionRatePattern), self.Density == other.Density, ] ) diff --git a/archetypal/template/materials/material_layer.py b/archetypal/template/materials/material_layer.py index 5646c0bbf..c68851906 100644 --- a/archetypal/template/materials/material_layer.py +++ b/archetypal/template/materials/material_layer.py @@ -10,7 +10,7 @@ from archetypal.utils import log -class MaterialLayer(object): +class MaterialLayer: """Class used to define one layer in a construction assembly. This class has two attributes: @@ -58,8 +58,7 @@ def Thickness(self, value): self._thickness = value if value < 0.003: log( - "Modeling layer thinner (less) than 0.003 m (not recommended) for " - f"MaterialLayer '{self}'", + "Modeling layer thinner (less) than 0.003 m (not recommended) for " f"MaterialLayer '{self}'", lg.WARNING, ) @@ -152,7 +151,7 @@ def __eq__(self, other): def __repr__(self): """Return a representation of self.""" - return "{} with thickness of {:,.3f} m".format(self.Material, self.Thickness) + return f"{self.Material} with thickness of {self.Thickness:,.3f} m" def __iter__(self): """Iterate over attributes. Yields tuple of (keys, value).""" diff --git a/archetypal/template/materials/nomass_material.py b/archetypal/template/materials/nomass_material.py index ea4b9564b..85dc5b975 100644 --- a/archetypal/template/materials/nomass_material.py +++ b/archetypal/template/materials/nomass_material.py @@ -2,7 +2,6 @@ import collections -import numpy as np from sigfig import round from validator_collection import validators @@ -127,9 +126,7 @@ def ThermalEmittance(self): def ThermalEmittance(self, value): if value == "" or value is None: value = 0.9 - self._thermal_emittance = validators.float( - value, minimum=0, maximum=1, allow_empty=True - ) + self._thermal_emittance = validators.float(value, minimum=0, maximum=1, allow_empty=True) @property def VisibleAbsorptance(self): @@ -140,9 +137,7 @@ def VisibleAbsorptance(self): def VisibleAbsorptance(self, value): if value == "" or value is None or value is None: value = 0.7 - self._visible_absorptance = validators.float( - value, minimum=0, maximum=1, allow_empty=True - ) + self._visible_absorptance = validators.float(value, minimum=0, maximum=1, allow_empty=True) @property def MoistureDiffusionResistance(self): @@ -179,10 +174,7 @@ def combine(self, other, weights=None, allow_duplicates=False): return self if not weights: - log( - 'using OpaqueMaterial density as weighting factor in "{}" ' - "combine.".format(self.__class__.__name__) - ) + log(f'using OpaqueMaterial density as weighting factor in "{self.__class__.__name__}" ' "combine.") weights = [self.Density, other.Density] meta = self._get_predecessors_meta(other) @@ -196,18 +188,12 @@ def combine(self, other, weights=None, allow_duplicates=False): TransportCarbon=self.float_mean(other, "TransportCarbon", weights), TransportDistance=self.float_mean(other, "TransportDistance", weights), TransportEnergy=self.float_mean(other, "TransportEnergy", weights), - SubstitutionRatePattern=self.float_mean( - other, "SubstitutionRatePattern", weights=None - ), - SubstitutionTimestep=self.float_mean( - other, "SubstitutionTimestep", weights - ), + SubstitutionRatePattern=self.float_mean(other, "SubstitutionRatePattern", weights=None), + SubstitutionTimestep=self.float_mean(other, "SubstitutionTimestep", weights), Cost=self.float_mean(other, "Cost", weights), EmbodiedCarbon=self.float_mean(other, "EmbodiedCarbon", weights), EmbodiedEnergy=self.float_mean(other, "EmbodiedEnergy", weights), - MoistureDiffusionResistance=self.float_mean( - other, "MoistureDiffusionResistance", weights - ), + MoistureDiffusionResistance=self.float_mean(other, "MoistureDiffusionResistance", weights), ) new_obj.predecessors.update(self.predecessors + other.predecessors) return new_obj @@ -328,8 +314,7 @@ def from_epbunch(cls, epbunch, **kwargs): ) elif epbunch.key.upper() == "MATERIAL:AIRGAP": gas_prop = { - obj.Name.upper(): obj.mapping() - for obj in [GasMaterial(gas_name) for gas_name in GasMaterial._GASTYPES] + obj.Name.upper(): obj.mapping() for obj in [GasMaterial(gas_name) for gas_name in GasMaterial._GASTYPES] } for gasname, properties in gas_prop.items(): if gasname.lower() in epbunch.Name.lower(): @@ -340,9 +325,7 @@ def from_epbunch(cls, epbunch, **kwargs): **properties, ) else: - thickness = ( - gas_prop["AIR"]["Conductivity"] * epbunch.Thermal_Resistance - ) + thickness = gas_prop["AIR"]["Conductivity"] * epbunch.Thermal_Resistance return cls( Name=epbunch.Name, Thickness=thickness, @@ -350,9 +333,9 @@ def from_epbunch(cls, epbunch, **kwargs): ) else: raise NotImplementedError( - "Material '{}' of type '{}' is not yet " + f"Material '{epbunch.Name}' of type '{epbunch.key}' is not yet " "supported. Please contact package " - "authors".format(epbunch.Name, epbunch.key) + "authors" ) def to_epbunch(self, idf): @@ -382,12 +365,12 @@ def validate(self): is parsed. This breaks the UmiTemplate Editor, therefore we set a value on these attributes (if necessary) in this validation step. """ - if getattr(self, "SolarAbsorptance") == "": - setattr(self, "SolarAbsorptance", 0.7) - if getattr(self, "ThermalEmittance") == "": - setattr(self, "ThermalEmittance", 0.9) - if getattr(self, "VisibleAbsorptance") == "": - setattr(self, "VisibleAbsorptance", 0.7) + if self.SolarAbsorptance == "": + self.SolarAbsorptance = 0.7 + if self.ThermalEmittance == "": + self.ThermalEmittance = 0.9 + if self.VisibleAbsorptance == "": + self.VisibleAbsorptance = 0.7 return self def mapping(self, validate=False): diff --git a/archetypal/template/materials/opaque_material.py b/archetypal/template/materials/opaque_material.py index c05593d13..a4fe3f279 100644 --- a/archetypal/template/materials/opaque_material.py +++ b/archetypal/template/materials/opaque_material.py @@ -173,9 +173,7 @@ def SolarAbsorptance(self): def SolarAbsorptance(self, value): if value == "" or value is None: value = 0.7 - self._solar_absorptance = validators.float( - value, minimum=0, maximum=1, allow_empty=True - ) + self._solar_absorptance = validators.float(value, minimum=0, maximum=1, allow_empty=True) @property def SpecificHeat(self): @@ -196,9 +194,7 @@ def ThermalEmittance(self): def ThermalEmittance(self, value): if value == "" or value is None: value = 0.9 - self._thermal_emittance = validators.float( - value, minimum=0, maximum=1, allow_empty=True - ) + self._thermal_emittance = validators.float(value, minimum=0, maximum=1, allow_empty=True) @property def VisibleAbsorptance(self): @@ -209,9 +205,7 @@ def VisibleAbsorptance(self): def VisibleAbsorptance(self, value): if value == "" or value is None or value is None: value = 0.7 - self._visible_absorptance = validators.float( - value, minimum=0, maximum=1, allow_empty=True - ) + self._visible_absorptance = validators.float(value, minimum=0, maximum=1, allow_empty=True) @property def MoistureDiffusionResistance(self): @@ -269,10 +263,7 @@ def combine(self, other, weights=None, allow_duplicates=False): return self if not weights: - log( - 'using OpaqueMaterial density as weighting factor in "{}" ' - "combine.".format(self.__class__.__name__) - ) + log(f'using OpaqueMaterial density as weighting factor in "{self.__class__.__name__}" ' "combine.") weights = [self.Density, other.Density] meta = self._get_predecessors_meta(other) @@ -287,19 +278,13 @@ def combine(self, other, weights=None, allow_duplicates=False): TransportCarbon=self.float_mean(other, "TransportCarbon", weights), TransportDistance=self.float_mean(other, "TransportDistance", weights), TransportEnergy=self.float_mean(other, "TransportEnergy", weights), - SubstitutionRatePattern=self.float_mean( - other, "SubstitutionRatePattern", weights=None - ), - SubstitutionTimestep=self.float_mean( - other, "SubstitutionTimestep", weights - ), + SubstitutionRatePattern=self.float_mean(other, "SubstitutionRatePattern", weights=None), + SubstitutionTimestep=self.float_mean(other, "SubstitutionTimestep", weights), Cost=self.float_mean(other, "Cost", weights), Density=self.float_mean(other, "Density", weights), EmbodiedCarbon=self.float_mean(other, "EmbodiedCarbon", weights), EmbodiedEnergy=self.float_mean(other, "EmbodiedEnergy", weights), - MoistureDiffusionResistance=self.float_mean( - other, "MoistureDiffusionResistance", weights - ), + MoistureDiffusionResistance=self.float_mean(other, "MoistureDiffusionResistance", weights), ) new_obj.predecessors.update(self.predecessors + other.predecessors) return new_obj @@ -431,8 +416,7 @@ def from_epbunch(cls, epbunch, **kwargs): ) elif epbunch.key.upper() == "MATERIAL:AIRGAP": gas_prop = { - obj.Name.upper(): obj.mapping() - for obj in [GasMaterial(gas_name) for gas_name in GasMaterial._GASTYPES] + obj.Name.upper(): obj.mapping() for obj in [GasMaterial(gas_name) for gas_name in GasMaterial._GASTYPES] } for gasname, properties in gas_prop.items(): if gasname.lower() in epbunch.Name.lower(): @@ -446,9 +430,7 @@ def from_epbunch(cls, epbunch, **kwargs): **properties, ) else: - thickness = ( - gas_prop["AIR"]["Conductivity"] * epbunch.Thermal_Resistance - ) + thickness = gas_prop["AIR"]["Conductivity"] * epbunch.Thermal_Resistance properties.pop("Name") return cls( Name=epbunch.Name, @@ -459,9 +441,9 @@ def from_epbunch(cls, epbunch, **kwargs): ) else: raise NotImplementedError( - "Material '{}' of type '{}' is not yet " + f"Material '{epbunch.Name}' of type '{epbunch.key}' is not yet " "supported. Please contact package " - "authors".format(epbunch.Name, epbunch.key) + "authors" ) def to_epbunch(self, idf, thickness) -> EpBunch: @@ -526,12 +508,12 @@ def validate(self): is parsed. This breaks the UmiTemplate Editor, therefore we set a value on these attributes (if necessary) in this validation step. """ - if getattr(self, "SolarAbsorptance") == "": - setattr(self, "SolarAbsorptance", 0.7) - if getattr(self, "ThermalEmittance") == "": - setattr(self, "ThermalEmittance", 0.9) - if getattr(self, "VisibleAbsorptance") == "": - setattr(self, "VisibleAbsorptance", 0.7) + if self.SolarAbsorptance == "": + self.SolarAbsorptance = 0.7 + if self.ThermalEmittance == "": + self.ThermalEmittance = 0.9 + if self.VisibleAbsorptance == "": + self.VisibleAbsorptance = 0.7 return self def mapping(self, validate=False): diff --git a/archetypal/template/schedule.py b/archetypal/template/schedule.py index 23f8a6966..9d515b97b 100644 --- a/archetypal/template/schedule.py +++ b/archetypal/template/schedule.py @@ -57,9 +57,7 @@ def constant_schedule(cls, value=1, Name="AlwaysOn", Type="Fraction", **kwargs): **kwargs: """ value = validators.float(value) - return super(UmiSchedule, cls).constant_schedule( - value=value, Name=Name, Type=Type, **kwargs - ) + return super(UmiSchedule, cls).constant_schedule(value=value, Name=Name, Type=Type, **kwargs) @classmethod def random(cls, Name="AlwaysOn", Type="Fraction", **kwargs): @@ -85,9 +83,7 @@ def from_values(cls, Name, Values, Type="Fraction", **kwargs): Type: **kwargs: """ - return super(UmiSchedule, cls).from_values( - Name=Name, Values=Values, Type=Type, **kwargs - ) + return super(UmiSchedule, cls).from_values(Name=Name, Values=Values, Type=Type, **kwargs) def combine(self, other, weights=None, quantity=None): """Combine two UmiSchedule objects together. @@ -137,10 +133,7 @@ def combine(self, other, weights=None, quantity=None): return self if not weights: - log( - 'using 1 as weighting factor in "{}" ' - "combine.".format(self.__class__.__name__) - ) + log(f'using 1 as weighting factor in "{self.__class__.__name__}" ' "combine.") weights = [1, 1] elif isinstance(weights, str): # get the attribute from self and other @@ -150,16 +143,13 @@ def combine(self, other, weights=None, quantity=None): length = len(weights) if length != 2: raise ValueError( - "USing a list or tuple, the weights attribute must " - "have a length of 2. A length of {}".format(length) + "USing a list or tuple, the weights attribute must " f"have a length of 2. A length of {length}" ) elif isinstance(weights, dict): weights = [weights[self.Name], weights[other.Name]] if quantity is None: - new_values = np.average( - [self.all_values, other.all_values], axis=0, weights=weights - ) + new_values = np.average([self.all_values, other.all_values], axis=0, weights=weights) elif isinstance(quantity, dict): # Multiplying the schedule values by the quantity for both self and other # and then using a weighted average. Finally, new values are normalized. @@ -185,9 +175,7 @@ def combine(self, other, weights=None, quantity=None): # Multiplying the schedule values by the quantity for both self and other # and then using a weighted average. Finally, new values are normalized. self_quantity, other_quantity = quantity - new_values = ( - self.all_values * self_quantity + other.all_values * other_quantity - ) / sum(quantity) + new_values = (self.all_values * self_quantity + other.all_values * other_quantity) / sum(quantity) elif isinstance(quantity, bool): new_values = np.average( [self.all_values, other.all_values], @@ -204,12 +192,8 @@ def combine(self, other, weights=None, quantity=None): hasher = hashlib.md5() hasher.update(new_values) meta["Name"] = f"Combined_UmiSchedule_{hasher.hexdigest()}" - quantity = np.nansum( - [self.quantity or float("nan"), other.quantity or float("nan")] - ) - new_obj = UmiSchedule.from_values( - Values=new_values, Type="Fraction", quantity=quantity, **meta - ) + quantity = np.nansum([self.quantity or float("nan"), other.quantity or float("nan")]) + new_obj = UmiSchedule.from_values(Values=new_values, Type="Fraction", quantity=quantity, **meta) new_obj.predecessors.update(self.predecessors + other.predecessors) new_obj.weights = sum(weights) return new_obj @@ -217,12 +201,10 @@ def combine(self, other, weights=None, quantity=None): def develop(self): """Develop the UmiSchedule into a Year-Week-Day schedule structure.""" year, weeks, days = self.to_year_week_day() - lines = ["- {}".format(obj) for obj in self.predecessors] + lines = [f"- {obj}" for obj in self.predecessors] _from = "\n".join(lines) - year.Comments = ( - f"Year Week Day schedules created from: \n{_from}" + str(id(self)), - ) + year.Comments = (f"Year Week Day schedules created from: \n{_from}" + str(id(self)),) year.quantity = self.quantity return year @@ -273,13 +255,7 @@ def get_ref(self, ref): ref: """ return next( - iter( - [ - value - for value in UmiSchedule.CREATED_OBJECTS - if value.id == ref["$ref"] - ] - ), + iter([value for value in UmiSchedule.CREATED_OBJECTS if value.id == ref["$ref"]]), None, ) @@ -301,7 +277,7 @@ def __repr__(self): return ( name + ": " - + "mean daily min:{:.2f} mean:{:.2f} max:{:.2f} ".format(min, mean, max) + + f"mean daily min:{min:.2f} mean:{mean:.2f} max:{max:.2f} " + (f"quantity {self.quantity}" if self.quantity is not None else "") ) @@ -515,9 +491,7 @@ def __init__(self, Name, Values, Category="Day", **kwargs): Category (str): category identification (default: "Day"). **kwargs: Keywords passed to the :class:`UmiSchedule` constructor. """ - super(DaySchedule, self).__init__( - Category=Category, Name=Name, Values=Values, **kwargs - ) + super(DaySchedule, self).__init__(Category=Category, Name=Name, Values=Values, **kwargs) @property def all_values(self) -> np.ndarray: @@ -557,9 +531,7 @@ def from_epbunch(cls, epbunch, strict=False, **kwargs): epbunch=epbunch, schType=epbunch.key, Type=cls.get_schedule_type_limits_name(epbunch), - Values=_ScheduleParser.get_schedule_values( - epbunch, start_date, strict=strict - ), + Values=_ScheduleParser.get_schedule_values(epbunch, start_date, strict=strict), **kwargs, ) @@ -712,7 +684,7 @@ def to_epbunch(self, idf): **dict( Name=self.Name, Schedule_Type_Limits_Name=self.Type.to_epbunch(idf).Name, - **{"Hour_{}".format(i + 1): self.all_values[i] for i in range(24)}, + **{f"Hour_{i + 1}": self.all_values[i] for i in range(24)}, ), ) @@ -840,7 +812,7 @@ def get_days(cls, epbunch, **kwargs): "Sunday", ] for day in dayname: - day_ep = epbunch.get_referenced_object("{}_ScheduleDay_Name".format(day)) + day_ep = epbunch.get_referenced_object(f"{day}_ScheduleDay_Name") Days.append(DaySchedule.from_epbunch(day_ep, **kwargs)) return Days @@ -928,9 +900,7 @@ def __init__(self, Name, Type="Fraction", Parts=None, Category="Year", **kwargs) self.Parts = self._get_parts(self.epbunch) else: self.Parts = Parts - super(YearSchedule, self).__init__( - Name=Name, Type=Type, schType="Schedule:Year", Category=Category, **kwargs - ) + super(YearSchedule, self).__init__(Name=Name, Type=Type, schType="Schedule:Year", Category=Category, **kwargs) def __eq__(self, other): """Assert self is equivalent to other.""" @@ -950,16 +920,10 @@ def all_values(self) -> np.ndarray: index = pd.date_range(start=self.startDate, freq="1H", periods=8760) series = pd.Series(index=index, dtype="float") for part in self.Parts: - start = "{}-{}-{}".format(self.year, part.FromMonth, part.FromDay) - end = "{}-{}-{}".format(self.year, part.ToMonth, part.ToDay) + start = f"{self.year}-{part.FromMonth}-{part.FromDay}" + end = f"{self.year}-{part.ToMonth}-{part.ToDay}" # Get week values from all_values of Days - one_week = np.array( - [ - item - for sublist in part.Schedule.Days - for item in sublist.all_values - ] - ) + one_week = np.array([item for sublist in part.Schedule.Days for item in sublist.all_values]) all_weeks = np.resize(one_week, len(series.loc[start:end])) series.loc[start:end] = all_weeks @@ -977,8 +941,7 @@ def from_dict(cls, data, week_schedules, **kwargs): **kwargs: keywords passed to the constructor. """ Parts: List[YearSchedulePart] = [ - YearSchedulePart.from_dict(data, week_schedules) - for data in data.pop("Parts", None) + YearSchedulePart.from_dict(data, week_schedules) for data in data.pop("Parts", None) ] _id = data.pop("$id") ys = cls(Parts=Parts, id=_id, **data, **kwargs) @@ -1014,19 +977,15 @@ def to_epbunch(self, idf): Returns: EpBunch: The EpBunch object added to the idf model. """ - new_dict = dict( - Name=self.Name, Schedule_Type_Limits_Name=self.Type.to_epbunch(idf).Name - ) + new_dict = dict(Name=self.Name, Schedule_Type_Limits_Name=self.Type.to_epbunch(idf).Name) for i, part in enumerate(self.Parts): new_dict.update( { - "ScheduleWeek_Name_{}".format(i + 1): part.Schedule.to_epbunch( - idf - ).Name, - "Start_Month_{}".format(i + 1): part.FromMonth, - "Start_Day_{}".format(i + 1): part.FromDay, - "End_Month_{}".format(i + 1): part.ToMonth, - "End_Day_{}".format(i + 1): part.ToDay, + f"ScheduleWeek_Name_{i + 1}": part.Schedule.to_epbunch(idf).Name, + f"Start_Month_{i + 1}": part.FromMonth, + f"Start_Day_{i + 1}": part.FromDay, + f"End_Month_{i + 1}": part.ToMonth, + f"End_Day_{i + 1}": part.ToDay, } ) @@ -1054,12 +1013,12 @@ def mapping(self, validate=False): def _get_parts(self, epbunch): parts = [] for i in range(int(len(epbunch.fieldvalues[3:]) / 5)): - week_day_schedule_name = epbunch["ScheduleWeek_Name_{}".format(i + 1)] + week_day_schedule_name = epbunch[f"ScheduleWeek_Name_{i + 1}"] - FromMonth = epbunch["Start_Month_{}".format(i + 1)] - ToMonth = epbunch["End_Month_{}".format(i + 1)] - FromDay = epbunch["Start_Day_{}".format(i + 1)] - ToDay = epbunch["End_Day_{}".format(i + 1)] + FromMonth = epbunch[f"Start_Month_{i + 1}"] + ToMonth = epbunch[f"End_Month_{i + 1}"] + FromDay = epbunch[f"Start_Day_{i + 1}"] + ToDay = epbunch[f"End_Day_{i + 1}"] parts.append( YearSchedulePart( FromDay, @@ -1067,12 +1026,9 @@ def _get_parts(self, epbunch): ToDay, ToMonth, next( - ( - x - for x in self._CREATED_OBJECTS - if x.Name == week_day_schedule_name - and type(x).__name__ == "WeekSchedule" - ) + x + for x in self._CREATED_OBJECTS + if x.Name == week_day_schedule_name and type(x).__name__ == "WeekSchedule" ), ) ) diff --git a/archetypal/template/structure.py b/archetypal/template/structure.py index 7818e703b..988e7666a 100644 --- a/archetypal/template/structure.py +++ b/archetypal/template/structure.py @@ -8,7 +8,7 @@ from archetypal.template.materials.opaque_material import OpaqueMaterial -class MassRatio(object): +class MassRatio: """Handles the properties of the mass ratio for building template structure.""" __slots__ = ("_high_load_ratio", "_material", "_normal_ratio") @@ -41,9 +41,7 @@ def Material(self): @Material.setter def Material(self, value): - assert isinstance( - value, OpaqueMaterial - ), f"Material must be of type OpaqueMaterial, not {type(value)}" + assert isinstance(value, OpaqueMaterial), f"Material must be of type OpaqueMaterial, not {type(value)}" self._material = value @property diff --git a/archetypal/template/umi_base.py b/archetypal/template/umi_base.py index 1ef934e02..b50d54a9b 100644 --- a/archetypal/template/umi_base.py +++ b/archetypal/template/umi_base.py @@ -2,7 +2,6 @@ import itertools import math -import re from collections.abc import Hashable, MutableSet import numpy as np @@ -24,7 +23,7 @@ def _resolve_combined_names(predecessors): return "Combined_%s_%s" % ( class_, - str(hash((pre.Name for pre in predecessors))).strip("-"), + str(hash(pre.Name for pre in predecessors)).strip("-"), ) @@ -42,7 +41,7 @@ def _shorten_name(long_name): return long_name -class UmiBase(object): +class UmiBase: """Base class for template objects.""" __slots__ = ( @@ -200,25 +199,14 @@ def combine_meta(self, predecessors): return { "Name": _resolve_combined_names(predecessors), "Comments": ( - "Object composed of a combination of these " - "objects:\n{}".format( + "Object composed of a combination of these objects:\n{}".format( "\n- ".join(set(obj.Name for obj in predecessors)) ) ), - "Category": ", ".join( - set( - itertools.chain(*[obj.Category.split(", ") for obj in predecessors]) - ) - ), + "Category": ", ".join(set(itertools.chain(*[obj.Category.split(", ") for obj in predecessors]))), "DataSource": ", ".join( set( - itertools.chain( - *[ - obj.DataSource.split(", ") - for obj in predecessors - if obj.DataSource is not None - ] - ) + itertools.chain(*[obj.DataSource.split(", ") for obj in predecessors if obj.DataSource is not None]) ) ), } @@ -236,7 +224,7 @@ def rename(self, name): def to_dict(self): """Return UmiBase dictionary representation.""" - return {"$id": "{}".format(self.id), "Name": "{}".format(self.Name)} + return {"$id": f"{self.id}", "Name": f"{self.Name}"} def get_ref(self, ref): pass @@ -291,9 +279,7 @@ def float_mean(self, other, attr, weights=None): if not np.array(weights).any(): weights = [1, 1] - if not isinstance(getattr(self, attr), list) and not isinstance( - getattr(other, attr), list - ): + if not isinstance(getattr(self, attr), list) and not isinstance(getattr(other, attr), list): if math.isnan(getattr(self, attr)): return getattr(other, attr) elif math.isnan(getattr(other, attr)): @@ -301,11 +287,7 @@ def float_mean(self, other, attr, weights=None): elif math.isnan(getattr(self, attr)) and math.isnan(getattr(other, attr)): raise ValueError("Both values for self and other are Not A Number.") else: - return float( - np.average( - [getattr(self, attr), getattr(other, attr)], weights=weights - ) - ) + return float(np.average([getattr(self, attr), getattr(other, attr)], weights=weights)) elif getattr(self, attr) is None and getattr(other, attr) is None: return None else: @@ -407,12 +389,7 @@ def get_unique(self): obj = next( iter( sorted( - ( - x - for x in self._CREATED_OBJECTS - if x == self - and x.Name == self.Name - ), + (x for x in self._CREATED_OBJECTS if x == self and x.Name == self.Name), key=lambda x: x.unit_number, ) ), @@ -424,11 +401,7 @@ def get_unique(self): obj = next( iter( sorted( - ( - x - for x in self._CREATED_OBJECTS - if x == self - ), + (x for x in self._CREATED_OBJECTS if x == self), key=lambda x: x.unit_number, ) ), @@ -493,9 +466,7 @@ def Name(self): @property def comments(self): """Get object comments.""" - return "Object composed of a combination of these objects:\n{}".format( - set(obj.Name for obj in self) - ) + return f"Object composed of a combination of these objects:\n{set(obj.Name for obj in self)}" class UniqueName(str): @@ -524,6 +495,6 @@ def create_unique(cls, name): else: current_count = cls.existing[name] new_count = current_count + 1 - new_name = f"{name}_{str(new_count)}" + new_name = f"{name}_{new_count!s}" cls.existing[name] = new_count return new_name diff --git a/archetypal/template/ventilation.py b/archetypal/template/ventilation.py index 636075fc3..fd91ad143 100644 --- a/archetypal/template/ventilation.py +++ b/archetypal/template/ventilation.py @@ -62,6 +62,7 @@ class VentilationSetting(UmiBase): .. image:: ../images/template/zoneinfo-ventilation.png """ + _CREATED_OBJECTS = [] __slots__ = ( @@ -215,8 +216,7 @@ def NatVentSchedule(self): def NatVentSchedule(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. NatVentSchedule must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. NatVentSchedule must " f"be an UmiSchedule, not a {type(value)}" ) self._nat_ventilation_schedule = value @@ -257,8 +257,7 @@ def IsInfiltrationOn(self): @IsInfiltrationOn.setter def IsInfiltrationOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsInfiltrationOn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. IsInfiltrationOn must " f"be an boolean, not a {type(value)}" ) self._is_infiltration_on = value @@ -270,8 +269,7 @@ def IsBuoyancyOn(self): @IsBuoyancyOn.setter def IsBuoyancyOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsBuoyancyOn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. IsBuoyancyOn must " f"be an boolean, not a {type(value)}" ) self._is_buoyancy_on = value @@ -283,8 +281,7 @@ def IsNatVentOn(self): @IsNatVentOn.setter def IsNatVentOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsNatVentOn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. IsNatVentOn must " f"be an boolean, not a {type(value)}" ) self._is_nat_vent_on = value @@ -296,16 +293,12 @@ def IsScheduledVentilationOn(self): @IsScheduledVentilationOn.setter def IsScheduledVentilationOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsScheduledVentilationOn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. IsScheduledVentilationOn must " f"be an boolean, not a {type(value)}" ) if value: - assert ( - self.ScheduledVentilationAch >= 0 - and self.ScheduledVentilationSchedule is not None - ), ( - f"IsScheduledVentilationOn cannot be 'True' if ScheduledVentilationAch " - f"is 0 or if ScheduledVentilationSchedule is None." + assert self.ScheduledVentilationAch >= 0 and self.ScheduledVentilationSchedule is not None, ( + "IsScheduledVentilationOn cannot be 'True' if ScheduledVentilationAch " + "is 0 or if ScheduledVentilationSchedule is None." ) self._is_scheduled_ventilation_on = value @@ -317,8 +310,7 @@ def IsWindOn(self): @IsWindOn.setter def IsWindOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsWindOn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. IsWindOn must " f"be an boolean, not a {type(value)}" ) self._is_wind_on = value @@ -329,9 +321,7 @@ def NatVentMaxOutdoorAirTemp(self): @NatVentMaxOutdoorAirTemp.setter def NatVentMaxOutdoorAirTemp(self, value): - self._natural_ventilation_max_outdoor_air_temp = validators.float( - value, minimum=-100, maximum=100 - ) + self._natural_ventilation_max_outdoor_air_temp = validators.float(value, minimum=-100, maximum=100) @property def NatVentMaxRelHumidity(self): @@ -340,9 +330,7 @@ def NatVentMaxRelHumidity(self): @NatVentMaxRelHumidity.setter def NatVentMaxRelHumidity(self, value): - self._natural_ventilation_max_relative_humidity = validators.float( - value, minimum=0, maximum=100 - ) + self._natural_ventilation_max_relative_humidity = validators.float(value, minimum=0, maximum=100) @property def NatVentMinOutdoorAirTemp(self): @@ -351,9 +339,7 @@ def NatVentMinOutdoorAirTemp(self): @NatVentMinOutdoorAirTemp.setter def NatVentMinOutdoorAirTemp(self, value): - self._natural_ventilation_min_outdoor_air_temp = validators.float( - value, minimum=-100, maximum=100 - ) + self._natural_ventilation_min_outdoor_air_temp = validators.float(value, minimum=-100, maximum=100) @property def NatVentZoneTempSetpoint(self): @@ -386,9 +372,7 @@ def ScheduledVentilationSetpoint(self): @ScheduledVentilationSetpoint.setter def ScheduledVentilationSetpoint(self, value): - self._scheduled_ventilation_setpoint = validators.float( - value, minimum=-100, maximum=100 - ) + self._scheduled_ventilation_setpoint = validators.float(value, minimum=-100, maximum=100) @property def VentilationType(self): @@ -403,14 +387,12 @@ def VentilationType(self): def VentilationType(self, value): if checkers.is_string(value): assert VentilationType[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in VentilationType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in VentilationType)}" ) self._ventilation_type = VentilationType[value] elif checkers.is_numeric(value): assert VentilationType(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in VentilationType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in VentilationType)}" ) self._ventilation_type = VentilationType(value) elif isinstance(value, VentilationType): @@ -424,8 +406,7 @@ def Afn(self): @Afn.setter def Afn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. Afn must " - f"be an boolean, not a {type(value)}" + f"Input error with value {value}. Afn must " f"be an boolean, not a {type(value)}" ) self._afn = value @@ -515,12 +496,8 @@ def to_dict(self): data_dict["NatVentSchedule"] = self.NatVentSchedule.to_ref() data_dict["NatVentZoneTempSetpoint"] = round(self.NatVentZoneTempSetpoint, 3) data_dict["ScheduledVentilationAch"] = round(self.ScheduledVentilationAch, 3) - data_dict[ - "ScheduledVentilationSchedule" - ] = self.ScheduledVentilationSchedule.to_ref() - data_dict["ScheduledVentilationSetpoint"] = round( - self.ScheduledVentilationSetpoint, 3 - ) + data_dict["ScheduledVentilationSchedule"] = self.ScheduledVentilationSchedule.to_ref() + data_dict["ScheduledVentilationSetpoint"] = round(self.ScheduledVentilationSetpoint, 3) data_dict["IsWindOn"] = self.IsWindOn data_dict["Category"] = self.Category data_dict["Comments"] = validators.string(self.Comments, allow_empty=True) @@ -610,9 +587,7 @@ def combine(self, other, **kwargs): return None elif self == other: area = 1 if self.area + other.area == 2 else self.area + other.area - volume = ( - 1 if self.volume + other.volume == 2 else self.volume + other.volume - ) + volume = 1 if self.volume + other.volume == 2 else self.volume + other.volume new_obj = self.duplicate() new_obj.area = area new_obj.volume = volume @@ -633,9 +608,7 @@ def combine(self, other, **kwargs): # create a new object with the combined attributes new_obj = self.__class__( - NatVentSchedule=UmiSchedule.combine( - self.NatVentSchedule, other.NatVentSchedule, [self.area, other.area] - ), + NatVentSchedule=UmiSchedule.combine(self.NatVentSchedule, other.NatVentSchedule, [self.area, other.area]), ScheduledVentilationSchedule=UmiSchedule.combine( self.ScheduledVentilationSchedule, other.ScheduledVentilationSchedule, @@ -643,31 +616,17 @@ def combine(self, other, **kwargs): quantity=True, ), Afn=any((self.Afn, other.Afn)), - Infiltration=self.float_mean( - other, "Infiltration", [self.area, other.area] - ), + Infiltration=self.float_mean(other, "Infiltration", [self.area, other.area]), IsBuoyancyOn=any((self.IsBuoyancyOn, other.IsBuoyancyOn)), IsInfiltrationOn=any((self.IsInfiltrationOn, other.IsInfiltrationOn)), IsNatVentOn=any((self.IsNatVentOn, other.IsNatVentOn)), - IsScheduledVentilationOn=any( - (self.IsScheduledVentilationOn, other.IsScheduledVentilationOn) - ), + IsScheduledVentilationOn=any((self.IsScheduledVentilationOn, other.IsScheduledVentilationOn)), IsWindOn=any((self.IsWindOn, other.IsWindOn)), - NatVentMaxOutdoorAirTemp=self.float_mean( - other, "NatVentMaxOutdoorAirTemp", [self.area, other.area] - ), - NatVentMaxRelHumidity=self.float_mean( - other, "NatVentMaxRelHumidity", [self.area, other.area] - ), - NatVentMinOutdoorAirTemp=self.float_mean( - other, "NatVentMinOutdoorAirTemp", [self.area, other.area] - ), - NatVentZoneTempSetpoint=self.float_mean( - other, "NatVentZoneTempSetpoint", [self.area, other.area] - ), - ScheduledVentilationAch=self.float_mean( - other, "ScheduledVentilationAch", [self.volume, other.volume] - ), + NatVentMaxOutdoorAirTemp=self.float_mean(other, "NatVentMaxOutdoorAirTemp", [self.area, other.area]), + NatVentMaxRelHumidity=self.float_mean(other, "NatVentMaxRelHumidity", [self.area, other.area]), + NatVentMinOutdoorAirTemp=self.float_mean(other, "NatVentMinOutdoorAirTemp", [self.area, other.area]), + NatVentZoneTempSetpoint=self.float_mean(other, "NatVentZoneTempSetpoint", [self.area, other.area]), + ScheduledVentilationAch=self.float_mean(other, "ScheduledVentilationAch", [self.volume, other.volume]), ScheduledVentilationSetpoint=self.float_mean( other, "ScheduledVentilationSetpoint", [self.area, other.area] ), @@ -683,9 +642,7 @@ def combine(self, other, **kwargs): def validate(self): """Validate object and fill in missing values.""" if self.NatVentSchedule is None: - self.NatVentSchedule = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff", allow_duplicates=True - ) + self.NatVentSchedule = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff", allow_duplicates=True) if self.ScheduledVentilationSchedule is None: self.ScheduledVentilationSchedule = UmiSchedule.constant_schedule( value=0, Name="AlwaysOff", allow_duplicates=True @@ -765,9 +722,7 @@ def __eq__(self, other): def __copy__(self): """Create a copy of self.""" - return self.__class__( - **self.mapping(validate=False), area=self.area, volume=self.volume - ) + return self.__class__(**self.mapping(validate=False), area=self.area, volume=self.volume) def to_epbunch(self, idf, zone_name, opening_area=0.0): """Convert self to the EpBunches given an idf model, a zone name. @@ -856,9 +811,7 @@ def to_epbunch(self, idf, zone_name, opening_area=0.0): key="ZONEINFILTRATION:DESIGNFLOWRATE", Name=f"{zone_name} Infiltration", Zone_or_ZoneList_Name=zone_name, - Schedule_Name=idf.newidfobject( - key="SCHEDULE:CONSTANT", Name="AlwaysOn", Hourly_Value=1 - ).Name, + Schedule_Name=idf.newidfobject(key="SCHEDULE:CONSTANT", Name="AlwaysOn", Hourly_Value=1).Name, Design_Flow_Rate_Calculation_Method="AirChanges/Hour", Air_Changes_per_Hour=self.Infiltration, Constant_Term_Coefficient=1, @@ -1021,9 +974,7 @@ def do_natural_ventilation(index, nat_df, zone, zone_ep): NatVentZoneTempSetpoint = 18 # Is Wind ON - if not zone_ep.theidf.idfobjects[ - "ZoneVentilation:WindandStackOpenArea".upper() - ].list1: + if not zone_ep.theidf.idfobjects["ZoneVentilation:WindandStackOpenArea".upper()].list1: IsWindOn = False IsBuoyancyOn = False else: @@ -1069,9 +1020,7 @@ def do_scheduled_ventilation(index, scd_df, zone, zone_ep): ScheduledVentilationAch = 0 ScheduledVentilationSetpoint = 18 else: - ScheduledVentilationSchedule = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff", allow_duplicates=True - ) + ScheduledVentilationSchedule = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff", allow_duplicates=True) IsScheduledVentilationOn = False ScheduledVentilationAch = 0 ScheduledVentilationSetpoint = 18 @@ -1091,9 +1040,7 @@ def nominal_nat_ventilation(df): nom_natvent = ( _nom_vent.reset_index() .set_index(["Archetype", "Zone Name"]) - .loc[ - lambda e: e["Fan Type {Exhaust;Intake;Natural}"].str.contains("Natural"), : - ] + .loc[lambda e: e["Fan Type {Exhaust;Intake;Natural}"].str.contains("Natural"), :] if not _nom_vent.empty else None ) @@ -1108,9 +1055,7 @@ def nominal_mech_ventilation(df): nom_vent = ( _nom_vent.reset_index() .set_index(["Archetype", "Zone Name"]) - .loc[ - lambda e: ~e["Fan Type {Exhaust;Intake;Natural}"].str.contains("Natural"), : - ] + .loc[lambda e: ~e["Fan Type {Exhaust;Intake;Natural}"].str.contains("Natural"), :] if not _nom_vent.empty else None ) @@ -1128,13 +1073,10 @@ def nominal_infiltration(df): df = get_from_tabulardata(df) report_name = "Initialization Summary" table_name = "ZoneInfiltration Airflow Stats Nominal" - tbstr = df[ - (df.ReportName == report_name) & (df.TableName == table_name) - ].reset_index() + tbstr = df[(df.ReportName == report_name) & (df.TableName == table_name)].reset_index() if tbstr.empty: log( - "Table {} does not exist. " - "Returning an empty DataFrame".format(table_name), + f"Table {table_name} does not exist. Returning an empty DataFrame", lg.WARNING, ) return pd.DataFrame([]) @@ -1147,9 +1089,7 @@ def nominal_infiltration(df): ) tbpiv.replace({"N/A": np.nan}, inplace=True) return ( - tbpiv.reset_index() - .groupby(["Archetype", "Zone Name"]) - .agg(lambda x: pd.to_numeric(x, errors="ignore").sum()) + tbpiv.reset_index().groupby(["Archetype", "Zone Name"]).agg(lambda x: pd.to_numeric(x, errors="coerce").sum()) ) @@ -1164,13 +1104,10 @@ def nominal_ventilation(df): df = get_from_tabulardata(df) report_name = "Initialization Summary" table_name = "ZoneVentilation Airflow Stats Nominal" - tbstr = df[ - (df.ReportName == report_name) & (df.TableName == table_name) - ].reset_index() + tbstr = df[(df.ReportName == report_name) & (df.TableName == table_name)].reset_index() if tbstr.empty: log( - "Table {} does not exist. " - "Returning an empty DataFrame".format(table_name), + f"Table {table_name} does not exist. Returning an empty DataFrame", lg.WARNING, ) return pd.DataFrame([]) @@ -1181,9 +1118,7 @@ def nominal_ventilation(df): aggfunc=lambda x: " ".join(x), ) - tbpiv = tbpiv.replace({"N/A": np.nan}).apply( - lambda x: pd.to_numeric(x, errors="ignore") - ) + tbpiv = tbpiv.replace({"N/A": np.nan}).apply(lambda x: pd.to_numeric(x, errors="ignore")) tbpiv = ( tbpiv.reset_index() .groupby( @@ -1215,16 +1150,10 @@ def nominal_ventilation_aggregation(x): "Zone Name": x["Zone Name"].iloc[0], "Name": top(x["Name"], x, "Zone Floor Area {m2}"), "Schedule Name": top(x["Schedule Name"], x, "Zone Floor Area {m2}"), - "Fan Type {Exhaust;Intake;Natural}": top( - x["Fan Type {Exhaust;Intake;Natural}"], x, "Zone Floor Area {m2}" - ), - "Zone Floor Area {m2}": top( - x["Zone Floor Area {m2}"], x, "Zone Floor Area {m2}" - ), + "Fan Type {Exhaust;Intake;Natural}": top(x["Fan Type {Exhaust;Intake;Natural}"], x, "Zone Floor Area {m2}"), + "Zone Floor Area {m2}": top(x["Zone Floor Area {m2}"], x, "Zone Floor Area {m2}"), "# Zone Occupants": top(x["# Zone Occupants"], x, "Zone Floor Area {m2}"), - "Design Volume Flow Rate {m3/s}": weighted_mean( - x["Design Volume Flow Rate {m3/s}"], x, "Zone Floor Area {m2}" - ), + "Design Volume Flow Rate {m3/s}": weighted_mean(x["Design Volume Flow Rate {m3/s}"], x, "Zone Floor Area {m2}"), "Volume Flow Rate/Floor Area {m3/s/m2}": weighted_mean( x.filter(like="Volume Flow Rate/Floor Area").squeeze(axis=1), x, @@ -1235,15 +1164,9 @@ def nominal_ventilation_aggregation(x): x, "Zone Floor Area {m2}", ), - "ACH - Air Changes per Hour": weighted_mean( - x["ACH - Air Changes per Hour"], x, "Zone Floor Area {m2}" - ), - "Fan Pressure Rise {Pa}": weighted_mean( - x["Fan Pressure Rise {Pa}"], x, "Zone Floor Area {m2}" - ), - "Fan Efficiency {}": weighted_mean( - x["Fan Efficiency {}"], x, "Zone Floor Area {m2}" - ), + "ACH - Air Changes per Hour": weighted_mean(x["ACH - Air Changes per Hour"], x, "Zone Floor Area {m2}"), + "Fan Pressure Rise {Pa}": weighted_mean(x["Fan Pressure Rise {Pa}"], x, "Zone Floor Area {m2}"), + "Fan Efficiency {}": weighted_mean(x["Fan Efficiency {}"], x, "Zone Floor Area {m2}"), "Equation A - Constant Term Coefficient {}": top( x["Equation A - Constant Term Coefficient {}"], x, "Zone Floor Area {m2}" ), @@ -1266,24 +1189,20 @@ def nominal_ventilation_aggregation(x): "Maximum Indoor Temperature{C}/Schedule": top( x["Maximum Indoor Temperature{C}/Schedule"], x, "Zone Floor Area {m2}" ), - "Delta Temperature{C}/Schedule": top( - x["Delta Temperature{C}/Schedule"], x, "Zone Floor Area {m2}" - ), + "Delta Temperature{C}/Schedule": top(x["Delta Temperature{C}/Schedule"], x, "Zone Floor Area {m2}"), "Minimum Outdoor Temperature{C}/Schedule": top( x["Minimum Outdoor Temperature{C}/Schedule"], x, "Zone Floor Area {m2}" ), "Maximum Outdoor Temperature{C}/Schedule": top( x["Maximum Outdoor Temperature{C}/Schedule"], x, "Zone Floor Area {m2}" ), - "Maximum WindSpeed{m/s}": top( - x["Maximum WindSpeed{m/s}"], x, "Zone Floor Area {m2}" - ), + "Maximum WindSpeed{m/s}": top(x["Maximum WindSpeed{m/s}"], x, "Zone Floor Area {m2}"), } try: df = pd.DataFrame(how_dict, index=range(0, 1)) # range should always be # one since we are trying to merge zones except Exception as e: - log("{}".format(e)) + log(f"{e}") else: return df diff --git a/archetypal/template/window_setting.py b/archetypal/template/window_setting.py index 4e06d52b7..d2afe9a73 100644 --- a/archetypal/template/window_setting.py +++ b/archetypal/template/window_setting.py @@ -6,7 +6,6 @@ from functools import reduce from validator_collection import checkers, validators -from validator_collection.errors import EmptyValueError from archetypal.template.constructions.window_construction import ( ShadingType, @@ -36,6 +35,7 @@ class WindowSetting(UmiBase): .. _eppy : https://eppy.readthedocs.io/en/latest/ """ + _CREATED_OBJECTS = [] __slots__ = ( @@ -180,8 +180,7 @@ def AfnWindowAvailability(self): def AfnWindowAvailability(self, value): if value is not None: assert isinstance(value, UmiSchedule), ( - f"Input error with value {value}. AfnWindowAvailability must " - f"be an UmiSchedule, not a {type(value)}" + f"Input error with value {value}. AfnWindowAvailability must " f"be an UmiSchedule, not a {type(value)}" ) self._afn_window_availability = value @@ -194,14 +193,12 @@ def ShadingSystemType(self): def ShadingSystemType(self, value): if checkers.is_string(value): assert ShadingType[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in ShadingType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in ShadingType)}" ) self._shading_system_type = ShadingType[value] elif checkers.is_numeric(value): assert ShadingType(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in ShadingType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in ShadingType)}" ) self._shading_system_type = ShadingType(value) elif isinstance(value, ShadingType): @@ -223,9 +220,7 @@ def ShadingSystemTransmittance(self): @ShadingSystemTransmittance.setter def ShadingSystemTransmittance(self, value): - self._shading_system_transmittance = validators.float( - value, minimum=0, maximum=1 - ) + self._shading_system_transmittance = validators.float(value, minimum=0, maximum=1) @property def ShadingSystemAvailabilitySchedule(self): @@ -249,8 +244,7 @@ def IsShadingSystemOn(self): @IsShadingSystemOn.setter def IsShadingSystemOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsShadingSystemOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsShadingSystemOn must " f"be a boolean, not a {type(value)}" ) self._is_shading_system_on = value @@ -286,8 +280,7 @@ def Construction(self): def Construction(self, value): if value is not None: assert isinstance(value, WindowConstruction), ( - f"Input error with value {value}. Construction must " - f"be an WindowConstruction, not a {type(value)}" + f"Input error with value {value}. Construction must " f"be an WindowConstruction, not a {type(value)}" ) self._construction = value @@ -299,8 +292,7 @@ def IsVirtualPartition(self): @IsVirtualPartition.setter def IsVirtualPartition(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsVirtualPartition must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsVirtualPartition must " f"be a boolean, not a {type(value)}" ) self._is_virtual_partition = value @@ -312,8 +304,7 @@ def IsZoneMixingOn(self): @IsZoneMixingOn.setter def IsZoneMixingOn(self, value): assert isinstance(value, bool), ( - f"Input error with value {value}. IsZoneMixingOn must " - f"be a boolean, not a {type(value)}" + f"Input error with value {value}. IsZoneMixingOn must " f"be a boolean, not a {type(value)}" ) self._is_zone_mixing_on = value @@ -335,14 +326,12 @@ def Type(self): def Type(self, value): if checkers.is_string(value): assert WindowType[value], ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in WindowType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in WindowType)}" ) self._type = WindowType[value] elif checkers.is_numeric(value): assert WindowType(value), ( - f"Input value error for '{value}'. " - f"Expected one of {tuple(a for a in WindowType)}" + f"Input value error for '{value}'. " f"Expected one of {tuple(a for a in WindowType)}" ) self._type = WindowType(value) elif isinstance(value, WindowType): @@ -378,15 +367,13 @@ def __eq__(self, other): self.AfnTempSetpoint == other.AfnTempSetpoint, self.IsVirtualPartition == other.IsVirtualPartition, self.IsShadingSystemOn == other.IsShadingSystemOn, - self.ShadingSystemAvailabilitySchedule - == other.ShadingSystemAvailabilitySchedule, + self.ShadingSystemAvailabilitySchedule == other.ShadingSystemAvailabilitySchedule, self.ShadingSystemSetpoint == other.ShadingSystemSetpoint, self.ShadingSystemTransmittance == other.ShadingSystemTransmittance, self.ShadingSystemType == other.ShadingSystemType, self.Type == other.Type, self.IsZoneMixingOn == other.IsZoneMixingOn, - self.ZoneMixingAvailabilitySchedule - == other.ZoneMixingAvailabilitySchedule, + self.ZoneMixingAvailabilitySchedule == other.ZoneMixingAvailabilitySchedule, self.ZoneMixingDeltaTemperature == other.ZoneMixingDeltaTemperature, self.ZoneMixingFlowRate == other.ZoneMixingFlowRate, ] @@ -484,13 +471,11 @@ def from_surface(cls, surface, **kwargs): (WindowSetting): The window setting object. """ if surface.key.upper() == "FENESTRATIONSURFACE:DETAILED": - if not surface.Surface_Type.lower() == "window": + if surface.Surface_Type.lower() != "window": return # Other surface types (Doors, GlassDoors, etc.) are ignored. construction = surface.get_referenced_object("Construction_Name") if construction is None: - construction = surface.theidf.getobject( - "CONSTRUCTION", surface.Construction_Name - ) + construction = surface.theidf.getobject("CONSTRUCTION", surface.Construction_Name) construction = WindowConstruction.from_epbunch(construction) shading_control = surface.get_referenced_object("Shading_Control_Name") elif surface.key.upper() == "WINDOW": @@ -508,10 +493,7 @@ def from_surface(cls, surface, **kwargs): elif surface.key.upper() == "DOOR": return # Simply skip doors. else: - raise ValueError( - f"A window of type {surface.key} is not yet supported. " - f"Please contact developers" - ) + raise ValueError(f"A window of type {surface.key} is not yet supported. " f"Please contact developers") attr = {} if shading_control: @@ -520,9 +502,7 @@ def from_surface(cls, surface, **kwargs): attr["IsShadingSystemOn"] = True if shading_control["Setpoint"] != "": attr["ShadingSystemSetpoint"] = shading_control["Setpoint"] - shade_mat = shading_control.get_referenced_object( - "Shading_Device_Material_Name" - ) + shade_mat = shading_control.get_referenced_object("Shading_Device_Material_Name") # get shading transmittance if shade_mat: attr["ShadingSystemTransmittance"] = shade_mat["Visible_Transmittance"] @@ -536,23 +516,17 @@ def from_surface(cls, surface, **kwargs): # Determine which behavior of control shade_ctrl_type = shading_control["Shading_Control_Type"] if shade_ctrl_type.lower() == "alwaysoff": - attr[ - "ShadingSystemAvailabilitySchedule" - ] = UmiSchedule.constant_schedule(value=0, name="AlwaysOff") + attr["ShadingSystemAvailabilitySchedule"] = UmiSchedule.constant_schedule(value=0, name="AlwaysOff") elif shade_ctrl_type.lower() == "alwayson": - attr[ - "ShadingSystemAvailabilitySchedule" - ] = UmiSchedule.constant_schedule() + attr["ShadingSystemAvailabilitySchedule"] = UmiSchedule.constant_schedule() else: log( - 'Window "{}" uses a window control type that ' - 'is not supported: "{}". Reverting to ' - '"AlwaysOn"'.format(surface.Name, shade_ctrl_type), + f'Window "{surface.Name}" uses a window control type that ' + f'is not supported: "{shade_ctrl_type}". Reverting to ' + '"AlwaysOn"', lg.WARN, ) - attr[ - "ShadingSystemAvailabilitySchedule" - ] = UmiSchedule.constant_schedule() + attr["ShadingSystemAvailabilitySchedule"] = UmiSchedule.constant_schedule() # get shading type if shading_control["Shading_Type"] != "": mapping = { @@ -586,69 +560,51 @@ def from_surface(cls, surface, **kwargs): leak = afn.get_referenced_object("Leakage_Component_Name") name = afn["Venting_Availability_Schedule_Name"] if name != "": - attr["AfnWindowAvailability"] = UmiSchedule.from_epbunch( - surface.theidf.schedules_dict[name.upper()] - ) + attr["AfnWindowAvailability"] = UmiSchedule.from_epbunch(surface.theidf.schedules_dict[name.upper()]) else: attr["AfnWindowAvailability"] = UmiSchedule.constant_schedule() name = afn["Ventilation_Control_Zone_Temperature_Setpoint_Schedule_Name"] if name != "": - attr["AfnTempSetpoint"] = UmiSchedule( - Name=name, idf=surface.theidf - ).mean + attr["AfnTempSetpoint"] = UmiSchedule(Name=name, idf=surface.theidf).mean else: pass # uses default - if ( - leak.key.upper() - == "AIRFLOWNETWORK:MULTIZONE:SURFACE:EFFECTIVELEAKAGEAREA" - ): + if leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:SURFACE:EFFECTIVELEAKAGEAREA": attr["AfnDischargeC"] = leak["Discharge_Coefficient"] - elif ( - leak.key.upper() - == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:HORIZONTALOPENING" - ): + elif leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:HORIZONTALOPENING": log( - '"{}" is not fully supported. Reverting to ' - 'defaults for object "{}"'.format(leak.key, cls.mro()[0].__name__), + f'"{leak.key}" is not fully supported. Reverting to ' + f'defaults for object "{cls.mro()[0].__name__}"', lg.WARNING, ) elif leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:SURFACE:CRACK": log( - '"{}" is not fully supported. Rerverting to ' - 'defaults for object "{}"'.format(leak.key, cls.mro()[0].__name__), + f'"{leak.key}" is not fully supported. Rerverting to ' + f'defaults for object "{cls.mro()[0].__name__}"', lg.WARNING, ) - elif ( - leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:DETAILEDOPENING" - ): + elif leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:DETAILEDOPENING": log( - '"{}" is not fully supported. Rerverting to ' - 'defaults for object "{}"'.format(leak.key, cls.mro()[0].__name__), + f'"{leak.key}" is not fully supported. Rerverting to ' + f'defaults for object "{cls.mro()[0].__name__}"', lg.WARNING, ) - elif ( - leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:ZONEEXHAUSTFAN" - ): + elif leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:ZONEEXHAUSTFAN": log( - '"{}" is not fully supported. Rerverting to ' - 'defaults for object "{}"'.format(leak.key, cls.mro()[0].__name__), + f'"{leak.key}" is not fully supported. Rerverting to ' + f'defaults for object "{cls.mro()[0].__name__}"', lg.WARNING, ) elif leak.key.upper() == "AIRFLOWNETWORK:MULTIZONE:COMPONENT:SIMPLEOPENING": log( - '"{}" is not fully supported. Rerverting to ' - 'defaults for object "{}"'.format(leak.key, cls.mro()[0].__name__), + f'"{leak.key}" is not fully supported. Rerverting to ' + f'defaults for object "{cls.mro()[0].__name__}"', lg.WARNING, ) else: - attr["AfnWindowAvailability"] = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff" - ) + attr["AfnWindowAvailability"] = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff") # Todo: Zone Mixing is always off - attr["ZoneMixingAvailabilitySchedule"] = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff" - ) + attr["ZoneMixingAvailabilitySchedule"] = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff") DataSource = kwargs.pop("DataSource", surface.theidf.name) Category = kwargs.pop("Category", surface.theidf.name) w = cls( @@ -725,35 +681,22 @@ def combine(self, other, weights=None, allow_duplicates=False): return self if not weights: - log( - 'using 1 as weighting factor in "{}" ' - "combine.".format(self.__class__.__name__) - ) + log(f'using 1 as weighting factor in "{self.__class__.__name__}" ' "combine.") weights = [1.0, 1.0] meta = self._get_predecessors_meta(other) new_attr = dict( - Construction=WindowConstruction.combine( - self.Construction, other.Construction, weights - ), + Construction=WindowConstruction.combine(self.Construction, other.Construction, weights), AfnDischargeC=self.float_mean(other, "AfnDischargeC", weights), AfnTempSetpoint=self.float_mean(other, "AfnTempSetpoint", weights), - AfnWindowAvailability=UmiSchedule.combine( - self.AfnWindowAvailability, other.AfnWindowAvailability, weights - ), + AfnWindowAvailability=UmiSchedule.combine(self.AfnWindowAvailability, other.AfnWindowAvailability, weights), IsShadingSystemOn=any([self.IsShadingSystemOn, other.IsShadingSystemOn]), IsVirtualPartition=any([self.IsVirtualPartition, other.IsVirtualPartition]), IsZoneMixingOn=any([self.IsZoneMixingOn, other.IsZoneMixingOn]), OperableArea=self.float_mean(other, "OperableArea", weights), - ShadingSystemSetpoint=self.float_mean( - other, "ShadingSystemSetpoint", weights - ), - ShadingSystemTransmittance=self.float_mean( - other, "ShadingSystemTransmittance", weights - ), + ShadingSystemSetpoint=self.float_mean(other, "ShadingSystemSetpoint", weights), + ShadingSystemTransmittance=self.float_mean(other, "ShadingSystemTransmittance", weights), ShadingSystemType=max(self.ShadingSystemType, other.ShadingSystemType), - ZoneMixingDeltaTemperature=self.float_mean( - other, "ZoneMixingDeltaTemperature", weights - ), + ZoneMixingDeltaTemperature=self.float_mean(other, "ZoneMixingDeltaTemperature", weights), ZoneMixingFlowRate=self.float_mean(other, "ZoneMixingFlowRate", weights), ZoneMixingAvailabilitySchedule=UmiSchedule.combine( self.ZoneMixingAvailabilitySchedule, @@ -786,16 +729,12 @@ def to_dict(self): data_dict["IsVirtualPartition"] = self.IsVirtualPartition data_dict["IsZoneMixingOn"] = self.IsZoneMixingOn data_dict["OperableArea"] = self.OperableArea - data_dict[ - "ShadingSystemAvailabilitySchedule" - ] = self.ShadingSystemAvailabilitySchedule.to_ref() + data_dict["ShadingSystemAvailabilitySchedule"] = self.ShadingSystemAvailabilitySchedule.to_ref() data_dict["ShadingSystemSetpoint"] = self.ShadingSystemSetpoint data_dict["ShadingSystemTransmittance"] = self.ShadingSystemTransmittance data_dict["ShadingSystemType"] = self.ShadingSystemType.value data_dict["Type"] = self.Type.value - data_dict[ - "ZoneMixingAvailabilitySchedule" - ] = self.ZoneMixingAvailabilitySchedule.to_ref() + data_dict["ZoneMixingAvailabilitySchedule"] = self.ZoneMixingAvailabilitySchedule.to_ref() data_dict["ZoneMixingDeltaTemperature"] = self.ZoneMixingDeltaTemperature data_dict["ZoneMixingFlowRate"] = self.ZoneMixingFlowRate data_dict["Category"] = self.Category @@ -820,12 +759,8 @@ def from_dict(cls, data, schedules, window_constructions, **kwargs): _id = data.pop("$id") afn_availability_schedule = schedules[data.pop("AfnWindowAvailability")["$ref"]] construction = window_constructions[data.pop("Construction")["$ref"]] - shading_system_availability_schedule = schedules[ - data.pop("ShadingSystemAvailabilitySchedule")["$ref"] - ] - zone_mixing_availability_schedule = schedules[ - data.pop("ZoneMixingAvailabilitySchedule")["$ref"] - ] + shading_system_availability_schedule = schedules[data.pop("ShadingSystemAvailabilitySchedule")["$ref"]] + zone_mixing_availability_schedule = schedules[data.pop("ZoneMixingAvailabilitySchedule")["$ref"]] return cls( id=_id, Construction=construction, @@ -837,9 +772,7 @@ def from_dict(cls, data, schedules, window_constructions, **kwargs): ) @classmethod - def from_ref( - cls, ref, building_templates, schedules, window_constructions, **kwargs - ): + def from_ref(cls, ref, building_templates, schedules, window_constructions, **kwargs): """Initialize :class:`WindowSetting` object from a reference id. Hint: @@ -869,17 +802,11 @@ def from_ref( def validate(self): """Validate object and fill in missing values.""" if self.AfnWindowAvailability is None: - self.AfnWindowAvailability = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff" - ) + self.AfnWindowAvailability = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff") if self.ShadingSystemAvailabilitySchedule is None: - self.ShadingSystemAvailabilitySchedule = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff" - ) + self.ShadingSystemAvailabilitySchedule = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff") if self.ZoneMixingAvailabilitySchedule is None: - self.ZoneMixingAvailabilitySchedule = UmiSchedule.constant_schedule( - value=0, Name="AlwaysOff" - ) + self.ZoneMixingAvailabilitySchedule = UmiSchedule.constant_schedule(value=0, Name="AlwaysOff") return self diff --git a/archetypal/template/zone_construction_set.py b/archetypal/template/zone_construction_set.py index 4e87a0d49..c711391f9 100644 --- a/archetypal/template/zone_construction_set.py +++ b/archetypal/template/zone_construction_set.py @@ -12,6 +12,7 @@ class ZoneConstructionSet(UmiBase): """ZoneConstructionSet class.""" + _CREATED_OBJECTS = [] __slots__ = ( @@ -93,8 +94,7 @@ def Facade(self): def Facade(self, value): if value is not None: assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. Facade must be" - f" an OpaqueConstruction, not a {type(value)}" + f"Input value error for {value}. Facade must be" f" an OpaqueConstruction, not a {type(value)}" ) self._facade = value @@ -107,8 +107,7 @@ def Ground(self): def Ground(self, value): if value is not None: assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. Ground must be" - f" an OpaqueConstruction, not a {type(value)}" + f"Input value error for {value}. Ground must be" f" an OpaqueConstruction, not a {type(value)}" ) self._ground = value @@ -121,8 +120,7 @@ def Partition(self): def Partition(self, value): if value is not None: assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. Partition must be" - f" an OpaqueConstruction, not a {type(value)}" + f"Input value error for {value}. Partition must be" f" an OpaqueConstruction, not a {type(value)}" ) self._partition = value @@ -135,8 +133,7 @@ def Roof(self): def Roof(self, value): if value is not None: assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. Roof must be" - f" an OpaqueConstruction, not a {type(value)}" + f"Input value error for {value}. Roof must be" f" an OpaqueConstruction, not a {type(value)}" ) self._roof = value @@ -149,8 +146,7 @@ def Slab(self): def Slab(self, value): if value is not None: assert isinstance(value, OpaqueConstruction), ( - f"Input value error for {value}. Slab must be" - f" an OpaqueConstruction, not a {type(value)}" + f"Input value error for {value}. Slab must be" f" an OpaqueConstruction, not a {type(value)}" ) self._slab = value @@ -162,9 +158,7 @@ def IsFacadeAdiabatic(self): @IsFacadeAdiabatic.setter def IsFacadeAdiabatic(self, value): assert isinstance(value, bool), ( - f"Input value error for {value}. " - f"IsFacadeAdiabatic must be of type bool, " - f"not {type(value)}." + f"Input value error for {value}. " f"IsFacadeAdiabatic must be of type bool, " f"not {type(value)}." ) self._is_facade_adiabatic = value @@ -176,9 +170,7 @@ def IsGroundAdiabatic(self): @IsGroundAdiabatic.setter def IsGroundAdiabatic(self, value): assert isinstance(value, bool), ( - f"Input value error for {value}. " - f"IsGroundAdiabatic must be of type bool, " - f"not {type(value)}." + f"Input value error for {value}. " f"IsGroundAdiabatic must be of type bool, " f"not {type(value)}." ) self._is_ground_adiabatic = value @@ -190,9 +182,7 @@ def IsPartitionAdiabatic(self): @IsPartitionAdiabatic.setter def IsPartitionAdiabatic(self, value): assert isinstance(value, bool), ( - f"Input value error for {value}. " - f"IsPartitionAdiabatic must be of type bool, " - f"not {type(value)}." + f"Input value error for {value}. " f"IsPartitionAdiabatic must be of type bool, " f"not {type(value)}." ) self._is_partition_adiabatic = value @@ -204,9 +194,7 @@ def IsRoofAdiabatic(self): @IsRoofAdiabatic.setter def IsRoofAdiabatic(self, value): assert isinstance(value, bool), ( - f"Input value error for {value}. " - f"IsRoofAdiabatic must be of type bool, " - f"not {type(value)}." + f"Input value error for {value}. " f"IsRoofAdiabatic must be of type bool, " f"not {type(value)}." ) self._is_roof_adiabatic = value @@ -218,9 +206,7 @@ def IsSlabAdiabatic(self): @IsSlabAdiabatic.setter def IsSlabAdiabatic(self, value): assert isinstance(value, bool), ( - f"Input value error for {value}. " - f"IsSlabAdiabatic must be of type bool, " - f"not {type(value)}." + f"Input value error for {value}. " f"IsSlabAdiabatic must be of type bool, " f"not {type(value)}." ) self._is_slab_adiabatic = value @@ -269,10 +255,7 @@ def from_zone(cls, zone, **kwargs): elif disp_surf.Category == "Slab": slab.append(disp_surf) else: - msg = ( - 'Surface Type "{}" is not known, this method is not' - " implemented".format(disp_surf.Surface_Type) - ) + msg = f'Surface Type "{disp_surf.Surface_Type}" is not known, this method is not' " implemented" raise NotImplementedError(msg) # Returning a set() for each groups of Constructions. @@ -388,9 +371,7 @@ def combine(self, other, weights=None, **kwargs): return None elif self == other: area = 1 if self.area + other.area == 2 else self.area + other.area - volume = ( - 1 if self.volume + other.volume == 2 else self.volume + other.volume - ) + volume = 1 if self.volume + other.volume == 2 else self.volume + other.volume new_obj = self.duplicate() new_obj.area = area new_obj.volume = volume @@ -416,9 +397,7 @@ def combine(self, other, weights=None, **kwargs): Roof=OpaqueConstruction.combine(self.Roof, other.Roof), IsRoofAdiabatic=any([self.IsRoofAdiabatic, other.IsRoofAdiabatic]), Partition=OpaqueConstruction.combine(self.Partition, other.Partition), - IsPartitionAdiabatic=any( - [self.IsPartitionAdiabatic, other.IsPartitionAdiabatic] - ), + IsPartitionAdiabatic=any([self.IsPartitionAdiabatic, other.IsPartitionAdiabatic]), Ground=OpaqueConstruction.combine(self.Ground, other.Ground), IsGroundAdiabatic=any([self.IsGroundAdiabatic, other.IsGroundAdiabatic]), Facade=OpaqueConstruction.combine(self.Facade, other.Facade), @@ -613,9 +592,7 @@ def _do_facade(surf): lg.DEBUG, name=surf.theidf.name, ) - oc = OpaqueConstruction.from_epbunch( - surf.theidf.getobject("Construction".upper(), surf.Construction_Name) - ) + oc = OpaqueConstruction.from_epbunch(surf.theidf.getobject("Construction".upper(), surf.Construction_Name)) oc.area = surf.area oc.Category = "Facade" return oc @@ -627,18 +604,14 @@ def _do_ground(surf): lg.DEBUG, name=surf.theidf.name, ) - oc = OpaqueConstruction.from_epbunch( - surf.get_referenced_object("Construction_Name") - ) + oc = OpaqueConstruction.from_epbunch(surf.get_referenced_object("Construction_Name")) oc.area = surf.area oc.Category = "Ground" return oc @staticmethod def _do_partition(surf): - the_construction = surf.theidf.getobject( - "Construction".upper(), surf.Construction_Name - ) + the_construction = surf.theidf.getobject("Construction".upper(), surf.Construction_Name) if the_construction: oc = OpaqueConstruction.from_epbunch(the_construction) oc.area = surf.area @@ -662,9 +635,7 @@ def _do_roof(surf): lg.DEBUG, name=surf.theidf.name, ) - oc = OpaqueConstruction.from_epbunch( - surf.theidf.getobject("Construction".upper(), surf.Construction_Name) - ) + oc = OpaqueConstruction.from_epbunch(surf.theidf.getobject("Construction".upper(), surf.Construction_Name)) oc.area = surf.area oc.Category = "Roof" return oc @@ -676,9 +647,7 @@ def _do_slab(surf): lg.DEBUG, name=surf.theidf.name, ) - oc = OpaqueConstruction.from_epbunch( - surf.theidf.getobject("Construction".upper(), surf.Construction_Name) - ) + oc = OpaqueConstruction.from_epbunch(surf.theidf.getobject("Construction".upper(), surf.Construction_Name)) oc.area = surf.area oc.Category = "Slab" return oc @@ -686,8 +655,7 @@ def _do_slab(surf): @staticmethod def _do_basement(surf): log( - 'surface "%s" ignored because basement facades are not supported' - % surf.Name, + 'surface "%s" ignored because basement facades are not supported' % surf.Name, lg.WARNING, name=surf.theidf.name, ) diff --git a/archetypal/template/zonedefinition.py b/archetypal/template/zonedefinition.py index ccedf1fb9..48b82a00a 100644 --- a/archetypal/template/zonedefinition.py +++ b/archetypal/template/zonedefinition.py @@ -25,6 +25,7 @@ class ZoneDefinition(UmiBase): .. image:: ../images/template/zoneinfo-zone.png """ + _CREATED_OBJECTS = [] __slots__ = ( @@ -133,8 +134,7 @@ def Constructions(self): def Constructions(self, value): if value is not None: assert isinstance(value, ZoneConstructionSet), ( - f"Input value error. Constructions must be of " - f"type {ZoneConstructionSet}, not {type(value)}." + f"Input value error. Constructions must be of " f"type {ZoneConstructionSet}, not {type(value)}." ) self._constructions = value @@ -147,8 +147,7 @@ def Loads(self): def Loads(self, value): if value is not None: assert isinstance(value, ZoneLoad), ( - f"Input value error. Loads must be of " - f"type {ZoneLoad}, not {type(value)}." + f"Input value error. Loads must be of " f"type {ZoneLoad}, not {type(value)}." ) self._loads = value @@ -161,8 +160,7 @@ def Conditioning(self): def Conditioning(self, value): if value is not None: assert isinstance(value, ZoneConditioning), ( - f"Input value error. Conditioning must be of " - f"type {ZoneConditioning}, not {type(value)}." + f"Input value error. Conditioning must be of " f"type {ZoneConditioning}, not {type(value)}." ) self._conditioning = value @@ -175,8 +173,7 @@ def Ventilation(self): def Ventilation(self, value): if value is not None: assert isinstance(value, VentilationSetting), ( - f"Input value error. Ventilation must be of " - f"type {VentilationSetting}, not {type(value)}." + f"Input value error. Ventilation must be of " f"type {VentilationSetting}, not {type(value)}." ) self._ventilation = value @@ -189,8 +186,7 @@ def DomesticHotWater(self): def DomesticHotWater(self, value): if value is not None: assert isinstance(value, DomesticHotWaterSetting), ( - f"Input value error. DomesticHotWater must be of " - f"type {DomesticHotWaterSetting}, not {type(value)}." + f"Input value error. DomesticHotWater must be of " f"type {DomesticHotWaterSetting}, not {type(value)}." ) self._domestic_hot_water = value @@ -244,8 +240,7 @@ def Windows(self): def Windows(self, value): if value is not None: assert isinstance(value, WindowSetting), ( - f"Input value error. Windows must be of " - f"type {WindowSetting}, not {type(value)}." + f"Input value error. Windows must be of " f"type {WindowSetting}, not {type(value)}." ) self._windows = value @@ -341,9 +336,7 @@ def to_dict(self): data_dict["DaylightWorkplaneHeight"] = round(self.DaylightWorkplaneHeight, 2) data_dict["DomesticHotWater"] = self.DomesticHotWater.to_ref() data_dict["InternalMassConstruction"] = self.InternalMassConstruction.to_ref() - data_dict["InternalMassExposedPerFloorArea"] = round( - self.InternalMassExposedPerFloorArea, 3 - ) + data_dict["InternalMassExposedPerFloorArea"] = round(self.InternalMassExposedPerFloorArea, 3) data_dict["Loads"] = self.Loads.to_ref() data_dict["Ventilation"] = self.Ventilation.to_ref() data_dict["Category"] = self.Category @@ -418,12 +411,8 @@ def from_dict( conditioning = zone_conditionings[data.pop("Conditioning")["$ref"]] construction_set = zone_construction_sets[data.pop("Constructions")["$ref"]] - domestic_hot_water_setting = domestic_hot_water_settings[ - data.pop("DomesticHotWater")["$ref"] - ] - internal_mass_construction = opaque_constructions[ - data.pop("InternalMassConstruction")["$ref"] - ] + domestic_hot_water_setting = domestic_hot_water_settings[data.pop("DomesticHotWater")["$ref"]] + internal_mass_construction = opaque_constructions[data.pop("InternalMassConstruction")["$ref"]] zone_load = zone_loads[data.pop("Loads")["$ref"]] ventilation_setting = ventilation_settings[data.pop("Ventilation")["$ref"]] @@ -448,18 +437,16 @@ def from_epbunch(cls, ep_bunch, construct_parents=True, **kwargs): construct_parents (bool): If False, skips construction of parents objects such as Constructions, Conditioning, etc. """ - assert ( - ep_bunch.key.lower() == "zone" - ), f"Expected a `ZONE` epbunch, got {ep_bunch.key}" + assert ep_bunch.key.lower() == "zone", f"Expected a `ZONE` epbunch, got {ep_bunch.key}" start_time = time.time() - log('Constructing :class:`Zone` for zone "{}"'.format(ep_bunch.Name)) + log(f'Constructing :class:`Zone` for zone "{ep_bunch.Name}"') def calc_zone_area(zone_ep): """Get zone area from simulation sql file.""" with sqlite3.connect(zone_ep.theidf.sql_file) as conn: sql_query = """ - SELECT t.Value - FROM TabularDataWithStrings t + SELECT t.Value + FROM TabularDataWithStrings t WHERE TableName='Zone Summary' and ColumnName='Area' and RowName=? """ (res,) = conn.execute(sql_query, (zone_ep.Name.upper(),)).fetchone() @@ -544,9 +531,7 @@ def is_core(zone_ep): area=calc_zone_area(ep_bunch), volume=calc_zone_volume(ep_bunch), occupants=calc_zone_occupants(ep_bunch), - is_part_of_conditioned_floor_area=calc_is_part_of_conditioned_floor_area( - ep_bunch - ), + is_part_of_conditioned_floor_area=calc_is_part_of_conditioned_floor_area(ep_bunch), is_part_of_total_floor_area=calc_is_part_of_total_floor_area(ep_bunch), multiplier=calc_multiplier(ep_bunch), zone_surfaces=ep_bunch.zonesurfaces, @@ -558,22 +543,14 @@ def is_core(zone_ep): zone.Constructions = ZoneConstructionSet.from_zone(zone, **kwargs) zone.Conditioning = ZoneConditioning.from_zone(zone, ep_bunch, **kwargs) zone.Ventilation = VentilationSetting.from_zone(zone, ep_bunch, **kwargs) - zone.DomesticHotWater = DomesticHotWaterSetting.from_zone( - ep_bunch, **kwargs - ) + zone.DomesticHotWater = DomesticHotWaterSetting.from_zone(ep_bunch, **kwargs) zone.Loads = ZoneLoad.from_zone(zone, ep_bunch, **kwargs) internal_mass_from_zone = InternalMass.from_zone(ep_bunch) zone.InternalMassConstruction = internal_mass_from_zone.construction - zone.InternalMassExposedPerFloorArea = ( - internal_mass_from_zone.total_area_exposed_to_zone - ) + zone.InternalMassExposedPerFloorArea = internal_mass_from_zone.total_area_exposed_to_zone zone.Windows = WindowSetting.from_zone(zone, **kwargs) - log( - 'completed Zone "{}" constructor in {:,.2f} seconds'.format( - ep_bunch.Name, time.time() - start_time - ) - ) + log(f'completed Zone "{ep_bunch.Name}" constructor in {time.time() - start_time:,.2f} seconds') return zone def combine(self, other, weights=None, allow_duplicates=False): @@ -597,9 +574,7 @@ def combine(self, other, weights=None, allow_duplicates=False): return None elif self == other: area = 1 if self.area + other.area == 2 else self.area + other.area - volume = ( - 1 if self.volume + other.volume == 2 else self.volume + other.volume - ) + volume = 1 if self.volume + other.volume == 2 else self.volume + other.volume new_obj = self.duplicate() new_obj.area = area new_obj.volume = volume @@ -625,8 +600,7 @@ def combine(self, other, weights=None, allow_duplicates=False): getattr(other, str(zone_weight)), ] log( - 'using zone {} "{}" as weighting factor in "{}" ' - "combine.".format( + 'using zone {} "{}" as weighting factor in "{}" ' "combine.".format( zone_weight, " & ".join(list(map(str, map(int, weights)))), self.__class__.__name__, @@ -634,29 +608,17 @@ def combine(self, other, weights=None, allow_duplicates=False): ) new_attr = dict( - Conditioning=ZoneConditioning.combine( - self.Conditioning, other.Conditioning, weights - ), - Constructions=ZoneConstructionSet.combine( - self.Constructions, other.Constructions, weights - ), + Conditioning=ZoneConditioning.combine(self.Conditioning, other.Conditioning, weights), + Constructions=ZoneConstructionSet.combine(self.Constructions, other.Constructions, weights), Ventilation=VentilationSetting.combine(self.Ventilation, other.Ventilation), Windows=WindowSetting.combine(self.Windows, other.Windows, weights), - DaylightMeshResolution=self.float_mean( - other, "DaylightMeshResolution", weights=weights - ), - DaylightWorkplaneHeight=self.float_mean( - other, "DaylightWorkplaneHeight", weights - ), - DomesticHotWater=DomesticHotWaterSetting.combine( - self.DomesticHotWater, other.DomesticHotWater - ), + DaylightMeshResolution=self.float_mean(other, "DaylightMeshResolution", weights=weights), + DaylightWorkplaneHeight=self.float_mean(other, "DaylightWorkplaneHeight", weights), + DomesticHotWater=DomesticHotWaterSetting.combine(self.DomesticHotWater, other.DomesticHotWater), InternalMassConstruction=OpaqueConstruction.combine( self.InternalMassConstruction, other.InternalMassConstruction ), - InternalMassExposedPerFloorArea=self.float_mean( - other, "InternalMassExposedPerFloorArea", weights - ), + InternalMassExposedPerFloorArea=self.float_mean(other, "InternalMassExposedPerFloorArea", weights), Loads=ZoneLoad.combine(self.Loads, other.Loads, weights), ) new_obj = ZoneDefinition(**meta, **new_attr) @@ -677,9 +639,7 @@ def validate(self): if self.InternalMassConstruction is None: internal_mass = InternalMass.generic_internalmass_from_zone(self) self.InternalMassConstruction = internal_mass.construction - self.InternalMassExposedPerFloorArea = ( - internal_mass.total_area_exposed_to_zone - ) + self.InternalMassExposedPerFloorArea = internal_mass.total_area_exposed_to_zone log( f"While validating {self}, the required attribute " f"'InternalMassConstruction' was filled " @@ -750,8 +710,7 @@ def __eq__(self, other): self.Ventilation == other.Ventilation, self.Windows == other.Windows, self.InternalMassConstruction == other.InternalMassConstruction, - self.InternalMassExposedPerFloorArea - == other.InternalMassExposedPerFloorArea, + self.InternalMassExposedPerFloorArea == other.InternalMassExposedPerFloorArea, self.DaylightMeshResolution == other.DaylightMeshResolution, self.DaylightWorkplaneHeight == other.DaylightWorkplaneHeight, ] diff --git a/archetypal/umi_template.py b/archetypal/umi_template.py index c2d5c320c..97662d3ca 100644 --- a/archetypal/umi_template.py +++ b/archetypal/umi_template.py @@ -209,7 +209,8 @@ def from_idf_files( weather (str or Path): Path to the weather file. name (str): The name of the Template File processors (int): Number of cores. Defaults to -1, all cores. - debug (bool): If True, will raise any error on any processed file. + debug (bool): If True, will raise any error on any processed file and + keep simulation cache directory. kwargs: keyword arguments passed to IDF(). Raises: @@ -228,7 +229,7 @@ def from_idf_files( verbose=False, position=i, nolimit=True, - keep_data_err=True, # For debugging + keep_data_err=debug, readvars=False, # No need to readvars since only sql is used **kwargs, ) @@ -247,8 +248,7 @@ def from_idf_files( with open(filename, "a") as file: file.writelines(res.write()) log( - f"EnergyPlusProcess error for {filename} listed in" - f" {filename}: {res}", + f"EnergyPlusProcess error for {filename} listed in {filename}: {res}", lg.ERROR, ) elif isinstance(res, Exception): @@ -262,13 +262,9 @@ def from_idf_files( # If all exceptions, raise them for debugging if all(isinstance(x, Exception) for x in results.values()): - raise Exception( - [res for res in results.values() if isinstance(res, Exception)] - ) + raise Exception([res for res in results.values() if isinstance(res, Exception)]) - umi_template.BuildingTemplates = [ - res for res in results.values() if not isinstance(res, Exception) - ] + umi_template.BuildingTemplates = [res for res in results.values() if not isinstance(res, Exception)] if keep_all_zones: _zones = set(obj.get_unique() for obj in ZoneDefinition._CREATED_OBJECTS) @@ -279,9 +275,7 @@ def from_idf_files( exceptions = None # Get unique instances - umi_template.unique_components( - *(unique_components or []), exceptions=exceptions - ) + umi_template.unique_components(*(unique_components or []), exceptions=exceptions) # Update attributes of instance umi_template.update_components_list(exceptions=exceptions) @@ -325,7 +319,7 @@ def open(cls, filename): UmiTemplateLibrary: The template object. """ name = Path(filename) - with open(filename, "r") as f: + with open(filename) as f: t = cls.loads(f.read(), name) return t @@ -336,25 +330,17 @@ def loads(cls, s, name): datastore = json.loads(s) # with datastore, create each objects t = cls(name) - t.GasMaterials = [ - GasMaterial.from_dict(store, allow_duplicates=False) - for store in datastore["GasMaterials"] - ] + t.GasMaterials = [GasMaterial.from_dict(store, allow_duplicates=False) for store in datastore["GasMaterials"]] t.GlazingMaterials = [ - GlazingMaterial.from_dict(store, allow_duplicates=False) - for store in datastore["GlazingMaterials"] + GlazingMaterial.from_dict(store, allow_duplicates=False) for store in datastore["GlazingMaterials"] ] t.OpaqueMaterials = [ - OpaqueMaterial.from_dict(store, allow_duplicates=False) - for store in datastore["OpaqueMaterials"] + OpaqueMaterial.from_dict(store, allow_duplicates=False) for store in datastore["OpaqueMaterials"] ] t.OpaqueConstructions = [ OpaqueConstruction.from_dict( store, - materials={ - a.id: a - for a in (t.GasMaterials + t.GlazingMaterials + t.OpaqueMaterials) - }, + materials={a.id: a for a in (t.GasMaterials + t.GlazingMaterials + t.OpaqueMaterials)}, allow_duplicates=True, ) for store in datastore["OpaqueConstructions"] @@ -375,10 +361,7 @@ def loads(cls, s, name): ) for store in datastore["StructureDefinitions"] ] - t.DaySchedules = [ - DaySchedule.from_dict(store, allow_duplicates=True) - for store in datastore["DaySchedules"] - ] + t.DaySchedules = [DaySchedule.from_dict(store, allow_duplicates=True) for store in datastore["DaySchedules"]] t.WeekSchedules = [ WeekSchedule.from_dict( store, @@ -440,9 +423,7 @@ def loads(cls, s, name): store, zone_conditionings={a.id: a for a in t.ZoneConditionings}, zone_construction_sets={a.id: a for a in t.ZoneConstructionSets}, - domestic_hot_water_settings={ - a.id: a for a in t.DomesticHotWaterSettings - }, + domestic_hot_water_settings={a.id: a for a in t.DomesticHotWaterSettings}, opaque_constructions={a.id: a for a in t.OpaqueConstructions}, zone_loads={a.id: a for a in t.ZoneLoads}, ventilation_settings={a.id: a for a in t.VentilationSettings}, @@ -644,9 +625,7 @@ def to_dict(self): return data_dict - def unique_components( - self, *args: str, exceptions: List[str] = None, keep_orphaned=False - ): + def unique_components(self, *args: str, exceptions: List[str] = None, keep_orphaned=False): """Keep only unique components. Starts by clearing all objects in self except self.BuildingTemplates. @@ -671,9 +650,7 @@ def unique_components( for bldg in self.BuildingTemplates: for obj in nx.dfs_preorder_nodes(G, bldg): connected_to_building.add(obj) - orphans = [ - obj for obj in self.object_list if obj not in connected_to_building - ] + orphans = [obj for obj in self.object_list if obj not in connected_to_building] self._clear_components_list(exceptions) # First clear components # Inclusion is a set of object classes that will be unique. @@ -695,9 +672,7 @@ def unique_components( for parent, key, obj in parent_key_child_traversal(component): if obj.__class__.__name__ + "s" in inclusion: if key: - setattr( - parent, key, obj.get_unique() - ) # set unique object on key + setattr(parent, key, obj.get_unique()) # set unique object on key self.update_components_list(exceptions=exceptions) # Update the components list if keep_orphaned: @@ -762,9 +737,7 @@ def to_graph(self, include_orphans=False): G.add_edge(parent, child) if include_orphans: - orphans = [ - obj for obj in self.object_list if obj.id not in (n.id for n in G) - ] + orphans = [obj for obj in self.object_list if obj.id not in (n.id for n in G)] for orphan in orphans: G.add_node(orphan) for parent, child in parent_child_traversal(orphan): diff --git a/archetypal/utils.py b/archetypal/utils.py index 7d2b8166c..5641b24f9 100644 --- a/archetypal/utils.py +++ b/archetypal/utils.py @@ -23,7 +23,7 @@ from path import Path from tqdm.auto import tqdm -from archetypal import settings +from . import settings def config( @@ -163,17 +163,15 @@ def get_logger(level=None, name=None, filename=None, log_dir=None): todays_date = dt.datetime.today().strftime("%Y_%m_%d") if not log_dir: - log_dir = settings.logs_folder + log_dir: Path = settings.logs_folder - log_filename = log_dir / "{}_{}.log".format(filename, todays_date) + log_filename = log_dir / f"{filename}_{todays_date}.log" # if the logs folder does not already exist, create it if not log_dir.exists(): - log_dir.makedirs_p() + os.mkdir(log_dir) # create file handler and log formatter and set them up - formatter = lg.Formatter( - "%(asctime)s [%(process)d] %(levelname)s - %(name)s - %(" "message)s" - ) + formatter = lg.Formatter("%(asctime)s [%(process)d] %(levelname)s - %(name)s - %(message)s") if settings.log_file: handler = lg.FileHandler(log_filename, encoding="utf-8") handler.setFormatter(formatter) @@ -234,8 +232,8 @@ def weighted_mean(series, df, weighting_variable): try: wa = np.average(series[index].astype("float"), weights=weights[index]) except ZeroDivisionError: - log("Cannot aggregate empty series {}".format(series.name), lg.WARNING) - return np.NaN + log(f"Cannot aggregate empty series {series.name}", lg.WARNING) + return np.nan except Exception: raise else: @@ -260,32 +258,26 @@ def top(series, df, weighting_variable): # Returns weights. If multiple `weighting_variable`, df.prod will take care # of multipling them together. if not isinstance(series, pd.Series): - raise TypeError( - '"top()" only works on Series, ' "not DataFrames\n{}".format(series) - ) + raise TypeError('"top()" only works on Series, ' f"not DataFrames\n{series}") if not isinstance(weighting_variable, list): weighting_variable = [weighting_variable] try: - idx_ = ( - df.loc[series.index] - .groupby(series.name) - .apply(lambda x: safe_prod(x, df, weighting_variable)) - ) + idx_ = df.loc[series.index].groupby(series.name).apply(lambda x: safe_prod(x, df, weighting_variable)) if not idx_.empty: idx = idx_.nlargest(1).index else: - log('No such names "{}"'.format(series.name)) - return np.NaN + log(f'No such names "{series.name}"') + return np.nan except KeyError: - log("Cannot aggregate empty series {}".format(series.name), lg.WARNING) - return np.NaN + log(f"Cannot aggregate empty series {series.name}", lg.WARNING) + return np.nan except Exception: raise else: if idx.isnull().any(): - return np.NaN + return np.nan else: return pd.to_numeric(idx, errors="ignore").values[0] @@ -339,16 +331,16 @@ def cd(path): Args: path: """ - log("initially inside {0}".format(os.getcwd())) + log(f"initially inside {os.getcwd()}") CWD = os.getcwd() os.chdir(path) - log("inside {0}".format(os.getcwd())) + log(f"inside {os.getcwd()}") try: yield finally: os.chdir(CWD) - log("finally inside {0}".format(os.getcwd())) + log(f"finally inside {os.getcwd()}") def load_umi_template(json_template): @@ -366,7 +358,7 @@ def load_umi_template(json_template): return [{key: pd.json_normalize(value)} for key, value in dicts.items()] else: - raise ValueError("File {} does not exist".format(json_template)) + raise ValueError(f"File {json_template} does not exist") def check_unique_name(first_letters, count, name, unique_list, suffix=False): @@ -461,10 +453,7 @@ def timed(*args, **kwargs): if tt > 0.001: log("Completed %r for %r in %.3f s" % (method.__qualname__, name, tt)) else: - log( - "Completed %r for %r in %.3f ms" - % (method.__qualname__, name, tt * 1000) - ) + log("Completed %r for %r in %.3f ms" % (method.__qualname__, name, tt * 1000)) return result return timed @@ -606,15 +595,9 @@ def parallel_process( if processors == 1: if use_kwargs: - out = { - filename: submit(function, **in_dict[filename]) - for filename in tqdm(in_dict, **kwargs) - } + out = {filename: submit(function, **in_dict[filename]) for filename in tqdm(in_dict, **kwargs)} else: - out = { - filename: submit(function, in_dict[filename]) - for filename in tqdm(in_dict, **kwargs) - } + out = {filename: submit(function, in_dict[filename]) for filename in tqdm(in_dict, **kwargs)} else: with _executor_factory( max_workers=processors, @@ -639,15 +622,9 @@ def parallel_process( out = {} if use_kwargs: - futures = { - executor.submit(function, **in_dict[filename]): filename - for filename in in_dict - } + futures = {executor.submit(function, **in_dict[filename]): filename for filename in in_dict} else: - futures = { - executor.submit(function, in_dict[filename]): filename - for filename in in_dict - } + futures = {executor.submit(function, in_dict[filename]): filename for filename in in_dict} # Print out the progress as tasks complete for future in tqdm(as_completed(futures), **kwargs): @@ -683,12 +660,10 @@ def is_referenced(name, epbunch, fieldname="Zone_or_ZoneList_Name"): elif refobj.key.upper() == "ZONE": return name in refobj.Name elif refobj.key.upper() == "ZONELIST": - from archetypal import settings, __version__ + from archetypal import __version__ raise NotImplementedError( - f"Checking against a ZoneList is " - f"not yet supported in archetypal " - f"v{__version__}" + f"Checking against a ZoneList is " f"not yet supported in archetypal " f"v{__version__}" ) raise ValueError( f"Invalid referring object returned while " diff --git a/archetypal/zone_graph.py b/archetypal/zone_graph.py index 0ab3a00c0..e45b3753d 100644 --- a/archetypal/zone_graph.py +++ b/archetypal/zone_graph.py @@ -81,9 +81,7 @@ def from_idf(cls, idf, log_adj_report=True, **kwargs): counter = 0 zone: EpBunch - for zone in tqdm( - idf.idfobjects["ZONE"], desc="zone_loop", position=idf.position, **kwargs - ): + for zone in tqdm(idf.idfobjects["ZONE"], desc="zone_loop", position=idf.position, **kwargs): # initialize the adjacency report dictionary. default list. adj_report = defaultdict(list) zone_obj = None @@ -107,16 +105,11 @@ def from_idf(cls, idf, log_adj_report=True, **kwargs): _is_core = is_core(zone) # create node for adjacent zone - G.add_node( - zone.Name, epbunch=adj_zone, core=_is_core, zone=zone_obj - ) + G.add_node(zone.Name, epbunch=adj_zone, core=_is_core, zone=zone_obj) try: this_cstr = surface["Construction_Name"] their_cstr = adj_surf["Construction_Name"] - is_diff_cstr = ( - surface["Construction_Name"] - != adj_surf["Construction_Name"] - ) + is_diff_cstr = surface["Construction_Name"] != adj_surf["Construction_Name"] except: this_cstr, their_cstr, is_diff_cstr = None, None, None # create edge from this zone to the adjacent zone @@ -128,9 +121,7 @@ def from_idf(cls, idf, log_adj_report=True, **kwargs): is_diff_cstr=is_diff_cstr, ) - add_to_report( - adj_report, zone, surface, adj_zone, adj_surf, counter - ) + add_to_report(adj_report, zone, surface, adj_zone, adj_surf, counter) else: pass if log_adj_report: @@ -138,7 +129,7 @@ def from_idf(cls, idf, log_adj_report=True, **kwargs): msg += tabulate.tabulate(adj_report, headers="keys") log(msg) - log("Created zone graph in {:,.2f} seconds".format(time.time() - start_time)) + log(f"Created zone graph in {time.time() - start_time:,.2f} seconds") log(networkx.info(G), lg.DEBUG) return G @@ -269,10 +260,7 @@ def avg(zone: EpBunch): # Define color range proportional to number of edges adjacent to a # single node - colors = { - i: matplotlib.colormaps.get_cmap(cmap)(self.degree[i] / edge_max) - for i in self.nodes - } + colors = {i: matplotlib.colormaps.get_cmap(cmap)(self.degree[i] / edge_max) for i in self.nodes} labels = {} if annotate: # annotate can be bool or str. @@ -282,22 +270,13 @@ def avg(zone: EpBunch): if isinstance(annotate, str): # create dict of the form {id: (x, y, z, label, zdir)}. zdir is # None by default. - labels = { - name: (*pos[name], data[annotate], None) - for name, data in self.nodes(data="epbunch") - } + labels = {name: (*pos[name], data[annotate], None) for name, data in self.nodes(data="epbunch")} if isinstance(annotate, tuple): data, key = annotate if key: - labels = { - name: (*pos[name], data[key], None) - for name, data in self.nodes(data=data) - } + labels = {name: (*pos[name], data[key], None) for name, data in self.nodes(data=data)} else: - labels = { - name: (*pos[name], data, None) - for name, data in self.nodes(data=data) - } + labels = {name: (*pos[name], data, None) for name, data in self.nodes(data=data)} # 3D network plot with plt.style.context(plt_style): @@ -516,9 +495,7 @@ def plot_graph2d( if legend: bbox = kwargs.get("bbox_to_anchor", (1, 1)) - legend1 = ax.legend( - title=color_nodes, bbox_to_anchor=bbox, markerscale=0.5 - ) + legend1 = ax.legend(title=color_nodes, bbox_to_anchor=bbox, markerscale=0.5) ax.add_artist(legend1) # clear axis @@ -574,7 +551,6 @@ def discrete_cmap(N, base_cmap=None): # Note that if base_cmap is a string or None, you can simply do # return matplotlib.colormaps.get_cmap(base_cmap, N) # The following works for string, None, or a colormap instance: - import matplotlib.pyplot as plt from numpy.core.function_base import linspace base = matplotlib.colormaps.get_cmap(base_cmap) diff --git a/combined.json b/combined.json index e23ddd873..eeee7f244 100644 --- a/combined.json +++ b/combined.json @@ -55,9 +55,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -84,9 +82,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -111,9 +107,7 @@ "Density": 1.2, "EmbodiedCarbon": 0.0, "EmbodiedEnergy": 0.0, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.0, "TransportDistance": 0.0, @@ -136,9 +130,7 @@ "Density": 1.2, "EmbodiedCarbon": 0.0, "EmbodiedEnergy": 0.0, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.0, "TransportDistance": 0.0, @@ -161,11 +153,7 @@ "Density": 1900.0, "EmbodiedCarbon": 0.18, "EmbodiedEnergy": 1.34, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -188,11 +176,7 @@ "Density": 1900.0, "EmbodiedCarbon": 0.18, "EmbodiedEnergy": 1.34, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -215,10 +199,7 @@ "Density": 2243.0, "EmbodiedCarbon": 0.59, "EmbodiedEnergy": 9.0, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -241,10 +222,7 @@ "Density": 2243.0, "EmbodiedCarbon": 0.59, "EmbodiedEnergy": 9.0, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -267,9 +245,7 @@ "Density": 1000.0, "EmbodiedCarbon": 0.22, "EmbodiedEnergy": 3.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -292,9 +268,7 @@ "Density": 1000.0, "EmbodiedCarbon": 0.22, "EmbodiedEnergy": 3.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -317,9 +291,7 @@ "Density": 880.0, "EmbodiedCarbon": 0.08, "EmbodiedEnergy": 0.71, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -342,9 +314,7 @@ "Density": 880.0, "EmbodiedCarbon": 0.08, "EmbodiedEnergy": 0.71, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -367,9 +337,7 @@ "Density": 2100.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -392,9 +360,7 @@ "Density": 2100.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -417,9 +383,7 @@ "Density": 2400.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -442,9 +406,7 @@ "Density": 2400.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -467,9 +429,7 @@ "Density": 12.0, "EmbodiedCarbon": 1.35, "EmbodiedEnergy": 28.0, - "SubstitutionRatePattern": [ - 0.5 - ], + "SubstitutionRatePattern": [0.5], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -492,9 +452,7 @@ "Density": 12.0, "EmbodiedCarbon": 1.35, "EmbodiedEnergy": 28.0, - "SubstitutionRatePattern": [ - 0.5 - ], + "SubstitutionRatePattern": [0.5], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -517,11 +475,7 @@ "Density": 950.0, "EmbodiedCarbon": 0.38, "EmbodiedEnergy": 6.75, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -544,11 +498,7 @@ "Density": 950.0, "EmbodiedCarbon": 0.38, "EmbodiedEnergy": 6.75, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -571,11 +521,7 @@ "Density": 900.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 3.2, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -598,11 +544,7 @@ "Density": 900.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 3.2, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -625,9 +567,7 @@ "Density": 540.0, "EmbodiedCarbon": 0.81, "EmbodiedEnergy": 15.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -650,9 +590,7 @@ "Density": 540.0, "EmbodiedCarbon": 0.81, "EmbodiedEnergy": 15.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -675,11 +613,7 @@ "Density": 496.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.5, - "SubstitutionRatePattern": [ - 0.1, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.1, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -702,11 +636,7 @@ "Density": 496.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.5, - "SubstitutionRatePattern": [ - 0.1, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.1, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -729,9 +659,7 @@ "Density": 7830.0, "EmbodiedCarbon": 1.37, "EmbodiedEnergy": 20.1, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -754,9 +682,7 @@ "Density": 7830.0, "EmbodiedCarbon": 1.37, "EmbodiedEnergy": 20.1, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -779,9 +705,7 @@ "Density": 110.0, "EmbodiedCarbon": 3.89, "EmbodiedEnergy": 74.4, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 5.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -804,9 +728,7 @@ "Density": 110.0, "EmbodiedCarbon": 3.89, "EmbodiedEnergy": 74.4, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 5.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -829,9 +751,7 @@ "Density": 1380.0, "EmbodiedCarbon": 2.41, "EmbodiedEnergy": 77.2, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -854,9 +774,7 @@ "Density": 1380.0, "EmbodiedCarbon": 2.41, "EmbodiedEnergy": 77.2, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -879,10 +797,7 @@ "Density": 650.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.4, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -905,10 +820,7 @@ "Density": 650.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.4, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -931,11 +843,7 @@ "Density": 40.0, "EmbodiedCarbon": 2.7, "EmbodiedEnergy": 86.4, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -958,11 +866,7 @@ "Density": 40.0, "EmbodiedCarbon": 2.7, "EmbodiedEnergy": 86.4, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -2745,30 +2649,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2779,30 +2661,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2813,30 +2673,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2847,30 +2685,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2881,30 +2697,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.4, 0.4, 0.4, 0.6, 0.6, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.4, 0.2, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2915,30 +2709,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.4, 0.4, 0.4, 0.6, 0.6, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.4, 0.2, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2949,30 +2721,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2983,30 +2733,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3017,30 +2745,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3051,30 +2757,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3085,30 +2769,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3119,30 +2781,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3153,30 +2793,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 0.5, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3187,30 +2805,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 0.5, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3221,30 +2817,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3255,30 +2829,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3289,30 +2841,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3323,30 +2853,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3357,30 +2865,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3391,30 +2877,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3425,30 +2889,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 1.0, 1.0, 1.0, 1.0, 0.5, 1.0, + 1.0, 1.0, 1.0, 0.3, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3459,30 +2901,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 1.0, 1.0, 1.0, 1.0, 0.5, 1.0, + 1.0, 1.0, 1.0, 0.3, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3493,30 +2913,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3527,30 +2925,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3561,30 +2937,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3595,30 +2949,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3629,30 +2961,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3663,30 +2973,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3697,30 +2985,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3731,30 +2997,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3765,30 +3009,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3799,30 +3021,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3833,30 +3033,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3867,30 +3045,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3901,30 +3057,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3935,30 +3069,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3969,30 +3081,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4003,30 +3093,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4037,30 +3105,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4071,30 +3117,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4105,30 +3129,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4139,30 +3141,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4173,30 +3153,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.5, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.5, 0.2, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -4207,30 +3165,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.5, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.5, 0.2, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -4241,30 +3177,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -4275,30 +3189,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -4309,30 +3201,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4343,30 +3213,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4377,30 +3225,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4411,30 +3237,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4445,30 +3249,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, + 0.3, 0.3, 0.3, 0.7, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4479,30 +3261,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, + 0.3, 0.3, 0.3, 0.7, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4513,30 +3273,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.7, - 0.7, - 0.7, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 0.7, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, + 0.7, 0.3, 0.3, 0.3, 0.3, 0.7, 0.7, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4547,30 +3285,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.7, - 0.7, - 0.7, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 0.7, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, + 0.7, 0.3, 0.3, 0.3, 0.3, 0.7, 0.7, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -4581,30 +3297,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4615,30 +3309,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4649,30 +3321,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.6, 1.0, 1.0, 0.8, 0.8, 0.6, 0.6 ], "Comments": "default", "DataSource": "default", @@ -4683,30 +3333,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.6, 1.0, 1.0, 0.8, 0.8, 0.6, 0.6 ], "Comments": "default", "DataSource": "default", @@ -4717,30 +3345,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.2, - 0.2, - 0.2, - 0.2, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, + 0.6, 0.2, 0.2, 0.2, 0.2, 1.0, 1.0, 0.8, 0.8, 0.6 ], "Comments": "default", "DataSource": "default", @@ -4751,30 +3357,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.2, - 0.2, - 0.2, - 0.2, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, + 0.6, 0.2, 0.2, 0.2, 0.2, 1.0, 1.0, 0.8, 0.8, 0.6 ], "Comments": "default", "DataSource": "default", @@ -4785,30 +3369,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4819,30 +3381,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4853,30 +3393,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4887,30 +3405,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4921,30 +3417,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.3, - 0.4, - 0.6, - 0.6, - 0.6, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.3, - 0.3, - 0.2, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.3, 0.4, 0.6, 0.6, 0.6, + 0.5, 0.5, 0.5, 0.5, 0.5, 0.3, 0.3, 0.2, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4955,30 +3429,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.3, - 0.4, - 0.6, - 0.6, - 0.6, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.3, - 0.3, - 0.2, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.3, 0.4, 0.6, 0.6, 0.6, + 0.5, 0.5, 0.5, 0.5, 0.5, 0.3, 0.3, 0.2, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4989,30 +3441,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.3, - 0.3, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.3, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.3, 0.3, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5023,30 +3453,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.3, - 0.3, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.3, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.3, 0.3, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5057,30 +3465,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5091,30 +3477,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5125,30 +3489,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5159,30 +3501,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5193,30 +3513,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5227,30 +3525,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5261,30 +3537,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5295,30 +3549,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5329,30 +3561,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.6, - 0.6, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.6, - 0.6, - 0.4, - 0.4, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.6, 0.6, 0.8, 0.8, 0.8, + 0.8, 0.8, 0.8, 0.6, 0.6, 0.4, 0.4, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5363,30 +3573,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.6, - 0.6, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.6, - 0.6, - 0.4, - 0.4, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.6, 0.6, 0.8, 0.8, 0.8, + 0.8, 0.8, 0.8, 0.6, 0.6, 0.4, 0.4, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5397,30 +3585,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.2, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5431,30 +3597,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.2, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5465,30 +3609,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5499,30 +3621,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -5533,30 +3633,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.6, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.6, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -5567,30 +3645,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.6, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.6, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -5601,30 +3657,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.2, 0.4, 0.4, 0.6, 0.6, + 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -5635,30 +3669,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.2, 0.4, 0.4, 0.6, 0.6, + 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -8238,7 +6250,7 @@ }, { "$id": "160", - "FlowRatePerFloorArea": 6e-05, + "FlowRatePerFloorArea": 6e-5, "IsOn": true, "WaterSchedule": { "$ref": "155" @@ -8252,7 +6264,7 @@ }, { "$id": "2474549357152", - "FlowRatePerFloorArea": 6e-05, + "FlowRatePerFloorArea": 6e-5, "IsOn": true, "WaterSchedule": { "$ref": "2474549786688" @@ -9447,18 +7459,10 @@ "Name": "B_Off_0", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9482,18 +7486,10 @@ "Name": "B_Off_1", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9517,18 +7513,10 @@ "Name": "B_Res_0_Masonry", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9552,18 +7540,10 @@ "Name": "B_Res_0_Masonry_1", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9587,18 +7567,10 @@ "Name": "B_Res_0_WoodFrame", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9622,18 +7594,10 @@ "Name": "B_Res_0_WoodFrame_1", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9657,18 +7621,10 @@ "Name": "B_Ret_0", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -9692,19 +7648,11 @@ "Name": "B_Ret_1", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" } ] -} \ No newline at end of file +} diff --git a/docs/_static/copybutton.js b/docs/_static/copybutton.js index 01ee2bab3..9d7bb78ef 100644 --- a/docs/_static/copybutton.js +++ b/docs/_static/copybutton.js @@ -1,66 +1,87 @@ // Copyright 2014 PSF. Licensed under the PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 // File originates from the cpython source found in Doc/tools/sphinxext/static/copybutton.js -$(document).ready(function() { - /* Add a [>>>] button on the top-right corner of code samples to hide - * the >>> and ... prompts and the output and thus make the code - * copyable. */ - var div = $('.highlight-python .highlight,' + - '.highlight-default .highlight,' + - '.highlight-python3 .highlight') - var pre = div.find('pre'); +$(document).ready(function () { + /* Add a [>>>] button on the top-right corner of code samples to hide + * the >>> and ... prompts and the output and thus make the code + * copyable. */ + var div = $( + ".highlight-python .highlight," + + ".highlight-default .highlight," + + ".highlight-python3 .highlight", + ); + var pre = div.find("pre"); - // get the styles from the current theme - pre.parent().parent().css('position', 'relative'); - var hide_text = 'Hide the prompts and output'; - var show_text = 'Show the prompts and output'; - var border_width = pre.css('border-top-width'); - var border_style = pre.css('border-top-style'); - var border_color = pre.css('border-top-color'); - var button_styles = { - 'cursor':'pointer', 'position': 'absolute', 'top': '0', 'right': '0', - 'border-color': border_color, 'border-style': border_style, - 'border-width': border_width, 'color': border_color, 'text-size': '75%', - 'font-family': 'monospace', 'padding-left': '0.2em', 'padding-right': '0.2em', - 'border-radius': '0 3px 0 0' - } + // get the styles from the current theme + pre.parent().parent().css("position", "relative"); + var hide_text = "Hide the prompts and output"; + var show_text = "Show the prompts and output"; + var border_width = pre.css("border-top-width"); + var border_style = pre.css("border-top-style"); + var border_color = pre.css("border-top-color"); + var button_styles = { + cursor: "pointer", + position: "absolute", + top: "0", + right: "0", + "border-color": border_color, + "border-style": border_style, + "border-width": border_width, + color: border_color, + "text-size": "75%", + "font-family": "monospace", + "padding-left": "0.2em", + "padding-right": "0.2em", + "border-radius": "0 3px 0 0", + }; - // create and add the button to all the code blocks that contain >>> - div.each(function(index) { - var jthis = $(this); - if (jthis.find('.gp').length > 0) { - var button = $('>>>'); - button.css(button_styles) - button.attr('title', hide_text); - button.data('hidden', 'false'); - jthis.prepend(button); - } - // tracebacks (.gt) contain bare text elements that need to be - // wrapped in a span to work with .nextUntil() (see later) - jthis.find('pre:has(.gt)').contents().filter(function() { - return ((this.nodeType == 3) && (this.data.trim().length > 0)); - }).wrap(''); - }); + // create and add the button to all the code blocks that contain >>> + div.each(function (index) { + var jthis = $(this); + if (jthis.find(".gp").length > 0) { + var button = $('>>>'); + button.css(button_styles); + button.attr("title", hide_text); + button.data("hidden", "false"); + jthis.prepend(button); + } + // tracebacks (.gt) contain bare text elements that need to be + // wrapped in a span to work with .nextUntil() (see later) + jthis + .find("pre:has(.gt)") + .contents() + .filter(function () { + return this.nodeType == 3 && this.data.trim().length > 0; + }) + .wrap(""); + }); - // define the behavior of the button when it's clicked - $('.copybutton').click(function(e){ - e.preventDefault(); - var button = $(this); - if (button.data('hidden') === 'false') { - // hide the code output - button.parent().find('.go, .gp, .gt').hide(); - button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'hidden'); - button.css('text-decoration', 'line-through'); - button.attr('title', show_text); - button.data('hidden', 'true'); - } else { - // show the code output - button.parent().find('.go, .gp, .gt').show(); - button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'visible'); - button.css('text-decoration', 'none'); - button.attr('title', hide_text); - button.data('hidden', 'false'); - } - }); + // define the behavior of the button when it's clicked + $(".copybutton").click(function (e) { + e.preventDefault(); + var button = $(this); + if (button.data("hidden") === "false") { + // hide the code output + button.parent().find(".go, .gp, .gt").hide(); + button + .next("pre") + .find(".gt") + .nextUntil(".gp, .go") + .css("visibility", "hidden"); + button.css("text-decoration", "line-through"); + button.attr("title", show_text); + button.data("hidden", "true"); + } else { + // show the code output + button.parent().find(".go, .gp, .gt").show(); + button + .next("pre") + .find(".gt") + .nextUntil(".gp, .go") + .css("visibility", "visible"); + button.css("text-decoration", "none"); + button.attr("title", hide_text); + button.data("hidden", "false"); + } + }); }); - diff --git a/docs/_static/name_equivalence.csv b/docs/_static/name_equivalence.csv index 69c6db279..1ac75eca1 100644 --- a/docs/_static/name_equivalence.csv +++ b/docs/_static/name_equivalence.csv @@ -105,4 +105,4 @@ Pump:ConstantSpeed,pcs LifeCycleCost:Parameters,lccp LifeCycleCost:NonrecurringCost,lccn UtilityCost:Tariff,uct -UtilityCost:Variable,ucv \ No newline at end of file +UtilityCost:Variable,ucv diff --git a/docs/_templates/autosummary-noinherit.rst b/docs/_templates/autosummary-noinherit.rst index dd48b464b..aa00e5741 100644 --- a/docs/_templates/autosummary-noinherit.rst +++ b/docs/_templates/autosummary-noinherit.rst @@ -6,6 +6,3 @@ .. auto{{ objtype }}:: {{ objname }} {% if objtype in ['class'] %} :members: {% endif %} - - - diff --git a/docs/_templates/autosummary.rst b/docs/_templates/autosummary.rst index 58b1c75b8..28b4a2d80 100644 --- a/docs/_templates/autosummary.rst +++ b/docs/_templates/autosummary.rst @@ -7,6 +7,3 @@ :members: :inherited-members: {% endif %} - - - diff --git a/docs/conf.py b/docs/conf.py index 6252d3de0..7b27fe52b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # # Configuration file for the Sphinx documentation builder. # @@ -25,7 +24,7 @@ # -- Project information ----------------------------------------------------- project = "archetypal" -copyright = "{}, Samuel Letellier-Duchesne".format(datetime.datetime.now().year) +copyright = f"{datetime.datetime.now().year}, Samuel Letellier-Duchesne" author = "Samuel Letellier-Duchesne" # The full version, including alpha/beta/rc tags diff --git a/docs/converter_umi.rst b/docs/converter_umi.rst index c5060484d..7c62fe5e0 100644 --- a/docs/converter_umi.rst +++ b/docs/converter_umi.rst @@ -89,4 +89,3 @@ EnergyPlus. >>> name="my_umi_template", >>> BuildingTemplates=[template_obj] >>> ).to_dict() - diff --git a/docs/creating_umi_template.rst b/docs/creating_umi_template.rst index 7e618cf81..d751c23f3 100644 --- a/docs/creating_umi_template.rst +++ b/docs/creating_umi_template.rst @@ -926,4 +926,4 @@ Creating Umi template .. _ZoneLoad: https://archetypal.readthedocs.io/en/develop/reference/archetypal.template.ZoneLoad.html .. _Zone: https://archetypal.readthedocs.io/en/develop/reference/archetypal.template.Zone.html .. _BuildingTemplate: https://archetypal.readthedocs.io/en/develop/reference/archetypal.template.BuildingTemplate.html -.. _UmiTemplate: https://archetypal.readthedocs.io/en/develop/reference/archetypal.umi_template.UmiTemplateLibrary.html \ No newline at end of file +.. _UmiTemplate: https://archetypal.readthedocs.io/en/develop/reference/archetypal.umi_template.UmiTemplateLibrary.html diff --git a/docs/examples/doe_conversion.py b/docs/examples/doe_conversion.py index 28bd69999..cc8538005 100644 --- a/docs/examples/doe_conversion.py +++ b/docs/examples/doe_conversion.py @@ -7,15 +7,11 @@ from archetypal.umi_template import UmiTemplateLibrary if __name__ == "__main__": - basepath = Path( - r"C:\Users\samueld\Dropbox (Personal)\MIT\PostDoc\research\umiverse\template library\usa" - ) + basepath = Path(r"C:\Users\samueld\Dropbox (Personal)\MIT\PostDoc\research\umiverse\template library\usa") zone = "6A" os.chdir(basepath / zone) - epw = next( - iter(Path(rf"../refbldgs-v1.3_5.0-weather_files_tmy2").files(f"{zone}*.epw")) - ) + epw = next(iter(Path(r"../refbldgs-v1.3_5.0-weather_files_tmy2").files(f"{zone}*.epw"))) # Change the template list with names of archetypes to convert templates = [ @@ -35,9 +31,7 @@ idf_files.extend(Path(".").files(f"*{name}*.idf")) # Create the Template Library File - umi = UmiTemplateLibrary.from_idf_files( - idf_files, weather=epw, name=f"refbldgs_{zone}", processors=-1 - ) + umi = UmiTemplateLibrary.from_idf_files(idf_files, weather=epw, name=f"refbldgs_{zone}", processors=-1) # Adjust metadata for template in umi.BuildingTemplates: diff --git a/docs/install.rst b/docs/install.rst index a4d884728..391e52329 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -184,4 +184,4 @@ will work well to create a new environment using a specific dependency file in o .. _download: https://github.com/NREL/EnergyPlus/releases/tag/v9.2.0 .. _supplementary conversion programs: http://energyplus.helpserve.com/Knowledgebase/List/Index/46/converting-older-version-files .. _script: https://gist.github.com/samuelduchesne/aef233396167e0f961df3d62a193573e -.. _environment.yml: https://github.com/samuelduchesne/archetypal/blob/main/environment.yml \ No newline at end of file +.. _environment.yml: https://github.com/samuelduchesne/archetypal/blob/main/environment.yml diff --git a/docs/package_modules.rst b/docs/package_modules.rst index 5d201c798..35ccc8a39 100644 --- a/docs/package_modules.rst +++ b/docs/package_modules.rst @@ -208,4 +208,4 @@ Utils lcm recursive_len rotate - parallel_process \ No newline at end of file + parallel_process diff --git a/docs/reading_idf.rst b/docs/reading_idf.rst index 66e9bc4a6..8748ad96c 100644 --- a/docs/reading_idf.rst +++ b/docs/reading_idf.rst @@ -72,4 +72,4 @@ For the same IDF object above: :func:`~archetypal.idfclass.idf.IDF.htm()` which parse the simulation results. This caching system will save simulation results in a folder identified by a unique identifier. This identifier is based on the content of the IDF file, as well as EnergyPlus simulate options. This system works by invalidating any dependant attributes when - independent attributes change. \ No newline at end of file + independent attributes change. diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index db2337ab2..6cdd7a31d 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -35,4 +35,4 @@ steps: :scale: 150 % :align: center -.. _Knowledgebase: http://energyplus.helpserve.com/Knowledgebase/List/Index/46/converting-older-version-files \ No newline at end of file +.. _Knowledgebase: http://energyplus.helpserve.com/Knowledgebase/List/Index/46/converting-older-version-files diff --git a/docs/tutorials/edit_umitemplate.rst b/docs/tutorials/edit_umitemplate.rst index 4896e4a25..5c9b7ab8d 100644 --- a/docs/tutorials/edit_umitemplate.rst +++ b/docs/tutorials/edit_umitemplate.rst @@ -46,4 +46,4 @@ Plot the hierarchy of of an UmiTempalteLIbrary print("rank = same; " + "; ".join((f'"{v}"' for v in values)) +";") plt.show() fig.tight_layout() - fig.savefig("template.pdf") \ No newline at end of file + fig.savefig("template.pdf") diff --git a/docs/tutorials/parallel_process.rst b/docs/tutorials/parallel_process.rst index 972024328..551379f6c 100644 --- a/docs/tutorials/parallel_process.rst +++ b/docs/tutorials/parallel_process.rst @@ -83,4 +83,4 @@ keys as the index of the DataFrame. 12: Path('cache/5dd643faf859ed1aed5adffcecd0d47c/output_data/5dd643faf859ed1aed5adffcecd0d47cout.sql'), 13: Path('cache/e7cf6ae2be8917a409c9a1acad3bc349/output_data/e7cf6ae2be8917a409c9a1acad3bc349out.sql'), 14: Path('cache/3f122e04f7d8d19195cb8818a0be390f/output_data/3f122e04f7d8d19195cb8818a0be390fout.sql'), - 15: Path('cache/d263b5b5d3bc56f2fb3795c61ac89cfe/output_data/d263b5b5d3bc56f2fb3795c61ac89cfeout.sql')} \ No newline at end of file + 15: Path('cache/d263b5b5d3bc56f2fb3795c61ac89cfe/output_data/d263b5b5d3bc56f2fb3795c61ac89cfeout.sql')} diff --git a/docs/tutorials/schedules.rst b/docs/tutorials/schedules.rst index 9d649c800..2398039ef 100644 --- a/docs/tutorials/schedules.rst +++ b/docs/tutorials/schedules.rst @@ -40,4 +40,4 @@ method. For example, .. code-block:: python - >>> this_schedule.plot(slice=("2018/01/02", "2018/01/03"), drawstyle="steps-post") \ No newline at end of file + >>> this_schedule.plot(slice=("2018/01/02", "2018/01/03"), drawstyle="steps-post") diff --git a/docs/unix_users.rst b/docs/unix_users.rst index d72bd837f..ab895b73b 100644 --- a/docs/unix_users.rst +++ b/docs/unix_users.rst @@ -57,4 +57,4 @@ You can find the executable trnsidf.exe in the TRNSYS default installation folde `C:\\TRNSYS18\\Building\\trnsIDF` -.. _Wine: https://www.winehq.org/ \ No newline at end of file +.. _Wine: https://www.winehq.org/ diff --git a/environment.yml b/environment.yml index 15418f25b..ba38b8919 100644 --- a/environment.yml +++ b/environment.yml @@ -2,9 +2,9 @@ name: archetypal channels: - conda-forge dependencies: - - python=3.8 # because of Coolprop + - python=3.8 # because of Coolprop - networkx=2.6.* - - matplotlib=3.4.* # because of TwoSlopesNorm + - matplotlib=3.4.* # because of TwoSlopesNorm - requests=2.25.* - pycountry=20.7.* - scikit-learn=0.24.* @@ -15,15 +15,15 @@ dependencies: - path=16.0.* - click=8.0.* - outdated=0.2.* - - shapely # needs to be installed correctly on Windows + - shapely # needs to be installed correctly on Windows - pip - pip: - - eppy==0.5.56 # for stability - - geomeppy==0.11.8 - - sigfig~=1.1.9 - - validator_collection~=1.5.0 - - energy-pandas~=0.3.2 - - CoolProp~=6.4.1 - - setuptools~=56.2.0 - - deprecation~=2.1.0 - - -r requirements-dev.txt # Install dev dependencies for good measure \ No newline at end of file + - eppy==0.5.56 # for stability + - geomeppy==0.11.8 + - sigfig~=1.1.9 + - validator_collection~=1.5.0 + - energy-pandas~=0.3.2 + - CoolProp~=6.4.1 + - setuptools~=56.2.0 + - deprecation~=2.1.0 + - -r requirements-dev.txt # Install dev dependencies for good measure diff --git a/meta.yaml b/meta.yaml deleted file mode 100644 index 3adcb821a..000000000 --- a/meta.yaml +++ /dev/null @@ -1,52 +0,0 @@ -{% set name = "archetypal" %} -{% set version = "0.9" %} -{% set sha256 = "3e97f799769469412b12b8d71cc2342d0c93c9f6ea4ca36366c415eef9fbe344" %} - -package: - name: {{ name }} - version: {{ version }} - -#source: -# fn: {{ name }}-{{ version }}.tar.gz -# url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz -# sha256: {{ sha256 }} - -build: - noarch: python - number: 0 - script: python -m pip install --no-deps --ignore-installed . - -requirements: - build: - - python - - pip - run: - - python - - requests - - numpy - - pandas - - matplotlib - - shapely - - descartes - - geopy - - rtree - - folium - -test: - imports: - - archetypal - -about: - home: https://github.com/samuelduchesne/archetypal - license: MIT - license_family: MIT - license_file: LICENSE.txt - summary: 'Retrieve, construct, analyze, and visualize street networks from OpenStreetMap' - description: | - archetypal is a Python package. - doc_url: https://archetypal.readthedocs.io - dev_url: https://github.com/samuelduchesne/archetypal - -extra: - recipe-maintainers: - - samuelduchesne \ No newline at end of file diff --git a/paper/paper.md b/paper/paper.md index b0dfb7f0c..10712725a 100644 --- a/paper/paper.md +++ b/paper/paper.md @@ -1,6 +1,7 @@ --- -title: 'archetypal: A Python package for collecting, simulating, converting and analyzing - building archetypes' +title: + "archetypal: A Python package for collecting, simulating, converting and analyzing + building archetypes" tags: - Python - Building Energy Model @@ -15,8 +16,8 @@ authors: - name: Louis Leroy affiliation: 1 affiliations: - - name: Department of Mechanical Engineering, Polytechnique Montrรฉal, Montrรฉal, Canada - index: 1 + - name: Department of Mechanical Engineering, Polytechnique Montrรฉal, Montrรฉal, Canada + index: 1 date: 8 October 2019 bibliography: paper.bib --- @@ -43,7 +44,7 @@ capabilities for researchers and practitioners: 2. Convert [EnergyPlus](https://energyplus.net) models to [UMI Template Files](http://web.mit.edu/sustainabledesignlab/projects/umi/index.html); 3. Edit [UMI Template Files](http://web.mit.edu/sustainabledesignlab/projects/umi/index.html) in a scripting environment. 4. Convert [EnergyPlus](https://energyplus.net) models to TRNSYS [TrnBuild](http://www.trnsys.com/features/suite-of-tools.php) Models. - + ## EnergyPlus Simulation Environment `archetypal` leverages the Python Eppy [@Philip2004] and GeomEppy [@Bull2016] packages to diff --git a/poetry.lock b/poetry.lock index c7f767f61..a70d29bb3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -44,24 +44,35 @@ doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphin test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] trio = ["trio (>=0.23)"] +[[package]] +name = "appdirs" +version = "1.4.4" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = "*" +files = [ + {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, + {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, +] + [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "autodoc-pydantic" @@ -88,13 +99,13 @@ type-checking = ["mypy (>=1.9,<2.0)", "types-docutils (>=0.20,<0.21)", "typing-e [[package]] name = "babel" -version = "2.15.0" +version = "2.16.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" files = [ - {file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"}, - {file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.extras] @@ -119,15 +130,48 @@ soupsieve = ">=1.2" html5lib = ["html5lib"] lxml = ["lxml"] +[[package]] +name = "cachetools" +version = "5.5.0" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, +] + [[package]] name = "certifi" -version = "2024.6.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"}, - {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +description = "Validate configuration and produce human readable error messages." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, + {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, +] + +[[package]] +name = "chardet" +version = "5.2.0" +description = "Universal encoding detector for Python 3" +optional = false +python-versions = ">=3.7" +files = [ + {file = "chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"}, + {file = "chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7"}, ] [[package]] @@ -270,66 +314,87 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] [[package]] name = "contourpy" -version = "1.2.1" +version = "1.3.0" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false python-versions = ">=3.9" files = [ - {file = "contourpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bd7c23df857d488f418439686d3b10ae2fbf9bc256cd045b37a8c16575ea1040"}, - {file = "contourpy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5b9eb0ca724a241683c9685a484da9d35c872fd42756574a7cfbf58af26677fd"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c75507d0a55378240f781599c30e7776674dbaf883a46d1c90f37e563453480"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11959f0ce4a6f7b76ec578576a0b61a28bdc0696194b6347ba3f1c53827178b9"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb3315a8a236ee19b6df481fc5f997436e8ade24a9f03dfdc6bd490fea20c6da"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39f3ecaf76cd98e802f094e0d4fbc6dc9c45a8d0c4d185f0f6c2234e14e5f75b"}, - {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:94b34f32646ca0414237168d68a9157cb3889f06b096612afdd296003fdd32fd"}, - {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:457499c79fa84593f22454bbd27670227874cd2ff5d6c84e60575c8b50a69619"}, - {file = "contourpy-1.2.1-cp310-cp310-win32.whl", hash = "sha256:ac58bdee53cbeba2ecad824fa8159493f0bf3b8ea4e93feb06c9a465d6c87da8"}, - {file = "contourpy-1.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9cffe0f850e89d7c0012a1fb8730f75edd4320a0a731ed0c183904fe6ecfc3a9"}, - {file = "contourpy-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6022cecf8f44e36af10bd9118ca71f371078b4c168b6e0fab43d4a889985dbb5"}, - {file = "contourpy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef5adb9a3b1d0c645ff694f9bca7702ec2c70f4d734f9922ea34de02294fdf72"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6150ffa5c767bc6332df27157d95442c379b7dce3a38dff89c0f39b63275696f"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4c863140fafc615c14a4bf4efd0f4425c02230eb8ef02784c9a156461e62c965"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00e5388f71c1a0610e6fe56b5c44ab7ba14165cdd6d695429c5cd94021e390b2"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4492d82b3bc7fbb7e3610747b159869468079fe149ec5c4d771fa1f614a14df"}, - {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:49e70d111fee47284d9dd867c9bb9a7058a3c617274900780c43e38d90fe1205"}, - {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b59c0ffceff8d4d3996a45f2bb6f4c207f94684a96bf3d9728dbb77428dd8cb8"}, - {file = "contourpy-1.2.1-cp311-cp311-win32.whl", hash = "sha256:7b4182299f251060996af5249c286bae9361fa8c6a9cda5efc29fe8bfd6062ec"}, - {file = "contourpy-1.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2855c8b0b55958265e8b5888d6a615ba02883b225f2227461aa9127c578a4922"}, - {file = "contourpy-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:62828cada4a2b850dbef89c81f5a33741898b305db244904de418cc957ff05dc"}, - {file = "contourpy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:309be79c0a354afff9ff7da4aaed7c3257e77edf6c1b448a779329431ee79d7e"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e785e0f2ef0d567099b9ff92cbfb958d71c2d5b9259981cd9bee81bd194c9a4"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cac0a8f71a041aa587410424ad46dfa6a11f6149ceb219ce7dd48f6b02b87a7"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af3f4485884750dddd9c25cb7e3915d83c2db92488b38ccb77dd594eac84c4a0"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ce6889abac9a42afd07a562c2d6d4b2b7134f83f18571d859b25624a331c90b"}, - {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a1eea9aecf761c661d096d39ed9026574de8adb2ae1c5bd7b33558af884fb2ce"}, - {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:187fa1d4c6acc06adb0fae5544c59898ad781409e61a926ac7e84b8f276dcef4"}, - {file = "contourpy-1.2.1-cp312-cp312-win32.whl", hash = "sha256:c2528d60e398c7c4c799d56f907664673a807635b857df18f7ae64d3e6ce2d9f"}, - {file = "contourpy-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:1a07fc092a4088ee952ddae19a2b2a85757b923217b7eed584fdf25f53a6e7ce"}, - {file = "contourpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb6834cbd983b19f06908b45bfc2dad6ac9479ae04abe923a275b5f48f1a186b"}, - {file = "contourpy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1d59e739ab0e3520e62a26c60707cc3ab0365d2f8fecea74bfe4de72dc56388f"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd3db01f59fdcbce5b22afad19e390260d6d0222f35a1023d9adc5690a889364"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a12a813949e5066148712a0626895c26b2578874e4cc63160bb007e6df3436fe"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe0ccca550bb8e5abc22f530ec0466136379c01321fd94f30a22231e8a48d985"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1d59258c3c67c865435d8fbeb35f8c59b8bef3d6f46c1f29f6123556af28445"}, - {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f32c38afb74bd98ce26de7cc74a67b40afb7b05aae7b42924ea990d51e4dac02"}, - {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d31a63bc6e6d87f77d71e1abbd7387ab817a66733734883d1fc0021ed9bfa083"}, - {file = "contourpy-1.2.1-cp39-cp39-win32.whl", hash = "sha256:ddcb8581510311e13421b1f544403c16e901c4e8f09083c881fab2be80ee31ba"}, - {file = "contourpy-1.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:10a37ae557aabf2509c79715cd20b62e4c7c28b8cd62dd7d99e5ed3ce28c3fd9"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a31f94983fecbac95e58388210427d68cd30fe8a36927980fab9c20062645609"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef2b055471c0eb466033760a521efb9d8a32b99ab907fc8358481a1dd29e3bd3"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b33d2bc4f69caedcd0a275329eb2198f560b325605810895627be5d4b876bf7f"}, - {file = "contourpy-1.2.1.tar.gz", hash = "sha256:4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c"}, + {file = "contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7"}, + {file = "contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41"}, + {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d"}, + {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223"}, + {file = "contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f"}, + {file = "contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b"}, + {file = "contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad"}, + {file = "contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d"}, + {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c"}, + {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb"}, + {file = "contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c"}, + {file = "contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67"}, + {file = "contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f"}, + {file = "contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09"}, + {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd"}, + {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35"}, + {file = "contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb"}, + {file = "contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b"}, + {file = "contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3"}, + {file = "contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da"}, + {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14"}, + {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8"}, + {file = "contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294"}, + {file = "contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087"}, + {file = "contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8"}, + {file = "contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6"}, + {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2"}, + {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927"}, + {file = "contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8"}, + {file = "contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2"}, + {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e"}, + {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800"}, + {file = "contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5"}, + {file = "contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb"}, + {file = "contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4"}, ] [package.dependencies] -numpy = ">=1.20" +numpy = ">=1.23" [package.extras] bokeh = ["bokeh", "selenium"] docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.8.0)", "types-Pillow"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.11.1)", "types-Pillow"] test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] -test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] +test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"] [[package]] name = "coolprop" @@ -397,63 +462,83 @@ files = [ [[package]] name = "coverage" -version = "7.5.3" +version = "7.6.1" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45"}, - {file = "coverage-7.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c"}, - {file = "coverage-7.5.3-cp310-cp310-win32.whl", hash = "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84"}, - {file = "coverage-7.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614"}, - {file = "coverage-7.5.3-cp311-cp311-win32.whl", hash = "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9"}, - {file = "coverage-7.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84"}, - {file = "coverage-7.5.3-cp312-cp312-win32.whl", hash = "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08"}, - {file = "coverage-7.5.3-cp312-cp312-win_amd64.whl", hash = "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0"}, - {file = "coverage-7.5.3-cp38-cp38-win32.whl", hash = "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485"}, - {file = "coverage-7.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd"}, - {file = "coverage-7.5.3-cp39-cp39-win32.whl", hash = "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d"}, - {file = "coverage-7.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0"}, - {file = "coverage-7.5.3-pp38.pp39.pp310-none-any.whl", hash = "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884"}, - {file = "coverage-7.5.3.tar.gz", hash = "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, + {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, + {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, + {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, + {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, + {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, + {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, + {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, + {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, + {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, + {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, + {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, + {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, + {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, + {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, + {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, + {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, ] [package.dependencies] @@ -502,6 +587,17 @@ files = [ [package.dependencies] packaging = "*" +[[package]] +name = "distlib" +version = "0.3.8" +description = "Distribution utilities" +optional = false +python-versions = "*" +files = [ + {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, + {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, +] + [[package]] name = "docutils" version = "0.20.1" @@ -514,28 +610,29 @@ files = [ ] [[package]] -name = "energy-pandas" -version = "0.3.5" +name = "energy_pandas" +version = "0.4.1" description = "Building Energy pandas extension" optional = false -python-versions = "*" +python-versions = "<4.0,>=3.9" files = [ - {file = "energy_pandas-0.3.5-py3-none-any.whl", hash = "sha256:6664bea2bf4786997a652b49fe6b459636774bbd82b8cb82a34d75e60cc223db"}, - {file = "energy_pandas-0.3.5.tar.gz", hash = "sha256:deb9a9ce35af1c64f1c92030149e767e2db690f5f2875d96b3f29d79cae1330b"}, + {file = "energy_pandas-0.4.1-py3-none-any.whl", hash = "sha256:b043703d65f83750a52bdae74b69c9d8af790ed498e1af493295c70435999e3e"}, + {file = "energy_pandas-0.4.1.tar.gz", hash = "sha256:23bd68fe66ab8a824287f36bfee33d7672b42bc4660211f2cf45829304230087"}, ] [package.dependencies] -matplotlib = ">=3.2" -numpy = "*" -outdated = ">=0.2.1,<0.3.0" -pandas = ">=2.0.3" -pint = "<=0.19" -scikit-learn = "*" -tabulate = ">=0.8.9,<0.9.0" -tsam = "*" - -[package.extras] -dev = ["coverage (==6.3.2)", "coveralls (==3.3.1)", "pytest (==7.1.2)", "pytest-cov (==3.0.0)", "recommonmark (==0.7.1)", "sphinx (>=2.1)", "sphinx-rtd-theme (==1.0.0)"] +matplotlib = ">=3.9.2,<4.0.0" +numpy = [ + {version = ">=2.0.2,<3.0.0", markers = "python_full_version <= \"3.9.0\""}, + {version = ">=2.1.1,<3.0.0", markers = "python_version == \"3.10\""}, +] +outdated = ">=0.2.2,<0.3.0" +pandas = ">=2.2.2,<3.0.0" +pint = ">=0.24.3,<0.25.0" +scikit-learn = ">=1.5.2,<2.0.0" +tabulate = ">=0.9.0,<0.10.0" +tqdm = ">=4.66.5,<5.0.0" +tsam = ">=2.3.3,<3.0.0" [[package]] name = "eppy" @@ -574,13 +671,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -601,70 +698,104 @@ files = [ testing = ["hatch", "pre-commit", "pytest", "tox"] [[package]] -name = "flake8" -version = "7.0.0" -description = "the modular source code checker: pep8 pyflakes and co" +name = "filelock" +version = "3.16.1" +description = "A platform independent file lock." optional = false -python-versions = ">=3.8.1" +python-versions = ">=3.8" files = [ - {file = "flake8-7.0.0-py2.py3-none-any.whl", hash = "sha256:a6dfbb75e03252917f2473ea9653f7cd799c3064e54d4c8140044c5c065f53c3"}, - {file = "flake8-7.0.0.tar.gz", hash = "sha256:33f96621059e65eec474169085dc92bf26e7b2d47366b70be2f67ab80dc25132"}, + {file = "filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0"}, + {file = "filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435"}, +] + +[package.extras] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4.1)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.6.1)", "diff-cover (>=9.2)", "pytest (>=8.3.3)", "pytest-asyncio (>=0.24)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.26.4)"] +typing = ["typing-extensions (>=4.12.2)"] + +[[package]] +name = "flexcache" +version = "0.3" +description = "Saves and loads to the cache a transformed versions of a source object." +optional = false +python-versions = ">=3.9" +files = [ + {file = "flexcache-0.3-py3-none-any.whl", hash = "sha256:d43c9fea82336af6e0115e308d9d33a185390b8346a017564611f1466dcd2e32"}, + {file = "flexcache-0.3.tar.gz", hash = "sha256:18743bd5a0621bfe2cf8d519e4c3bfdf57a269c15d1ced3fb4b64e0ff4600656"}, +] + +[package.dependencies] +typing-extensions = "*" + +[package.extras] +test = ["pytest", "pytest-cov", "pytest-mpl", "pytest-subtests"] + +[[package]] +name = "flexparser" +version = "0.3.1" +description = "Parsing made fun ... using typing." +optional = false +python-versions = ">=3.9" +files = [ + {file = "flexparser-0.3.1-py3-none-any.whl", hash = "sha256:2e3e2936bec1f9277f777ef77297522087d96adb09624d4fe4240fd56885c013"}, + {file = "flexparser-0.3.1.tar.gz", hash = "sha256:36f795d82e50f5c9ae2fde1c33f21f88922fdd67b7629550a3cc4d0b40a66856"}, ] [package.dependencies] -mccabe = ">=0.7.0,<0.8.0" -pycodestyle = ">=2.11.0,<2.12.0" -pyflakes = ">=3.2.0,<3.3.0" +typing-extensions = "*" + +[package.extras] +test = ["pytest", "pytest-cov", "pytest-mpl", "pytest-subtests"] [[package]] name = "fonttools" -version = "4.53.0" +version = "4.53.1" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.53.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:52a6e0a7a0bf611c19bc8ec8f7592bdae79c8296c70eb05917fd831354699b20"}, - {file = "fonttools-4.53.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:099634631b9dd271d4a835d2b2a9e042ccc94ecdf7e2dd9f7f34f7daf333358d"}, - {file = "fonttools-4.53.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e40013572bfb843d6794a3ce076c29ef4efd15937ab833f520117f8eccc84fd6"}, - {file = "fonttools-4.53.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:715b41c3e231f7334cbe79dfc698213dcb7211520ec7a3bc2ba20c8515e8a3b5"}, - {file = "fonttools-4.53.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74ae2441731a05b44d5988d3ac2cf784d3ee0a535dbed257cbfff4be8bb49eb9"}, - {file = "fonttools-4.53.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:95db0c6581a54b47c30860d013977b8a14febc206c8b5ff562f9fe32738a8aca"}, - {file = "fonttools-4.53.0-cp310-cp310-win32.whl", hash = "sha256:9cd7a6beec6495d1dffb1033d50a3f82dfece23e9eb3c20cd3c2444d27514068"}, - {file = "fonttools-4.53.0-cp310-cp310-win_amd64.whl", hash = "sha256:daaef7390e632283051e3cf3e16aff2b68b247e99aea916f64e578c0449c9c68"}, - {file = "fonttools-4.53.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a209d2e624ba492df4f3bfad5996d1f76f03069c6133c60cd04f9a9e715595ec"}, - {file = "fonttools-4.53.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f520d9ac5b938e6494f58a25c77564beca7d0199ecf726e1bd3d56872c59749"}, - {file = "fonttools-4.53.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eceef49f457253000e6a2d0f7bd08ff4e9fe96ec4ffce2dbcb32e34d9c1b8161"}, - {file = "fonttools-4.53.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa1f3e34373aa16045484b4d9d352d4c6b5f9f77ac77a178252ccbc851e8b2ee"}, - {file = "fonttools-4.53.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:28d072169fe8275fb1a0d35e3233f6df36a7e8474e56cb790a7258ad822b6fd6"}, - {file = "fonttools-4.53.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4a2a6ba400d386e904fd05db81f73bee0008af37799a7586deaa4aef8cd5971e"}, - {file = "fonttools-4.53.0-cp311-cp311-win32.whl", hash = "sha256:bb7273789f69b565d88e97e9e1da602b4ee7ba733caf35a6c2affd4334d4f005"}, - {file = "fonttools-4.53.0-cp311-cp311-win_amd64.whl", hash = "sha256:9fe9096a60113e1d755e9e6bda15ef7e03391ee0554d22829aa506cdf946f796"}, - {file = "fonttools-4.53.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d8f191a17369bd53a5557a5ee4bab91d5330ca3aefcdf17fab9a497b0e7cff7a"}, - {file = "fonttools-4.53.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:93156dd7f90ae0a1b0e8871032a07ef3178f553f0c70c386025a808f3a63b1f4"}, - {file = "fonttools-4.53.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bff98816cb144fb7b85e4b5ba3888a33b56ecef075b0e95b95bcd0a5fbf20f06"}, - {file = "fonttools-4.53.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:973d030180eca8255b1bce6ffc09ef38a05dcec0e8320cc9b7bcaa65346f341d"}, - {file = "fonttools-4.53.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c4ee5a24e281fbd8261c6ab29faa7fd9a87a12e8c0eed485b705236c65999109"}, - {file = "fonttools-4.53.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bd5bc124fae781a4422f61b98d1d7faa47985f663a64770b78f13d2c072410c2"}, - {file = "fonttools-4.53.0-cp312-cp312-win32.whl", hash = "sha256:a239afa1126b6a619130909c8404070e2b473dd2b7fc4aacacd2e763f8597fea"}, - {file = "fonttools-4.53.0-cp312-cp312-win_amd64.whl", hash = "sha256:45b4afb069039f0366a43a5d454bc54eea942bfb66b3fc3e9a2c07ef4d617380"}, - {file = "fonttools-4.53.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:93bc9e5aaa06ff928d751dc6be889ff3e7d2aa393ab873bc7f6396a99f6fbb12"}, - {file = "fonttools-4.53.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2367d47816cc9783a28645bc1dac07f8ffc93e0f015e8c9fc674a5b76a6da6e4"}, - {file = "fonttools-4.53.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:907fa0b662dd8fc1d7c661b90782ce81afb510fc4b7aa6ae7304d6c094b27bce"}, - {file = "fonttools-4.53.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e0ad3c6ea4bd6a289d958a1eb922767233f00982cf0fe42b177657c86c80a8f"}, - {file = "fonttools-4.53.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:73121a9b7ff93ada888aaee3985a88495489cc027894458cb1a736660bdfb206"}, - {file = "fonttools-4.53.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:ee595d7ba9bba130b2bec555a40aafa60c26ce68ed0cf509983e0f12d88674fd"}, - {file = "fonttools-4.53.0-cp38-cp38-win32.whl", hash = "sha256:fca66d9ff2ac89b03f5aa17e0b21a97c21f3491c46b583bb131eb32c7bab33af"}, - {file = "fonttools-4.53.0-cp38-cp38-win_amd64.whl", hash = "sha256:31f0e3147375002aae30696dd1dc596636abbd22fca09d2e730ecde0baad1d6b"}, - {file = "fonttools-4.53.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7d6166192dcd925c78a91d599b48960e0a46fe565391c79fe6de481ac44d20ac"}, - {file = "fonttools-4.53.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef50ec31649fbc3acf6afd261ed89d09eb909b97cc289d80476166df8438524d"}, - {file = "fonttools-4.53.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f193f060391a455920d61684a70017ef5284ccbe6023bb056e15e5ac3de11d1"}, - {file = "fonttools-4.53.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba9f09ff17f947392a855e3455a846f9855f6cf6bec33e9a427d3c1d254c712f"}, - {file = "fonttools-4.53.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0c555e039d268445172b909b1b6bdcba42ada1cf4a60e367d68702e3f87e5f64"}, - {file = "fonttools-4.53.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a4788036201c908079e89ae3f5399b33bf45b9ea4514913f4dbbe4fac08efe0"}, - {file = "fonttools-4.53.0-cp39-cp39-win32.whl", hash = "sha256:d1a24f51a3305362b94681120c508758a88f207fa0a681c16b5a4172e9e6c7a9"}, - {file = "fonttools-4.53.0-cp39-cp39-win_amd64.whl", hash = "sha256:1e677bfb2b4bd0e5e99e0f7283e65e47a9814b0486cb64a41adf9ef110e078f2"}, - {file = "fonttools-4.53.0-py3-none-any.whl", hash = "sha256:6b4f04b1fbc01a3569d63359f2227c89ab294550de277fd09d8fca6185669fa4"}, - {file = "fonttools-4.53.0.tar.gz", hash = "sha256:c93ed66d32de1559b6fc348838c7572d5c0ac1e4a258e76763a5caddd8944002"}, + {file = "fonttools-4.53.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0679a30b59d74b6242909945429dbddb08496935b82f91ea9bf6ad240ec23397"}, + {file = "fonttools-4.53.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8bf06b94694251861ba7fdeea15c8ec0967f84c3d4143ae9daf42bbc7717fe3"}, + {file = "fonttools-4.53.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b96cd370a61f4d083c9c0053bf634279b094308d52fdc2dd9a22d8372fdd590d"}, + {file = "fonttools-4.53.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1c7c5aa18dd3b17995898b4a9b5929d69ef6ae2af5b96d585ff4005033d82f0"}, + {file = "fonttools-4.53.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e013aae589c1c12505da64a7d8d023e584987e51e62006e1bb30d72f26522c41"}, + {file = "fonttools-4.53.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9efd176f874cb6402e607e4cc9b4a9cd584d82fc34a4b0c811970b32ba62501f"}, + {file = "fonttools-4.53.1-cp310-cp310-win32.whl", hash = "sha256:c8696544c964500aa9439efb6761947393b70b17ef4e82d73277413f291260a4"}, + {file = "fonttools-4.53.1-cp310-cp310-win_amd64.whl", hash = "sha256:8959a59de5af6d2bec27489e98ef25a397cfa1774b375d5787509c06659b3671"}, + {file = "fonttools-4.53.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:da33440b1413bad53a8674393c5d29ce64d8c1a15ef8a77c642ffd900d07bfe1"}, + {file = "fonttools-4.53.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ff7e5e9bad94e3a70c5cd2fa27f20b9bb9385e10cddab567b85ce5d306ea923"}, + {file = "fonttools-4.53.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6e7170d675d12eac12ad1a981d90f118c06cf680b42a2d74c6c931e54b50719"}, + {file = "fonttools-4.53.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bee32ea8765e859670c4447b0817514ca79054463b6b79784b08a8df3a4d78e3"}, + {file = "fonttools-4.53.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6e08f572625a1ee682115223eabebc4c6a2035a6917eac6f60350aba297ccadb"}, + {file = "fonttools-4.53.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b21952c092ffd827504de7e66b62aba26fdb5f9d1e435c52477e6486e9d128b2"}, + {file = "fonttools-4.53.1-cp311-cp311-win32.whl", hash = "sha256:9dfdae43b7996af46ff9da520998a32b105c7f098aeea06b2226b30e74fbba88"}, + {file = "fonttools-4.53.1-cp311-cp311-win_amd64.whl", hash = "sha256:d4d0096cb1ac7a77b3b41cd78c9b6bc4a400550e21dc7a92f2b5ab53ed74eb02"}, + {file = "fonttools-4.53.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d92d3c2a1b39631a6131c2fa25b5406855f97969b068e7e08413325bc0afba58"}, + {file = "fonttools-4.53.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3b3c8ebafbee8d9002bd8f1195d09ed2bd9ff134ddec37ee8f6a6375e6a4f0e8"}, + {file = "fonttools-4.53.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32f029c095ad66c425b0ee85553d0dc326d45d7059dbc227330fc29b43e8ba60"}, + {file = "fonttools-4.53.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10f5e6c3510b79ea27bb1ebfcc67048cde9ec67afa87c7dd7efa5c700491ac7f"}, + {file = "fonttools-4.53.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f677ce218976496a587ab17140da141557beb91d2a5c1a14212c994093f2eae2"}, + {file = "fonttools-4.53.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9e6ceba2a01b448e36754983d376064730690401da1dd104ddb543519470a15f"}, + {file = "fonttools-4.53.1-cp312-cp312-win32.whl", hash = "sha256:791b31ebbc05197d7aa096bbc7bd76d591f05905d2fd908bf103af4488e60670"}, + {file = "fonttools-4.53.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ed170b5e17da0264b9f6fae86073be3db15fa1bd74061c8331022bca6d09bab"}, + {file = "fonttools-4.53.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c818c058404eb2bba05e728d38049438afd649e3c409796723dfc17cd3f08749"}, + {file = "fonttools-4.53.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:651390c3b26b0c7d1f4407cad281ee7a5a85a31a110cbac5269de72a51551ba2"}, + {file = "fonttools-4.53.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54f1bba2f655924c1138bbc7fa91abd61f45c68bd65ab5ed985942712864bbb"}, + {file = "fonttools-4.53.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9cd19cf4fe0595ebdd1d4915882b9440c3a6d30b008f3cc7587c1da7b95be5f"}, + {file = "fonttools-4.53.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2af40ae9cdcb204fc1d8f26b190aa16534fcd4f0df756268df674a270eab575d"}, + {file = "fonttools-4.53.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:35250099b0cfb32d799fb5d6c651220a642fe2e3c7d2560490e6f1d3f9ae9169"}, + {file = "fonttools-4.53.1-cp38-cp38-win32.whl", hash = "sha256:f08df60fbd8d289152079a65da4e66a447efc1d5d5a4d3f299cdd39e3b2e4a7d"}, + {file = "fonttools-4.53.1-cp38-cp38-win_amd64.whl", hash = "sha256:7b6b35e52ddc8fb0db562133894e6ef5b4e54e1283dff606fda3eed938c36fc8"}, + {file = "fonttools-4.53.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75a157d8d26c06e64ace9df037ee93a4938a4606a38cb7ffaf6635e60e253b7a"}, + {file = "fonttools-4.53.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4824c198f714ab5559c5be10fd1adf876712aa7989882a4ec887bf1ef3e00e31"}, + {file = "fonttools-4.53.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:becc5d7cb89c7b7afa8321b6bb3dbee0eec2b57855c90b3e9bf5fb816671fa7c"}, + {file = "fonttools-4.53.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84ec3fb43befb54be490147b4a922b5314e16372a643004f182babee9f9c3407"}, + {file = "fonttools-4.53.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:73379d3ffdeecb376640cd8ed03e9d2d0e568c9d1a4e9b16504a834ebadc2dfb"}, + {file = "fonttools-4.53.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:02569e9a810f9d11f4ae82c391ebc6fb5730d95a0657d24d754ed7763fb2d122"}, + {file = "fonttools-4.53.1-cp39-cp39-win32.whl", hash = "sha256:aae7bd54187e8bf7fd69f8ab87b2885253d3575163ad4d669a262fe97f0136cb"}, + {file = "fonttools-4.53.1-cp39-cp39-win_amd64.whl", hash = "sha256:e5b708073ea3d684235648786f5f6153a48dc8762cdfe5563c57e80787c29fbb"}, + {file = "fonttools-4.53.1-py3-none-any.whl", hash = "sha256:f1f8758a2ad110bd6432203a344269f445a2907dc24ef6bccfd0ac4e14e0d71d"}, + {file = "fonttools-4.53.1.tar.gz", hash = "sha256:e128778a8e9bc11159ce5447f76766cefbd876f44bd79aff030287254e4752c4"}, ] [package.extras] @@ -705,52 +836,62 @@ files = [ [[package]] name = "highspy" -version = "1.7.1" +version = "1.7.2" description = "A thin set of pybind11 wrappers to HiGHS" optional = false python-versions = ">=3.8" files = [ - {file = "highspy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc9f0d970859451777f02438dd7235f0b70ba222cc7707d81218060949c18769"}, - {file = "highspy-1.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:bc050142a8c1070f3c2f228082e3c2ec9b245de06bd3283219161a46e056021e"}, - {file = "highspy-1.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78286d334e3108e4d59adaa519609676d06c0d57883da968308792836ca6c598"}, - {file = "highspy-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7bcffc0945c51ec5752afd2876e71c7186427fdcf5e014773aa457b8c9450d0"}, - {file = "highspy-1.7.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:6ada0f5bb3a7cfde3b4299d74e9289e3a1243dbc1c1f67fe5ebde3fff3642a2f"}, - {file = "highspy-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:224d1bb36206f45f5611998dad197e9dd90c0e92269ba6212949f7485b6976a7"}, - {file = "highspy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:8cf067e0fab24eb850ace73462b03177c5d669af638314c659c41ae6eb445007"}, - {file = "highspy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:995ed5debea798e57260875a1958e251cf35260cbf184d346511c90ca5a7e2d8"}, - {file = "highspy-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b921c73c26ec835f0c0ade3174fe8012e4025ec67def9fb431723f83939f35ca"}, - {file = "highspy-1.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:036cd07eb3f2632f92a238df2f13e61987fda40487388ddf1675a372d9fc246d"}, - {file = "highspy-1.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a067cb356cc606094b1ff02250afa804bc5a845065c797ce3ff2ebc35a6da13a"}, - {file = "highspy-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0145fbd90e2ddf0d2d961b7c3cab12917e305faca81c91ee7ad7927991eedba"}, - {file = "highspy-1.7.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3a4c3ff18ecec1b1c8a352f0c0eb0bdf538aa7345f8c16260d8a9b1e3377cc2c"}, - {file = "highspy-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:89e49a47671c3caeaea95c72a4564e5284529a60d12d56c167d1f8df97944642"}, - {file = "highspy-1.7.1-cp311-cp311-win32.whl", hash = "sha256:14c1b4381d451f605c6b13ce0cfce93bda79acffdd9c9fbf22b27df09751a1a0"}, - {file = "highspy-1.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:efadfb6559e16f2e9b7e967156501c074c7acaec0afafa29ac6d4d6e7ac82119"}, - {file = "highspy-1.7.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:8074f49f4b9bc18f91bf1ad4519a16b691ec0ff5a568015a3b71ac0ee6367078"}, - {file = "highspy-1.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df11a1c5604552233ec796fd23697e64c0ae6796e11003d83f2fbf978275a00"}, - {file = "highspy-1.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d6222985213eecc8aad7958a8939c05f072c68a5caa59c83713df29e2581ce0"}, - {file = "highspy-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a3d10031d41102675c85b38f42252eb4691e350bc140b75dbab75ff717f041"}, - {file = "highspy-1.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:096a244825c1e930f1cbe1bbf8c3e2d158dfd45cdf51ae0e77b5fcb52ec1fc7d"}, - {file = "highspy-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4ede828865db9afb6868250c4e42cdf32133a3a29a3ebd6acaaafd3e19bf1"}, - {file = "highspy-1.7.1-cp312-cp312-win32.whl", hash = "sha256:1367f34c56fa9f4d3de6cb1d46a2d271a3680c0e9883d4dd779526c8cf568ae4"}, - {file = "highspy-1.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:a4692c7c2d4d298473ffc3a3b4e80da1edeb1a4b1d172858262bee759faa3b1d"}, - {file = "highspy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2fa9bc9b2e8f648a269f0a6a17ef7525d1dd2dc6d2d33af727b79ae253eede2a"}, - {file = "highspy-1.7.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8b83e98d276e9616565395b439693625dc7ff0e0f717166a2d1d71dedb7b5986"}, - {file = "highspy-1.7.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c7a3edc391227f03d20cccc29e4cf588a7bc7b5538e691a583e65de8058b02f"}, - {file = "highspy-1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:243c99f6290a289dbd9ba7988feac726da8326d6ea90889289f2ca583c16ffb6"}, - {file = "highspy-1.7.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:8d6c0e8293129a8e1d8841a12b8ef16caa8f979e3769f471a55ae76eaa2c248a"}, - {file = "highspy-1.7.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a574eaa19261e2c3dc1dddb507e50626f63b17d48cac3b2b86cd054cdf6385bc"}, - {file = "highspy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:81efbc1e8764a916d8784de7bbeaf5ac9cf284caad822028096a61824a035f2a"}, - {file = "highspy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:265d21b3e72bce08716d114ffa91e9eaadfff086fc4b8e00dc3297a0165990dd"}, - {file = "highspy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d0dbb4a41392720f798afba402dd90e763061085b2499cd8f41fb857db35632c"}, - {file = "highspy-1.7.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5363a165615601fa929791e4c629cbd961486ed5767d17406b6a81e8348cf7ff"}, - {file = "highspy-1.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7ecac3b629e0fd56a332a2470562ea05a11f10fef5b9ab2dae05d24ef84bfa8"}, - {file = "highspy-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8994f8fd79bf01879b7654747758fb7c28a361e5831d2d189f80d0b4b0403ba"}, - {file = "highspy-1.7.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2ae8679ff66301ed9f8fec70d4bef3ae9639bdc12f3aee34f49d2225e98bdf92"}, - {file = "highspy-1.7.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7926185a1fb0b2a54a438fa3af846b75e2abc9a48bd2dc9edc25a95ef3c5bf7d"}, - {file = "highspy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2e544078ffc9e0bde5234cf1e2fe2f218edd38f30c63fddd7c9725e77a6f51ff"}, - {file = "highspy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:638ed6e6e048d67f0f2b8bee8c72e9f866f67a13a3a4aa71e97d7958244b9b0c"}, - {file = "highspy-1.7.1.tar.gz", hash = "sha256:8bb9108d81eef5935d72d50773e237b69b7a7368e0f45a7b778d556b9667e281"}, + {file = "highspy-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:467124b1e01aeddff8b6d0aa7a56e51eef943ebb28d3e46dcbdd1e32b77384ec"}, + {file = "highspy-1.7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:584590ec4d9948a6f1ef8a1ce51761e1c9c00241054c12cbc0e8a43f0f5183c6"}, + {file = "highspy-1.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c642da4035b6c33618bca73f01627fce94e07c1e741b46798dddddaa88cf376"}, + {file = "highspy-1.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bebb73f80c47e3215547abb1ebf8e520ae5f7f24e5420ad270ad901f0725041"}, + {file = "highspy-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f0bfad2a4ebb37944bb1ed883f0fbdb733d98141fdf4902fee0f75b0160a6c0"}, + {file = "highspy-1.7.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c64ede6b8e567eec0d14d12ea67114af855b4c380881d848becfb91cb01c844d"}, + {file = "highspy-1.7.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c2ee6f7b74a6a1508fceb7d40acf8097d81c5b75059628ea00715723d382110"}, + {file = "highspy-1.7.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f9acabd04d16c5586753a9d6ce03c6f57b47f094fe3ef3b34185656181ed8685"}, + {file = "highspy-1.7.2-cp310-cp310-win32.whl", hash = "sha256:8625e193766192d4cfdc543548dc6cacf92ac09c86e2fcc7e48342f4909a9668"}, + {file = "highspy-1.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:e4d17d0c9bbbe15654a44b0369e5f1ee95f36935b71d54d4bdf70bedcc1b256e"}, + {file = "highspy-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:eb2fb87f2cd72765fa281acc2fb10e0bacb5f5e7c3336bb267b917b5bffc30fc"}, + {file = "highspy-1.7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cd96ff70cb9ba186129597e521a7afcaa2bbb285273ffa5417edfcc43d58a566"}, + {file = "highspy-1.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1152035fd6c861cb578115b976d03c38e4e0e2f87227ac93b4af12fb582ad971"}, + {file = "highspy-1.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4cb5b7067cd3cfc191920b33428395080d51892435cd507542ae75f7a2ae0853"}, + {file = "highspy-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ad5ef7ddfd6fd879dc9b6ac02a9eecd13fe2b0581cd03985e5faa89f43b24ac"}, + {file = "highspy-1.7.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eb039878156f6b521f383a42b53e615521af430f0ae55e12d825b1368e1eaa47"}, + {file = "highspy-1.7.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:afd27cf82c922a2add4b940a7900a9e74a2b66556446c39abfe2d854cfcf59d1"}, + {file = "highspy-1.7.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:81de7b020255e40aafd28387f7642b3b6ea844e9cb42845a045a05411c7a055a"}, + {file = "highspy-1.7.2-cp311-cp311-win32.whl", hash = "sha256:d7d1c11f8c68ab537023f487585b1a4f447c5c03603feb2c5f76e77914c388ac"}, + {file = "highspy-1.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:fafa076bad795c45d7f055f859b762c4a72abd872ecd9710e1d3c1202a9123ad"}, + {file = "highspy-1.7.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:659f240736ae923fd35acd8ea0e86dc4165e8aec8e72c191642ec546476c1130"}, + {file = "highspy-1.7.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b466011f4091051f156a13b46ac569316cc2cddff0c2881ee456c765c535519"}, + {file = "highspy-1.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e574cb5ddb6dffbcae0db61ae1ebb7754191e6f42a822010b81e3599d1001df"}, + {file = "highspy-1.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fa831a9a4fb286fe90bcba7c8a663923a47c14a318bdd30a6b96707f9a3f7496"}, + {file = "highspy-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71364d2136b0c31116684af47c63ba8bd2ca6da9320a4fadb69a0f57606bbdf7"}, + {file = "highspy-1.7.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b46b73ce68c9a98c36584348a31263f6deef84d8138cac872439b383cc17293e"}, + {file = "highspy-1.7.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a075da0c7d5b269f720691f0d743013540eea35bf22419e23bd32b343d4dda27"}, + {file = "highspy-1.7.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:98b2f01ec21764f233293eaae2ee637884ec009e6db608c46a446433c60d5e31"}, + {file = "highspy-1.7.2-cp312-cp312-win32.whl", hash = "sha256:ba78467db9e4693a384644b221deecf5f0243d150540d65fcb33534103486490"}, + {file = "highspy-1.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:47886d7794b3fa3fb12e5722d96989ef920a9a9460de66f4868632c8e723a07d"}, + {file = "highspy-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:22e31ee5d3854024d075697fcfac88394b90d0afe25b84e4283d3964d0cd991b"}, + {file = "highspy-1.7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fe9b2291b01ff13e14a2720e436cf807b28d7a9d33d27861e7f26ced001bceec"}, + {file = "highspy-1.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2d86c87a997de23001c687c8b3bff265b0f9edb1403657f5bb895d2525f0e78"}, + {file = "highspy-1.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5c0b5d913ae2e509e10991596caa3b09670e18aa6b55aab324e00884561f44d4"}, + {file = "highspy-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7973ba66d659728fadf7168f8d6a3560bef4333a504abfbc8cdb9ea51afd98"}, + {file = "highspy-1.7.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3e361e98ddd757c0393677a9a52de6349abfbe79ff5d2132088a3d02c6c735d9"}, + {file = "highspy-1.7.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:69ea90d97effbc27eeb2e20488c7c510f7d12813d929a8ca3fd0a7c9832564ab"}, + {file = "highspy-1.7.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0af568e0e61934e748c2b1057fb48f7fc3bfef6d6e6f159c616dd0ececb223a7"}, + {file = "highspy-1.7.2-cp38-cp38-win32.whl", hash = "sha256:20e86e18203d96f6c2b9d358b14e0178a7f83ac8ec6e806255d3f80710839bea"}, + {file = "highspy-1.7.2-cp38-cp38-win_amd64.whl", hash = "sha256:0ac5990c90cc615a2a45143d2321d74a7857db2e79aa9ba3606461da99fb5c8b"}, + {file = "highspy-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2d8199c8bd0528bfaec85d441c25c570adf2334be5a75d6d6839190db2e14f83"}, + {file = "highspy-1.7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d0a6d8b4fa17161c5b5941a49a9dab9b8569a3e6c28b2e28eaad3265fd8d7430"}, + {file = "highspy-1.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e10640542c41852d135172c87ced5e2664bbf12d5396a6f761ec8e62bc11ea6"}, + {file = "highspy-1.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64f99988d0c641843079c410883f606023ae4055e8e6158427cd4dc1e23227ff"}, + {file = "highspy-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb8a2919e958e07fd82e6d6f273374030f5232b09e2924c6d3f50e773bfa0a80"}, + {file = "highspy-1.7.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72fdc8dd3bb5e0d34b8594a851b0cad299b31eef40a50a180b3260494d86b09e"}, + {file = "highspy-1.7.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:b008ccdfbb73fde912ed1dd605e27a122a81e0c472c338fa3b3fa24996e5379f"}, + {file = "highspy-1.7.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3675f3242ddd11b107bde3345779ac9eb8dd9a940337b43ce8127836b592feef"}, + {file = "highspy-1.7.2-cp39-cp39-win32.whl", hash = "sha256:b496a5d337508847737836ada6d930b404d921a119132cd1d14df47a4b488db7"}, + {file = "highspy-1.7.2-cp39-cp39-win_amd64.whl", hash = "sha256:e7d3883c697103c8c39d808976a00b85d68f869b97bae6d48b7b03811dfbb925"}, + {file = "highspy-1.7.2.tar.gz", hash = "sha256:7987b2a3f013254a1845bceb4597087da4070f7887c0084024649486321ae213"}, ] [package.dependencies] @@ -759,17 +900,34 @@ numpy = "*" [package.extras] test = ["numpy", "pytest"] +[[package]] +name = "identify" +version = "2.6.1" +description = "File identification library for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "identify-2.6.1-py2.py3-none-any.whl", hash = "sha256:53863bcac7caf8d2ed85bd20312ea5dcfc22226800f6d6881f232d861db5a8f0"}, + {file = "identify-2.6.1.tar.gz", hash = "sha256:91478c5fb7c3aac5ff7bf9b4344f803843dc586832d5f110d672b19aa1984c98"}, +] + +[package.extras] +license = ["ukkonen"] + [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "imagesize" version = "1.4.1" @@ -783,40 +941,48 @@ files = [ [[package]] name = "importlib-metadata" -version = "7.1.0" +version = "8.5.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-7.1.0-py3-none-any.whl", hash = "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570"}, - {file = "importlib_metadata-7.1.0.tar.gz", hash = "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2"}, + {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, + {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, ] [package.dependencies] -zipp = ">=0.5" +zipp = ">=3.20" [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] +test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] +type = ["pytest-mypy"] [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.5" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.5-py3-none-any.whl", hash = "sha256:ac29d5f956f01d5e4bb63102a5a19957f1b9175e45649977264a1416783bb717"}, + {file = "importlib_resources-6.4.5.tar.gz", hash = "sha256:980862a1d16c9e147a59603677fa2aa5fd82b87f223b6cb870695bcfce830065"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "iniconfig" @@ -859,13 +1025,13 @@ files = [ [[package]] name = "jsonschema" -version = "4.22.0" +version = "4.23.0" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.22.0-py3-none-any.whl", hash = "sha256:ff4cfd6b1367a40e7bc6411caec72effadd3db0bbe5017de188f2d6108335802"}, - {file = "jsonschema-4.22.0.tar.gz", hash = "sha256:5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"}, + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, ] [package.dependencies] @@ -876,7 +1042,7 @@ rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] [[package]] name = "jsonschema-specifications" @@ -894,276 +1060,283 @@ referencing = ">=0.31.0" [[package]] name = "kiwisolver" -version = "1.4.5" +version = "1.4.7" description = "A fast implementation of the Cassowary constraint solver" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:05703cf211d585109fcd72207a31bb170a0f22144d68298dc5e61b3c946518af"}, - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:146d14bebb7f1dc4d5fbf74f8a6cb15ac42baadee8912eb84ac0b3b2a3dc6ac3"}, - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ef7afcd2d281494c0a9101d5c571970708ad911d028137cd558f02b851c08b4"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9eaa8b117dc8337728e834b9c6e2611f10c79e38f65157c4c38e9400286f5cb1"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec20916e7b4cbfb1f12380e46486ec4bcbaa91a9c448b97023fde0d5bbf9e4ff"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39b42c68602539407884cf70d6a480a469b93b81b7701378ba5e2328660c847a"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa12042de0171fad672b6c59df69106d20d5596e4f87b5e8f76df757a7c399aa"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a40773c71d7ccdd3798f6489aaac9eee213d566850a9533f8d26332d626b82c"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:19df6e621f6d8b4b9c4d45f40a66839294ff2bb235e64d2178f7522d9170ac5b"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:83d78376d0d4fd884e2c114d0621624b73d2aba4e2788182d286309ebdeed770"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e391b1f0a8a5a10ab3b9bb6afcfd74f2175f24f8975fb87ecae700d1503cdee0"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:852542f9481f4a62dbb5dd99e8ab7aedfeb8fb6342349a181d4036877410f525"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59edc41b24031bc25108e210c0def6f6c2191210492a972d585a06ff246bb79b"}, - {file = "kiwisolver-1.4.5-cp310-cp310-win32.whl", hash = "sha256:a6aa6315319a052b4ee378aa171959c898a6183f15c1e541821c5c59beaa0238"}, - {file = "kiwisolver-1.4.5-cp310-cp310-win_amd64.whl", hash = "sha256:d0ef46024e6a3d79c01ff13801cb19d0cad7fd859b15037aec74315540acc276"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:11863aa14a51fd6ec28688d76f1735f8f69ab1fabf388851a595d0721af042f5"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ab3919a9997ab7ef2fbbed0cc99bb28d3c13e6d4b1ad36e97e482558a91be90"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fcc700eadbbccbf6bc1bcb9dbe0786b4b1cb91ca0dcda336eef5c2beed37b797"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dfdd7c0b105af050eb3d64997809dc21da247cf44e63dc73ff0fd20b96be55a9"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c6a5964640638cdeaa0c359382e5703e9293030fe730018ca06bc2010c4437"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbea0db94288e29afcc4c28afbf3a7ccaf2d7e027489c449cf7e8f83c6346eb9"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ceec1a6bc6cab1d6ff5d06592a91a692f90ec7505d6463a88a52cc0eb58545da"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:040c1aebeda72197ef477a906782b5ab0d387642e93bda547336b8957c61022e"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f91de7223d4c7b793867797bacd1ee53bfe7359bd70d27b7b58a04efbb9436c8"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:faae4860798c31530dd184046a900e652c95513796ef51a12bc086710c2eec4d"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0157420efcb803e71d1b28e2c287518b8808b7cf1ab8af36718fd0a2c453eb0"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:06f54715b7737c2fecdbf140d1afb11a33d59508a47bf11bb38ecf21dc9ab79f"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fdb7adb641a0d13bdcd4ef48e062363d8a9ad4a182ac7647ec88f695e719ae9f"}, - {file = "kiwisolver-1.4.5-cp311-cp311-win32.whl", hash = "sha256:bb86433b1cfe686da83ce32a9d3a8dd308e85c76b60896d58f082136f10bffac"}, - {file = "kiwisolver-1.4.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c08e1312a9cf1074d17b17728d3dfce2a5125b2d791527f33ffbe805200a355"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:32d5cf40c4f7c7b3ca500f8985eb3fb3a7dfc023215e876f207956b5ea26632a"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f846c260f483d1fd217fe5ed7c173fb109efa6b1fc8381c8b7552c5781756192"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5ff5cf3571589b6d13bfbfd6bcd7a3f659e42f96b5fd1c4830c4cf21d4f5ef45"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7269d9e5f1084a653d575c7ec012ff57f0c042258bf5db0954bf551c158466e7"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da802a19d6e15dffe4b0c24b38b3af68e6c1a68e6e1d8f30148c83864f3881db"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3aba7311af82e335dd1e36ffff68aaca609ca6290c2cb6d821a39aa075d8e3ff"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:763773d53f07244148ccac5b084da5adb90bfaee39c197554f01b286cf869228"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2270953c0d8cdab5d422bee7d2007f043473f9d2999631c86a223c9db56cbd16"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d099e745a512f7e3bbe7249ca835f4d357c586d78d79ae8f1dcd4d8adeb9bda9"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:74db36e14a7d1ce0986fa104f7d5637aea5c82ca6326ed0ec5694280942d1162"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7e5bab140c309cb3a6ce373a9e71eb7e4873c70c2dda01df6820474f9889d6d4"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0f114aa76dc1b8f636d077979c0ac22e7cd8f3493abbab152f20eb8d3cda71f3"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:88a2df29d4724b9237fc0c6eaf2a1adae0cdc0b3e9f4d8e7dc54b16812d2d81a"}, - {file = "kiwisolver-1.4.5-cp312-cp312-win32.whl", hash = "sha256:72d40b33e834371fd330fb1472ca19d9b8327acb79a5821d4008391db8e29f20"}, - {file = "kiwisolver-1.4.5-cp312-cp312-win_amd64.whl", hash = "sha256:2c5674c4e74d939b9d91dda0fae10597ac7521768fec9e399c70a1f27e2ea2d9"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3a2b053a0ab7a3960c98725cfb0bf5b48ba82f64ec95fe06f1d06c99b552e130"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd32d6c13807e5c66a7cbb79f90b553642f296ae4518a60d8d76243b0ad2898"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59ec7b7c7e1a61061850d53aaf8e93db63dce0c936db1fda2658b70e4a1be709"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da4cfb373035def307905d05041c1d06d8936452fe89d464743ae7fb8371078b"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2400873bccc260b6ae184b2b8a4fec0e4082d30648eadb7c3d9a13405d861e89"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1b04139c4236a0f3aff534479b58f6f849a8b351e1314826c2d230849ed48985"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:4e66e81a5779b65ac21764c295087de82235597a2293d18d943f8e9e32746265"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7931d8f1f67c4be9ba1dd9c451fb0eeca1a25b89e4d3f89e828fe12a519b782a"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b3f7e75f3015df442238cca659f8baa5f42ce2a8582727981cbfa15fee0ee205"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:bbf1d63eef84b2e8c89011b7f2235b1e0bf7dacc11cac9431fc6468e99ac77fb"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4c380469bd3f970ef677bf2bcba2b6b0b4d5c75e7a020fb863ef75084efad66f"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-win32.whl", hash = "sha256:9408acf3270c4b6baad483865191e3e582b638b1654a007c62e3efe96f09a9a3"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-win_amd64.whl", hash = "sha256:5b94529f9b2591b7af5f3e0e730a4e0a41ea174af35a4fd067775f9bdfeee01a"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:11c7de8f692fc99816e8ac50d1d1aef4f75126eefc33ac79aac02c099fd3db71"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:53abb58632235cd154176ced1ae8f0d29a6657aa1aa9decf50b899b755bc2b93"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:88b9f257ca61b838b6f8094a62418421f87ac2a1069f7e896c36a7d86b5d4c29"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3195782b26fc03aa9c6913d5bad5aeb864bdc372924c093b0f1cebad603dd712"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc579bf0f502e54926519451b920e875f433aceb4624a3646b3252b5caa9e0b6"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a580c91d686376f0f7c295357595c5a026e6cbc3d77b7c36e290201e7c11ecb"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cfe6ab8da05c01ba6fbea630377b5da2cd9bcbc6338510116b01c1bc939a2c18"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d2e5a98f0ec99beb3c10e13b387f8db39106d53993f498b295f0c914328b1333"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a51a263952b1429e429ff236d2f5a21c5125437861baeed77f5e1cc2d2c7c6da"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3edd2fa14e68c9be82c5b16689e8d63d89fe927e56debd6e1dbce7a26a17f81b"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:74d1b44c6cfc897df648cc9fdaa09bc3e7679926e6f96df05775d4fb3946571c"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76d9289ed3f7501012e05abb8358bbb129149dbd173f1f57a1bf1c22d19ab7cc"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:92dea1ffe3714fa8eb6a314d2b3c773208d865a0e0d35e713ec54eea08a66250"}, - {file = "kiwisolver-1.4.5-cp38-cp38-win32.whl", hash = "sha256:5c90ae8c8d32e472be041e76f9d2f2dbff4d0b0be8bd4041770eddb18cf49a4e"}, - {file = "kiwisolver-1.4.5-cp38-cp38-win_amd64.whl", hash = "sha256:c7940c1dc63eb37a67721b10d703247552416f719c4188c54e04334321351ced"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9407b6a5f0d675e8a827ad8742e1d6b49d9c1a1da5d952a67d50ef5f4170b18d"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15568384086b6df3c65353820a4473575dbad192e35010f622c6ce3eebd57af9"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0dc9db8e79f0036e8173c466d21ef18e1befc02de8bf8aa8dc0813a6dc8a7046"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cdc8a402aaee9a798b50d8b827d7ecf75edc5fb35ea0f91f213ff927c15f4ff0"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6c3bd3cde54cafb87d74d8db50b909705c62b17c2099b8f2e25b461882e544ff"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:955e8513d07a283056b1396e9a57ceddbd272d9252c14f154d450d227606eb54"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:346f5343b9e3f00b8db8ba359350eb124b98c99efd0b408728ac6ebf38173958"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9098e0049e88c6a24ff64545cdfc50807818ba6c1b739cae221bbbcbc58aad3"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:00bd361b903dc4bbf4eb165f24d1acbee754fce22ded24c3d56eec268658a5cf"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7b8b454bac16428b22560d0a1cf0a09875339cab69df61d7805bf48919415901"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f1d072c2eb0ad60d4c183f3fb44ac6f73fb7a8f16a2694a91f988275cbf352f9"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:31a82d498054cac9f6d0b53d02bb85811185bcb477d4b60144f915f3b3126342"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6512cb89e334e4700febbffaaa52761b65b4f5a3cf33f960213d5656cea36a77"}, - {file = "kiwisolver-1.4.5-cp39-cp39-win32.whl", hash = "sha256:9db8ea4c388fdb0f780fe91346fd438657ea602d58348753d9fb265ce1bca67f"}, - {file = "kiwisolver-1.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:59415f46a37f7f2efeec758353dd2eae1b07640d8ca0f0c42548ec4125492635"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5c7b3b3a728dc6faf3fc372ef24f21d1e3cee2ac3e9596691d746e5a536de920"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:620ced262a86244e2be10a676b646f29c34537d0d9cc8eb26c08f53d98013390"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:378a214a1e3bbf5ac4a8708304318b4f890da88c9e6a07699c4ae7174c09a68d"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf7be1207676ac608a50cd08f102f6742dbfc70e8d60c4db1c6897f62f71523"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ba55dce0a9b8ff59495ddd050a0225d58bd0983d09f87cfe2b6aec4f2c1234e4"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd32ea360bcbb92d28933fc05ed09bffcb1704ba3fc7942e81db0fd4f81a7892"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5e7139af55d1688f8b960ee9ad5adafc4ac17c1c473fe07133ac092310d76544"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dced8146011d2bc2e883f9bd68618b8247387f4bbec46d7392b3c3b032640126"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9bf3325c47b11b2e51bca0824ea217c7cd84491d8ac4eefd1e409705ef092bd"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5794cf59533bc3f1b1c821f7206a3617999db9fbefc345360aafe2e067514929"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e368f200bbc2e4f905b8e71eb38b3c04333bddaa6a2464a6355487b02bb7fb09"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5d706eba36b4c4d5bc6c6377bb6568098765e990cfc21ee16d13963fab7b3e7"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85267bd1aa8880a9c88a8cb71e18d3d64d2751a790e6ca6c27b8ccc724bcd5ad"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210ef2c3a1f03272649aff1ef992df2e724748918c4bc2d5a90352849eb40bea"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11d011a7574eb3b82bcc9c1a1d35c1d7075677fdd15de527d91b46bd35e935ee"}, - {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5d5abf8f8ec1f4e22882273c423e16cae834c36856cac348cfbfa68e01c40f3a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:aeb3531b196ef6f11776c21674dba836aeea9d5bd1cf630f869e3d90b16cfade"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7d755065e4e866a8086c9bdada157133ff466476a2ad7861828e17b6026e22c"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08471d4d86cbaec61f86b217dd938a83d85e03785f51121e791a6e6689a3be95"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bbfcb7165ce3d54a3dfbe731e470f65739c4c1f85bb1018ee912bae139e263b"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d34eb8494bea691a1a450141ebb5385e4b69d38bb8403b5146ad279f4b30fa3"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9242795d174daa40105c1d86aba618e8eab7bf96ba8c3ee614da8302a9f95503"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a0f64a48bb81af7450e641e3fe0b0394d7381e342805479178b3d335d60ca7cf"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8e045731a5416357638d1700927529e2b8ab304811671f665b225f8bf8d8f933"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4322872d5772cae7369f8351da1edf255a604ea7087fe295411397d0cfd9655e"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e1631290ee9271dffe3062d2634c3ecac02c83890ada077d225e081aca8aab89"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:edcfc407e4eb17e037bca59be0e85a2031a2ac87e4fed26d3e9df88b4165f92d"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:4d05d81ecb47d11e7f8932bd8b61b720bf0b41199358f3f5e36d38e28f0532c5"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win32.whl", hash = "sha256:b38ac83d5f04b15e515fd86f312479d950d05ce2368d5413d46c088dda7de90a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win_amd64.whl", hash = "sha256:d83db7cde68459fc803052a55ace60bea2bae361fc3b7a6d5da07e11954e4b09"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bfa1acfa0c54932d5607e19a2c24646fb4c1ae2694437789129cf099789a3b00"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:eee3ea935c3d227d49b4eb85660ff631556841f6e567f0f7bda972df6c2c9935"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f3160309af4396e0ed04db259c3ccbfdc3621b5559b5453075e5de555e1f3a1b"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a17f6a29cf8935e587cc8a4dbfc8368c55edc645283db0ce9801016f83526c2d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10849fb2c1ecbfae45a693c070e0320a91b35dd4bcf58172c023b994283a124d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:ac542bf38a8a4be2dc6b15248d36315ccc65f0743f7b1a76688ffb6b5129a5c2"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0"}, + {file = "kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60"}, ] [[package]] name = "littleutils" -version = "0.2.2" +version = "0.2.4" description = "Small personal collection of python utility functions" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "littleutils-0.2.2.tar.gz", hash = "sha256:e6cae3a4203e530d51c9667ed310ffe3b1948f2876e3d69605b3de4b7d96916f"}, + {file = "littleutils-0.2.4-py3-none-any.whl", hash = "sha256:d10d5fe2e107c49fe2fc2904a08d6e5a302b41f8405921835ffcc323782d5dbc"}, + {file = "littleutils-0.2.4.tar.gz", hash = "sha256:c7835b01020ced42e291118b7d78fb16bc2d9a1b4f3f42f3cb3787bb4da53d19"}, ] [[package]] name = "lxml" -version = "5.2.2" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, - {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, - {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, - {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, - {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, - {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, - {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, - {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, - {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, - {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, - {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b590b39ef90c6b22ec0be925b211298e810b4856909c8ca60d27ffbca6c12e6"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:c2faf60c583af0d135e853c86ac2735ce178f0e338a3c7f9ae8f622fd2eb788c"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7ff762670cada8e05b32bf1e4dc50b140790909caa8303cfddc4d702b71ea184"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:a6d2092797b388342c1bc932077ad232f914351932353e2e8706851c870bca1f"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, - {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, - {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, - {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, - {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, - {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, - {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, - {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, - {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.extras] @@ -1171,7 +1344,7 @@ cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=3.0.10)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "markupsafe" @@ -1244,40 +1417,51 @@ files = [ [[package]] name = "matplotlib" -version = "3.9.0" +version = "3.9.2" description = "Python plotting package" optional = false python-versions = ">=3.9" files = [ - {file = "matplotlib-3.9.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2bcee1dffaf60fe7656183ac2190bd630842ff87b3153afb3e384d966b57fe56"}, - {file = "matplotlib-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3f988bafb0fa39d1074ddd5bacd958c853e11def40800c5824556eb630f94d3b"}, - {file = "matplotlib-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe428e191ea016bb278758c8ee82a8129c51d81d8c4bc0846c09e7e8e9057241"}, - {file = "matplotlib-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaf3978060a106fab40c328778b148f590e27f6fa3cd15a19d6892575bce387d"}, - {file = "matplotlib-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2e7f03e5cbbfacdd48c8ea394d365d91ee8f3cae7e6ec611409927b5ed997ee4"}, - {file = "matplotlib-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:13beb4840317d45ffd4183a778685e215939be7b08616f431c7795276e067463"}, - {file = "matplotlib-3.9.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:063af8587fceeac13b0936c42a2b6c732c2ab1c98d38abc3337e430e1ff75e38"}, - {file = "matplotlib-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a2fa6d899e17ddca6d6526cf6e7ba677738bf2a6a9590d702c277204a7c6152"}, - {file = "matplotlib-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550cdda3adbd596078cca7d13ed50b77879104e2e46392dcd7c75259d8f00e85"}, - {file = "matplotlib-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76cce0f31b351e3551d1f3779420cf8f6ec0d4a8cf9c0237a3b549fd28eb4abb"}, - {file = "matplotlib-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c53aeb514ccbbcbab55a27f912d79ea30ab21ee0531ee2c09f13800efb272674"}, - {file = "matplotlib-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:a5be985db2596d761cdf0c2eaf52396f26e6a64ab46bd8cd810c48972349d1be"}, - {file = "matplotlib-3.9.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:c79f3a585f1368da6049318bdf1f85568d8d04b2e89fc24b7e02cc9b62017382"}, - {file = "matplotlib-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bdd1ecbe268eb3e7653e04f451635f0fb0f77f07fd070242b44c076c9106da84"}, - {file = "matplotlib-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d38e85a1a6d732f645f1403ce5e6727fd9418cd4574521d5803d3d94911038e5"}, - {file = "matplotlib-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a490715b3b9984fa609116481b22178348c1a220a4499cda79132000a79b4db"}, - {file = "matplotlib-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8146ce83cbc5dc71c223a74a1996d446cd35cfb6a04b683e1446b7e6c73603b7"}, - {file = "matplotlib-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:d91a4ffc587bacf5c4ce4ecfe4bcd23a4b675e76315f2866e588686cc97fccdf"}, - {file = "matplotlib-3.9.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:616fabf4981a3b3c5a15cd95eba359c8489c4e20e03717aea42866d8d0465956"}, - {file = "matplotlib-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cd53c79fd02f1c1808d2cfc87dd3cf4dbc63c5244a58ee7944497107469c8d8a"}, - {file = "matplotlib-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06a478f0d67636554fa78558cfbcd7b9dba85b51f5c3b5a0c9be49010cf5f321"}, - {file = "matplotlib-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81c40af649d19c85f8073e25e5806926986806fa6d54be506fbf02aef47d5a89"}, - {file = "matplotlib-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52146fc3bd7813cc784562cb93a15788be0b2875c4655e2cc6ea646bfa30344b"}, - {file = "matplotlib-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:0fc51eaa5262553868461c083d9adadb11a6017315f3a757fc45ec6ec5f02888"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bd4f2831168afac55b881db82a7730992aa41c4f007f1913465fb182d6fb20c0"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:290d304e59be2b33ef5c2d768d0237f5bd132986bdcc66f80bc9bcc300066a03"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ff2e239c26be4f24bfa45860c20ffccd118d270c5b5d081fa4ea409b5469fcd"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:af4001b7cae70f7eaacfb063db605280058246de590fa7874f00f62259f2df7e"}, - {file = "matplotlib-3.9.0.tar.gz", hash = "sha256:e6d29ea6c19e34b30fb7d88b7081f869a03014f66fe06d62cc77d5a6ea88ed7a"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:9d78bbc0cbc891ad55b4f39a48c22182e9bdaea7fc0e5dbd364f49f729ca1bbb"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c375cc72229614632c87355366bdf2570c2dac01ac66b8ad048d2dabadf2d0d4"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d94ff717eb2bd0b58fe66380bd8b14ac35f48a98e7c6765117fe67fb7684e64"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab68d50c06938ef28681073327795c5db99bb4666214d2d5f880ed11aeaded66"}, + {file = "matplotlib-3.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:65aacf95b62272d568044531e41de26285d54aec8cb859031f511f84bd8b495a"}, + {file = "matplotlib-3.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:3fd595f34aa8a55b7fc8bf9ebea8aa665a84c82d275190a61118d33fbc82ccae"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d8dd059447824eec055e829258ab092b56bb0579fc3164fa09c64f3acd478772"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c797dac8bb9c7a3fd3382b16fe8f215b4cf0f22adccea36f1545a6d7be310b41"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d719465db13267bcef19ea8954a971db03b9f48b4647e3860e4bc8e6ed86610f"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8912ef7c2362f7193b5819d17dae8629b34a95c58603d781329712ada83f9447"}, + {file = "matplotlib-3.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7741f26a58a240f43bee74965c4882b6c93df3e7eb3de160126d8c8f53a6ae6e"}, + {file = "matplotlib-3.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:ae82a14dab96fbfad7965403c643cafe6515e386de723e498cf3eeb1e0b70cc7"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ac43031375a65c3196bee99f6001e7fa5bdfb00ddf43379d3c0609bdca042df9"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be0fc24a5e4531ae4d8e858a1a548c1fe33b176bb13eff7f9d0d38ce5112a27d"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf81de2926c2db243c9b2cbc3917619a0fc85796c6ba4e58f541df814bbf83c7"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ee45bc4245533111ced13f1f2cace1e7f89d1c793390392a80c139d6cf0e6c"}, + {file = "matplotlib-3.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:306c8dfc73239f0e72ac50e5a9cf19cc4e8e331dd0c54f5e69ca8758550f1e1e"}, + {file = "matplotlib-3.9.2-cp312-cp312-win_amd64.whl", hash = "sha256:5413401594cfaff0052f9d8b1aafc6d305b4bd7c4331dccd18f561ff7e1d3bd3"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:18128cc08f0d3cfff10b76baa2f296fc28c4607368a8402de61bb3f2eb33c7d9"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4876d7d40219e8ae8bb70f9263bcbe5714415acfdf781086601211335e24f8aa"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d9f07a80deab4bb0b82858a9e9ad53d1382fd122be8cde11080f4e7dfedb38b"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7c0410f181a531ec4e93bbc27692f2c71a15c2da16766f5ba9761e7ae518413"}, + {file = "matplotlib-3.9.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:909645cce2dc28b735674ce0931a4ac94e12f5b13f6bb0b5a5e65e7cea2c192b"}, + {file = "matplotlib-3.9.2-cp313-cp313-win_amd64.whl", hash = "sha256:f32c7410c7f246838a77d6d1eff0c0f87f3cb0e7c4247aebea71a6d5a68cab49"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:37e51dd1c2db16ede9cfd7b5cabdfc818b2c6397c83f8b10e0e797501c963a03"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b82c5045cebcecd8496a4d694d43f9cc84aeeb49fe2133e036b207abe73f4d30"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f053c40f94bc51bc03832a41b4f153d83f2062d88c72b5e79997072594e97e51"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbe196377a8248972f5cede786d4c5508ed5f5ca4a1e09b44bda889958b33f8c"}, + {file = "matplotlib-3.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5816b1e1fe8c192cbc013f8f3e3368ac56fbecf02fb41b8f8559303f24c5015e"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cef2a73d06601437be399908cf13aee74e86932a5ccc6ccdf173408ebc5f6bb2"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e0830e188029c14e891fadd99702fd90d317df294c3298aad682739c5533721a"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ba9c1299c920964e8d3857ba27173b4dbb51ca4bab47ffc2c2ba0eb5e2cbc5"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd93b91ab47a3616b4d3c42b52f8363b88ca021e340804c6ab2536344fad9ca"}, + {file = "matplotlib-3.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6d1ce5ed2aefcdce11904fc5bbea7d9c21fff3d5f543841edf3dea84451a09ea"}, + {file = "matplotlib-3.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:b2696efdc08648536efd4e1601b5fd491fd47f4db97a5fbfd175549a7365c1b2"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:d52a3b618cb1cbb769ce2ee1dcdb333c3ab6e823944e9a2d36e37253815f9556"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:039082812cacd6c6bec8e17a9c1e6baca230d4116d522e81e1f63a74d01d2e21"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6758baae2ed64f2331d4fd19be38b7b4eae3ecec210049a26b6a4f3ae1c85dcc"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:050598c2b29e0b9832cde72bcf97627bf00262adbc4a54e2b856426bb2ef0697"}, + {file = "matplotlib-3.9.2.tar.gz", hash = "sha256:96ab43906269ca64a6366934106fa01534454a69e471b7bf3d79083981aaab92"}, ] [package.dependencies] @@ -1295,17 +1479,6 @@ python-dateutil = ">=2.7" [package.extras] dev = ["meson-python (>=0.13.1)", "numpy (>=1.25)", "pybind11 (>=2.6)", "setuptools (>=64)", "setuptools_scm (>=7)"] -[[package]] -name = "mccabe" -version = "0.7.0" -description = "McCabe checker, plugin for flake8" -optional = false -python-versions = ">=3.6" -files = [ - {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, - {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, -] - [[package]] name = "munch" version = "4.0.0" @@ -1339,49 +1512,131 @@ doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.2)", "pydata-sphinx- extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.9)", "sympy (>=1.10)"] test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] +[[package]] +name = "nodeenv" +version = "1.9.1" +description = "Node.js virtual environment builder" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"}, + {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"}, +] + [[package]] name = "numpy" -version = "1.26.4" +version = "2.0.2" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.9" files = [ - {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, - {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, - {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, - {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, - {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, - {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, - {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, - {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, - {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, - {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, - {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8c5713284ce4e282544c68d1c3b2c7161d38c256d2eefc93c1d683cf47683e66"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:becfae3ddd30736fe1889a37f1f580e245ba79a5855bff5f2a29cb3ccc22dd7b"}, + {file = "numpy-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2da5960c3cf0df7eafefd806d4e612c5e19358de82cb3c343631188991566ccd"}, + {file = "numpy-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:496f71341824ed9f3d2fd36cf3ac57ae2e0165c143b55c3a035ee219413f3318"}, + {file = "numpy-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a61ec659f68ae254e4d237816e33171497e978140353c0c2038d46e63282d0c8"}, + {file = "numpy-2.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d731a1c6116ba289c1e9ee714b08a8ff882944d4ad631fd411106a30f083c326"}, + {file = "numpy-2.0.2-cp310-cp310-win32.whl", hash = "sha256:984d96121c9f9616cd33fbd0618b7f08e0cfc9600a7ee1d6fd9b239186d19d97"}, + {file = "numpy-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:c7b0be4ef08607dd04da4092faee0b86607f111d5ae68036f16cc787e250a131"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:49ca4decb342d66018b01932139c0961a8f9ddc7589611158cb3c27cbcf76448"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:11a76c372d1d37437857280aa142086476136a8c0f373b2e648ab2c8f18fb195"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:807ec44583fd708a21d4a11d94aedf2f4f3c3719035c76a2bbe1fe8e217bdc57"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8cafab480740e22f8d833acefed5cc87ce276f4ece12fdaa2e8903db2f82897a"}, + {file = "numpy-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15f476a45e6e5a3a79d8a14e62161d27ad897381fecfa4a09ed5322f2085669"}, + {file = "numpy-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e689d772146140a252c3a28501da66dfecd77490b498b168b501835041f951"}, + {file = "numpy-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9ea91dfb7c3d1c56a0e55657c0afb38cf1eeae4544c208dc465c3c9f3a7c09f9"}, + {file = "numpy-2.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c1c9307701fec8f3f7a1e6711f9089c06e6284b3afbbcd259f7791282d660a15"}, + {file = "numpy-2.0.2-cp311-cp311-win32.whl", hash = "sha256:a392a68bd329eafac5817e5aefeb39038c48b671afd242710b451e76090e81f4"}, + {file = "numpy-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:286cd40ce2b7d652a6f22efdfc6d1edf879440e53e76a75955bc0c826c7e64dc"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:df55d490dea7934f330006d0f81e8551ba6010a5bf035a249ef61a94f21c500b"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df823f570d9adf0978347d1f926b2a867d5608f434a7cff7f7908c6570dcf5e"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9a92ae5c14811e390f3767053ff54eaee3bf84576d99a2456391401323f4ec2c"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a842d573724391493a97a62ebbb8e731f8a5dcc5d285dfc99141ca15a3302d0c"}, + {file = "numpy-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05e238064fc0610c840d1cf6a13bf63d7e391717d247f1bf0318172e759e692"}, + {file = "numpy-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0123ffdaa88fa4ab64835dcbde75dcdf89c453c922f18dced6e27c90d1d0ec5a"}, + {file = "numpy-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:96a55f64139912d61de9137f11bf39a55ec8faec288c75a54f93dfd39f7eb40c"}, + {file = "numpy-2.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec9852fb39354b5a45a80bdab5ac02dd02b15f44b3804e9f00c556bf24b4bded"}, + {file = "numpy-2.0.2-cp312-cp312-win32.whl", hash = "sha256:671bec6496f83202ed2d3c8fdc486a8fc86942f2e69ff0e986140339a63bcbe5"}, + {file = "numpy-2.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:cfd41e13fdc257aa5778496b8caa5e856dc4896d4ccf01841daee1d96465467a"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9059e10581ce4093f735ed23f3b9d283b9d517ff46009ddd485f1747eb22653c"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:423e89b23490805d2a5a96fe40ec507407b8ee786d66f7328be214f9679df6dd"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:2b2955fa6f11907cf7a70dab0d0755159bca87755e831e47932367fc8f2f2d0b"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:97032a27bd9d8988b9a97a8c4d2c9f2c15a81f61e2f21404d7e8ef00cb5be729"}, + {file = "numpy-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e795a8be3ddbac43274f18588329c72939870a16cae810c2b73461c40718ab1"}, + {file = "numpy-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b258c385842546006213344c50655ff1555a9338e2e5e02a0756dc3e803dd"}, + {file = "numpy-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fec9451a7789926bcf7c2b8d187292c9f93ea30284802a0ab3f5be8ab36865d"}, + {file = "numpy-2.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9189427407d88ff25ecf8f12469d4d39d35bee1db5d39fc5c168c6f088a6956d"}, + {file = "numpy-2.0.2-cp39-cp39-win32.whl", hash = "sha256:905d16e0c60200656500c95b6b8dca5d109e23cb24abc701d41c02d74c6b3afa"}, + {file = "numpy-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3f4ab0caa7f053f6797fcd4e1e25caee367db3112ef2b6ef82d749530768c73"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7f0a0c6f12e07fa94133c8a67404322845220c06a9e80e85999afe727f7438b8"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:312950fdd060354350ed123c0e25a71327d3711584beaef30cdaa93320c392d4"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26df23238872200f63518dd2aa984cfca675d82469535dc7162dc2ee52d9dd5c"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a46288ec55ebbd58947d31d72be2c63cbf839f0a63b49cb755022310792a3385"}, + {file = "numpy-2.0.2.tar.gz", hash = "sha256:883c987dee1880e2a864ab0dc9892292582510604156762362d9326444636e78"}, +] + +[[package]] +name = "numpy" +version = "2.1.1" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.10" +files = [ + {file = "numpy-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c8a0e34993b510fc19b9a2ce7f31cb8e94ecf6e924a40c0c9dd4f62d0aac47d9"}, + {file = "numpy-2.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7dd86dfaf7c900c0bbdcb8b16e2f6ddf1eb1fe39c6c8cca6e94844ed3152a8fd"}, + {file = "numpy-2.1.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:5889dd24f03ca5a5b1e8a90a33b5a0846d8977565e4ae003a63d22ecddf6782f"}, + {file = "numpy-2.1.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:59ca673ad11d4b84ceb385290ed0ebe60266e356641428c845b39cd9df6713ab"}, + {file = "numpy-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13ce49a34c44b6de5241f0b38b07e44c1b2dcacd9e36c30f9c2fcb1bb5135db7"}, + {file = "numpy-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913cc1d311060b1d409e609947fa1b9753701dac96e6581b58afc36b7ee35af6"}, + {file = "numpy-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:caf5d284ddea7462c32b8d4a6b8af030b6c9fd5332afb70e7414d7fdded4bfd0"}, + {file = "numpy-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:57eb525e7c2a8fdee02d731f647146ff54ea8c973364f3b850069ffb42799647"}, + {file = "numpy-2.1.1-cp310-cp310-win32.whl", hash = "sha256:9a8e06c7a980869ea67bbf551283bbed2856915f0a792dc32dd0f9dd2fb56728"}, + {file = "numpy-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:d10c39947a2d351d6d466b4ae83dad4c37cd6c3cdd6d5d0fa797da56f710a6ae"}, + {file = "numpy-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0d07841fd284718feffe7dd17a63a2e6c78679b2d386d3e82f44f0108c905550"}, + {file = "numpy-2.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b5613cfeb1adfe791e8e681128f5f49f22f3fcaa942255a6124d58ca59d9528f"}, + {file = "numpy-2.1.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:0b8cc2715a84b7c3b161f9ebbd942740aaed913584cae9cdc7f8ad5ad41943d0"}, + {file = "numpy-2.1.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:b49742cdb85f1f81e4dc1b39dcf328244f4d8d1ded95dea725b316bd2cf18c95"}, + {file = "numpy-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8d5f8a8e3bc87334f025194c6193e408903d21ebaeb10952264943a985066ca"}, + {file = "numpy-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d51fc141ddbe3f919e91a096ec739f49d686df8af254b2053ba21a910ae518bf"}, + {file = "numpy-2.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:98ce7fb5b8063cfdd86596b9c762bf2b5e35a2cdd7e967494ab78a1fa7f8b86e"}, + {file = "numpy-2.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:24c2ad697bd8593887b019817ddd9974a7f429c14a5469d7fad413f28340a6d2"}, + {file = "numpy-2.1.1-cp311-cp311-win32.whl", hash = "sha256:397bc5ce62d3fb73f304bec332171535c187e0643e176a6e9421a6e3eacef06d"}, + {file = "numpy-2.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:ae8ce252404cdd4de56dcfce8b11eac3c594a9c16c231d081fb705cf23bd4d9e"}, + {file = "numpy-2.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c803b7934a7f59563db459292e6aa078bb38b7ab1446ca38dd138646a38203e"}, + {file = "numpy-2.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6435c48250c12f001920f0751fe50c0348f5f240852cfddc5e2f97e007544cbe"}, + {file = "numpy-2.1.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:3269c9eb8745e8d975980b3a7411a98976824e1fdef11f0aacf76147f662b15f"}, + {file = "numpy-2.1.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:fac6e277a41163d27dfab5f4ec1f7a83fac94e170665a4a50191b545721c6521"}, + {file = "numpy-2.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcd8f556cdc8cfe35e70efb92463082b7f43dd7e547eb071ffc36abc0ca4699b"}, + {file = "numpy-2.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b9cd92c8f8e7b313b80e93cedc12c0112088541dcedd9197b5dee3738c1201"}, + {file = "numpy-2.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:afd9c680df4de71cd58582b51e88a61feed4abcc7530bcd3d48483f20fc76f2a"}, + {file = "numpy-2.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8661c94e3aad18e1ea17a11f60f843a4933ccaf1a25a7c6a9182af70610b2313"}, + {file = "numpy-2.1.1-cp312-cp312-win32.whl", hash = "sha256:950802d17a33c07cba7fd7c3dcfa7d64705509206be1606f196d179e539111ed"}, + {file = "numpy-2.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:3fc5eabfc720db95d68e6646e88f8b399bfedd235994016351b1d9e062c4b270"}, + {file = "numpy-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:046356b19d7ad1890c751b99acad5e82dc4a02232013bd9a9a712fddf8eb60f5"}, + {file = "numpy-2.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6e5a9cb2be39350ae6c8f79410744e80154df658d5bea06e06e0ac5bb75480d5"}, + {file = "numpy-2.1.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:d4c57b68c8ef5e1ebf47238e99bf27657511ec3f071c465f6b1bccbef12d4136"}, + {file = "numpy-2.1.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:8ae0fd135e0b157365ac7cc31fff27f07a5572bdfc38f9c2d43b2aff416cc8b0"}, + {file = "numpy-2.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981707f6b31b59c0c24bcda52e5605f9701cb46da4b86c2e8023656ad3e833cb"}, + {file = "numpy-2.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ca4b53e1e0b279142113b8c5eb7d7a877e967c306edc34f3b58e9be12fda8df"}, + {file = "numpy-2.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e097507396c0be4e547ff15b13dc3866f45f3680f789c1a1301b07dadd3fbc78"}, + {file = "numpy-2.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7506387e191fe8cdb267f912469a3cccc538ab108471291636a96a54e599556"}, + {file = "numpy-2.1.1-cp313-cp313-win32.whl", hash = "sha256:251105b7c42abe40e3a689881e1793370cc9724ad50d64b30b358bbb3a97553b"}, + {file = "numpy-2.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:f212d4f46b67ff604d11fff7cc62d36b3e8714edf68e44e9760e19be38c03eb0"}, + {file = "numpy-2.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:920b0911bb2e4414c50e55bd658baeb78281a47feeb064ab40c2b66ecba85553"}, + {file = "numpy-2.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:bab7c09454460a487e631ffc0c42057e3d8f2a9ddccd1e60c7bb8ed774992480"}, + {file = "numpy-2.1.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:cea427d1350f3fd0d2818ce7350095c1a2ee33e30961d2f0fef48576ddbbe90f"}, + {file = "numpy-2.1.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:e30356d530528a42eeba51420ae8bf6c6c09559051887196599d96ee5f536468"}, + {file = "numpy-2.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8dfa9e94fc127c40979c3eacbae1e61fda4fe71d84869cc129e2721973231ef"}, + {file = "numpy-2.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910b47a6d0635ec1bd53b88f86120a52bf56dcc27b51f18c7b4a2e2224c29f0f"}, + {file = "numpy-2.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:13cc11c00000848702322af4de0147ced365c81d66053a67c2e962a485b3717c"}, + {file = "numpy-2.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:53e27293b3a2b661c03f79aa51c3987492bd4641ef933e366e0f9f6c9bf257ec"}, + {file = "numpy-2.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7be6a07520b88214ea85d8ac8b7d6d8a1839b0b5cb87412ac9f49fa934eb15d5"}, + {file = "numpy-2.1.1-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:52ac2e48f5ad847cd43c4755520a2317f3380213493b9d8a4c5e37f3b87df504"}, + {file = "numpy-2.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50a95ca3560a6058d6ea91d4629a83a897ee27c00630aed9d933dff191f170cd"}, + {file = "numpy-2.1.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:99f4a9ee60eed1385a86e82288971a51e71df052ed0b2900ed30bc840c0f2e39"}, + {file = "numpy-2.1.1.tar.gz", hash = "sha256:d0cf7d55b1051387807405b3898efafa862997b4cba8aa5dbe657be794afeafd"}, ] [[package]] @@ -1453,6 +1708,7 @@ files = [ numpy = [ {version = ">=1.22.4", markers = "python_version < \"3.11\""}, {version = ">=1.23.2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -1485,99 +1741,110 @@ xml = ["lxml (>=4.9.2)"] [[package]] name = "path" -version = "16.14.0" +version = "16.16.0" description = "A module wrapper for os.path" optional = false python-versions = ">=3.8" files = [ - {file = "path-16.14.0-py3-none-any.whl", hash = "sha256:8ee37703cbdc7cc83835ed4ecc6b638226fb2b43b7b45f26b620589981a109a5"}, - {file = "path-16.14.0.tar.gz", hash = "sha256:dbaaa7efd4602fd6ba8d82890dc7823d69e5de740a6e842d9919b0faaf2b6a8e"}, + {file = "path-16.16.0-py3-none-any.whl", hash = "sha256:d981989cf87598adc9f5b71ec5192d314a384836e81b4b1f34197138dc4ae659"}, + {file = "path-16.16.0.tar.gz", hash = "sha256:a6a6d916c910dc17e0ddc883358756c5a33d1b6dbdf5d6de86554f399053af58"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["appdirs", "more-itertools", "packaging", "pygments", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "pywin32"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +test = ["appdirs", "more-itertools", "packaging", "pygments", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "pywin32"] [[package]] name = "pillow" -version = "10.3.0" +version = "10.4.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.8" files = [ - {file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"}, - {file = "pillow-10.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf"}, - {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3"}, - {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5"}, - {file = "pillow-10.3.0-cp310-cp310-win32.whl", hash = "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2"}, - {file = "pillow-10.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f"}, - {file = "pillow-10.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b"}, - {file = "pillow-10.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795"}, - {file = "pillow-10.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd"}, - {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad"}, - {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c"}, - {file = "pillow-10.3.0-cp311-cp311-win32.whl", hash = "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09"}, - {file = "pillow-10.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d"}, - {file = "pillow-10.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f"}, - {file = "pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84"}, - {file = "pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a"}, - {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef"}, - {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3"}, - {file = "pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d"}, - {file = "pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b"}, - {file = "pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a"}, - {file = "pillow-10.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b"}, - {file = "pillow-10.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd"}, - {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d"}, - {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3"}, - {file = "pillow-10.3.0-cp38-cp38-win32.whl", hash = "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b"}, - {file = "pillow-10.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999"}, - {file = "pillow-10.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936"}, - {file = "pillow-10.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8"}, - {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9"}, - {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb"}, - {file = "pillow-10.3.0-cp39-cp39-win32.whl", hash = "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572"}, - {file = "pillow-10.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb"}, - {file = "pillow-10.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591"}, - {file = "pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d"}, -] - -[package.extras] -docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] + {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, + {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, + {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, + {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, + {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, + {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, + {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, + {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, + {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, + {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, + {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, + {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, + {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, + {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, + {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, + {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, + {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, + {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, + {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, + {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -1586,18 +1853,48 @@ xmp = ["defusedxml"] [[package]] name = "pint" -version = "0.19" +version = "0.24.3" description = "Physical quantities module" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "Pint-0.19.tar.gz", hash = "sha256:7c3afe8488aeda03bbeb3ffc74f3b3ba7b16903161356eb0cfecf5828f3aed2f"}, + {file = "Pint-0.24.3-py3-none-any.whl", hash = "sha256:d98667e46fd03a1b94694fbfa104ec30858684d8ab26952e2a348b48059089bb"}, + {file = "pint-0.24.3.tar.gz", hash = "sha256:d54771093e8b94c4e0a35ac638c2444ddf3ef685652bab7675ffecfa0c5c5cdf"}, ] +[package.dependencies] +appdirs = ">=1.4.4" +flexcache = ">=0.3" +flexparser = ">=0.3" +typing-extensions = "*" + [package.extras] -numpy = ["numpy (>=1.19.5)"] -test = ["pytest", "pytest-cov", "pytest-mpl", "pytest-subtests"] +babel = ["babel (<=2.8)"] +bench = ["pytest", "pytest-codspeed"] +dask = ["dask"] +mip = ["mip (>=1.13)"] +numpy = ["numpy (>=1.23)"] +pandas = ["pint-pandas (>=0.3)"] +test = ["pytest", "pytest-benchmark", "pytest-cov", "pytest-mpl", "pytest-subtests"] +testbase = ["pytest", "pytest-benchmark", "pytest-cov", "pytest-subtests"] uncertainties = ["uncertainties (>=3.1.6)"] +xarray = ["xarray"] + +[[package]] +name = "platformdirs" +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, +] + +[package.extras] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -1625,6 +1922,24 @@ files = [ {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, ] +[[package]] +name = "pre-commit" +version = "3.8.0" +description = "A framework for managing and maintaining multi-language pre-commit hooks." +optional = false +python-versions = ">=3.9" +files = [ + {file = "pre_commit-3.8.0-py2.py3-none-any.whl", hash = "sha256:9a90a53bf82fdd8778d58085faf8d83df56e40dfe18f45b19446e26bf1b3a63f"}, + {file = "pre_commit-3.8.0.tar.gz", hash = "sha256:8bb6494d4a20423842e198980c9ecf9f96607a07ea29549e180eef9ae80fe7af"}, +] + +[package.dependencies] +cfgv = ">=2.0.0" +identify = ">=1.0.0" +nodeenv = ">=0.11.1" +pyyaml = ">=5.1" +virtualenv = ">=20.10.0" + [[package]] name = "pyclipper" version = "1.3.0.post5" @@ -1678,17 +1993,6 @@ files = [ {file = "pyclipper-1.3.0.post5.tar.gz", hash = "sha256:c0239f928e0bf78a3efc2f2f615a10bfcdb9f33012d46d64c8d1225b4bde7096"}, ] -[[package]] -name = "pycodestyle" -version = "2.11.1" -description = "Python style guide checker" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycodestyle-2.11.1-py2.py3-none-any.whl", hash = "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67"}, - {file = "pycodestyle-2.11.1.tar.gz", hash = "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f"}, -] - [[package]] name = "pycountry" version = "24.6.1" @@ -1702,109 +2006,123 @@ files = [ [[package]] name = "pydantic" -version = "2.7.3" +version = "2.9.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.7.3-py3-none-any.whl", hash = "sha256:ea91b002777bf643bb20dd717c028ec43216b24a6001a280f83877fd2655d0b4"}, - {file = "pydantic-2.7.3.tar.gz", hash = "sha256:c46c76a40bb1296728d7a8b99aa73dd70a48c3510111ff290034f860c99c419e"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] -annotated-types = ">=0.4.0" -pydantic-core = "2.18.4" -typing-extensions = ">=4.6.1" +annotated-types = ">=0.6.0" +pydantic-core = "2.23.4" +typing-extensions = [ + {version = ">=4.6.1", markers = "python_version < \"3.13\""}, + {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, +] [package.extras] email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] [[package]] name = "pydantic-core" -version = "2.18.4" +version = "2.23.4" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.18.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:f76d0ad001edd426b92233d45c746fd08f467d56100fd8f30e9ace4b005266e4"}, - {file = "pydantic_core-2.18.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:59ff3e89f4eaf14050c8022011862df275b552caef8082e37b542b066ce1ff26"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a55b5b16c839df1070bc113c1f7f94a0af4433fcfa1b41799ce7606e5c79ce0a"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4d0dcc59664fcb8974b356fe0a18a672d6d7cf9f54746c05f43275fc48636851"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8951eee36c57cd128f779e641e21eb40bc5073eb28b2d23f33eb0ef14ffb3f5d"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4701b19f7e3a06ea655513f7938de6f108123bf7c86bbebb1196eb9bd35cf724"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e00a3f196329e08e43d99b79b286d60ce46bed10f2280d25a1718399457e06be"}, - {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:97736815b9cc893b2b7f663628e63f436018b75f44854c8027040e05230eeddb"}, - {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6891a2ae0e8692679c07728819b6e2b822fb30ca7445f67bbf6509b25a96332c"}, - {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bc4ff9805858bd54d1a20efff925ccd89c9d2e7cf4986144b30802bf78091c3e"}, - {file = "pydantic_core-2.18.4-cp310-none-win32.whl", hash = "sha256:1b4de2e51bbcb61fdebd0ab86ef28062704f62c82bbf4addc4e37fa4b00b7cbc"}, - {file = "pydantic_core-2.18.4-cp310-none-win_amd64.whl", hash = "sha256:6a750aec7bf431517a9fd78cb93c97b9b0c496090fee84a47a0d23668976b4b0"}, - {file = "pydantic_core-2.18.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:942ba11e7dfb66dc70f9ae66b33452f51ac7bb90676da39a7345e99ffb55402d"}, - {file = "pydantic_core-2.18.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2ebef0e0b4454320274f5e83a41844c63438fdc874ea40a8b5b4ecb7693f1c4"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a642295cd0c8df1b86fc3dced1d067874c353a188dc8e0f744626d49e9aa51c4"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f09baa656c904807e832cf9cce799c6460c450c4ad80803517032da0cd062e2"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98906207f29bc2c459ff64fa007afd10a8c8ac080f7e4d5beff4c97086a3dabd"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19894b95aacfa98e7cb093cd7881a0c76f55731efad31073db4521e2b6ff5b7d"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fbbdc827fe5e42e4d196c746b890b3d72876bdbf160b0eafe9f0334525119c8"}, - {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f85d05aa0918283cf29a30b547b4df2fbb56b45b135f9e35b6807cb28bc47951"}, - {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e85637bc8fe81ddb73fda9e56bab24560bdddfa98aa64f87aaa4e4b6730c23d2"}, - {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2f5966897e5461f818e136b8451d0551a2e77259eb0f73a837027b47dc95dab9"}, - {file = "pydantic_core-2.18.4-cp311-none-win32.whl", hash = "sha256:44c7486a4228413c317952e9d89598bcdfb06399735e49e0f8df643e1ccd0558"}, - {file = "pydantic_core-2.18.4-cp311-none-win_amd64.whl", hash = "sha256:8a7164fe2005d03c64fd3b85649891cd4953a8de53107940bf272500ba8a788b"}, - {file = "pydantic_core-2.18.4-cp311-none-win_arm64.whl", hash = "sha256:4e99bc050fe65c450344421017f98298a97cefc18c53bb2f7b3531eb39bc7805"}, - {file = "pydantic_core-2.18.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6f5c4d41b2771c730ea1c34e458e781b18cc668d194958e0112455fff4e402b2"}, - {file = "pydantic_core-2.18.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2fdf2156aa3d017fddf8aea5adfba9f777db1d6022d392b682d2a8329e087cef"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4748321b5078216070b151d5271ef3e7cc905ab170bbfd27d5c83ee3ec436695"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:847a35c4d58721c5dc3dba599878ebbdfd96784f3fb8bb2c356e123bdcd73f34"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c40d4eaad41f78e3bbda31b89edc46a3f3dc6e171bf0ecf097ff7a0ffff7cb1"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:21a5e440dbe315ab9825fcd459b8814bb92b27c974cbc23c3e8baa2b76890077"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3"}, - {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4b06beb3b3f1479d32befd1f3079cc47b34fa2da62457cdf6c963393340b56e9"}, - {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:564d7922e4b13a16b98772441879fcdcbe82ff50daa622d681dd682175ea918c"}, - {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0eb2a4f660fcd8e2b1c90ad566db2b98d7f3f4717c64fe0a83e0adb39766d5b8"}, - {file = "pydantic_core-2.18.4-cp312-none-win32.whl", hash = "sha256:8b8bab4c97248095ae0c4455b5a1cd1cdd96e4e4769306ab19dda135ea4cdb07"}, - {file = "pydantic_core-2.18.4-cp312-none-win_amd64.whl", hash = "sha256:14601cdb733d741b8958224030e2bfe21a4a881fb3dd6fbb21f071cabd48fa0a"}, - {file = "pydantic_core-2.18.4-cp312-none-win_arm64.whl", hash = "sha256:c1322d7dd74713dcc157a2b7898a564ab091ca6c58302d5c7b4c07296e3fd00f"}, - {file = "pydantic_core-2.18.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:823be1deb01793da05ecb0484d6c9e20baebb39bd42b5d72636ae9cf8350dbd2"}, - {file = "pydantic_core-2.18.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ebef0dd9bf9b812bf75bda96743f2a6c5734a02092ae7f721c048d156d5fabae"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae1d6df168efb88d7d522664693607b80b4080be6750c913eefb77e34c12c71a"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f9899c94762343f2cc2fc64c13e7cae4c3cc65cdfc87dd810a31654c9b7358cc"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99457f184ad90235cfe8461c4d70ab7dd2680e28821c29eca00252ba90308c78"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18f469a3d2a2fdafe99296a87e8a4c37748b5080a26b806a707f25a902c040a8"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7cdf28938ac6b8b49ae5e92f2735056a7ba99c9b110a474473fd71185c1af5d"}, - {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:938cb21650855054dc54dfd9120a851c974f95450f00683399006aa6e8abb057"}, - {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:44cd83ab6a51da80fb5adbd9560e26018e2ac7826f9626bc06ca3dc074cd198b"}, - {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:972658f4a72d02b8abfa2581d92d59f59897d2e9f7e708fdabe922f9087773af"}, - {file = "pydantic_core-2.18.4-cp38-none-win32.whl", hash = "sha256:1d886dc848e60cb7666f771e406acae54ab279b9f1e4143babc9c2258213daa2"}, - {file = "pydantic_core-2.18.4-cp38-none-win_amd64.whl", hash = "sha256:bb4462bd43c2460774914b8525f79b00f8f407c945d50881568f294c1d9b4443"}, - {file = "pydantic_core-2.18.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:44a688331d4a4e2129140a8118479443bd6f1905231138971372fcde37e43528"}, - {file = "pydantic_core-2.18.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a2fdd81edd64342c85ac7cf2753ccae0b79bf2dfa063785503cb85a7d3593223"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:86110d7e1907ab36691f80b33eb2da87d780f4739ae773e5fc83fb272f88825f"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:46387e38bd641b3ee5ce247563b60c5ca098da9c56c75c157a05eaa0933ed154"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:123c3cec203e3f5ac7b000bd82235f1a3eced8665b63d18be751f115588fea30"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dc1803ac5c32ec324c5261c7209e8f8ce88e83254c4e1aebdc8b0a39f9ddb443"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:53db086f9f6ab2b4061958d9c276d1dbe3690e8dd727d6abf2321d6cce37fa94"}, - {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:abc267fa9837245cc28ea6929f19fa335f3dc330a35d2e45509b6566dc18be23"}, - {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a0d829524aaefdebccb869eed855e2d04c21d2d7479b6cada7ace5448416597b"}, - {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:509daade3b8649f80d4e5ff21aa5673e4ebe58590b25fe42fac5f0f52c6f034a"}, - {file = "pydantic_core-2.18.4-cp39-none-win32.whl", hash = "sha256:ca26a1e73c48cfc54c4a76ff78df3727b9d9f4ccc8dbee4ae3f73306a591676d"}, - {file = "pydantic_core-2.18.4-cp39-none-win_amd64.whl", hash = "sha256:c67598100338d5d985db1b3d21f3619ef392e185e71b8d52bceacc4a7771ea7e"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:574d92eac874f7f4db0ca653514d823a0d22e2354359d0759e3f6a406db5d55d"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1f4d26ceb5eb9eed4af91bebeae4b06c3fb28966ca3a8fb765208cf6b51102ab"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77450e6d20016ec41f43ca4a6c63e9fdde03f0ae3fe90e7c27bdbeaece8b1ed4"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d323a01da91851a4f17bf592faf46149c9169d68430b3146dcba2bb5e5719abc"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:43d447dd2ae072a0065389092a231283f62d960030ecd27565672bd40746c507"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:578e24f761f3b425834f297b9935e1ce2e30f51400964ce4801002435a1b41ef"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:81b5efb2f126454586d0f40c4d834010979cb80785173d1586df845a632e4e6d"}, - {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ab86ce7c8f9bea87b9d12c7f0af71102acbf5ecbc66c17796cff45dae54ef9a5"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:90afc12421df2b1b4dcc975f814e21bc1754640d502a2fbcc6d41e77af5ec312"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:51991a89639a912c17bef4b45c87bd83593aee0437d8102556af4885811d59f5"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:293afe532740370aba8c060882f7d26cfd00c94cae32fd2e212a3a6e3b7bc15e"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b48ece5bde2e768197a2d0f6e925f9d7e3e826f0ad2271120f8144a9db18d5c8"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:eae237477a873ab46e8dd748e515c72c0c804fb380fbe6c85533c7de51f23a8f"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:834b5230b5dfc0c1ec37b2fda433b271cbbc0e507560b5d1588e2cc1148cf1ce"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e858ac0a25074ba4bce653f9b5d0a85b7456eaddadc0ce82d3878c22489fa4ee"}, - {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2fd41f6eff4c20778d717af1cc50eca52f5afe7805ee530a4fbd0bae284f16e9"}, - {file = "pydantic_core-2.18.4.tar.gz", hash = "sha256:ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, ] [package.dependencies] @@ -1812,13 +2130,13 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pydantic-settings" -version = "2.3.2" +version = "2.5.2" description = "Settings management using Pydantic" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_settings-2.3.2-py3-none-any.whl", hash = "sha256:ae06e44349e4c7bff8d57aff415dfd397ae75c217a098d54e9e6990ad7594ac7"}, - {file = "pydantic_settings-2.3.2.tar.gz", hash = "sha256:05d33003c74c2cd585de97b59eb17b6ed67181bc8a3ce594d74b5d24e4df7323"}, + {file = "pydantic_settings-2.5.2-py3-none-any.whl", hash = "sha256:2c912e55fd5794a59bf8c832b9de832dcfdf4778d79ff79b708744eed499a907"}, + {file = "pydantic_settings-2.5.2.tar.gz", hash = "sha256:f90b139682bee4d2065273d5185d71d37ea46cfe57e1b5ae184fc6a0b2484ca0"}, ] [package.dependencies] @@ -1826,6 +2144,7 @@ pydantic = ">=2.7.0" python-dotenv = ">=0.21.0" [package.extras] +azure-key-vault = ["azure-identity (>=1.16.0)", "azure-keyvault-secrets (>=4.8.0)"] toml = ["tomli (>=2.0.1)"] yaml = ["pyyaml (>=6.0.1)"] @@ -1843,17 +2162,6 @@ files = [ pyparsing = "*" setuptools = "*" -[[package]] -name = "pyflakes" -version = "3.2.0" -description = "passive checker of Python programs" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a"}, - {file = "pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f"}, -] - [[package]] name = "pygments" version = "2.18.0" @@ -1870,55 +2178,57 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyomo" -version = "6.7.3" +version = "6.8.0" description = "Pyomo: Python Optimization Modeling Objects" optional = false python-versions = ">=3.8" files = [ - {file = "Pyomo-6.7.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab6ad20b7a0ca60d60f187227b0cfd47fccc331e62131dc9af05ba9fecfc5326"}, - {file = "Pyomo-6.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:752a8ace32f4c585f00bc52b7285d3cc022cf5007f0a81592205cf71f86cf1b6"}, - {file = "Pyomo-6.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74f1eb8dc89523d88e8894568417f69ffb44c65a57d83797c5917909459da1c7"}, - {file = "Pyomo-6.7.3-cp310-cp310-win_amd64.whl", hash = "sha256:9fa6c4a17735ab25337af4c2b7094ec27a310dd329f6ff84e79ac65de6e61bd7"}, - {file = "Pyomo-6.7.3-cp310-cp310-win_arm64.whl", hash = "sha256:eb475ddec5e10652e89f15987906693fb521bd296029d65fcd969ae27171e45a"}, - {file = "Pyomo-6.7.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e1f308ac5838210a530eb89054b4e3e60386773d0e1c06fa914bb23115875638"}, - {file = "Pyomo-6.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:997dd24b9f575d67dff3dd4c780591419855b03adb023bd4c417fce858a50aa9"}, - {file = "Pyomo-6.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31a3fdefb0e56842c59b422e0b5278b9bcfd845451f035a753fc683b0a16fe48"}, - {file = "Pyomo-6.7.3-cp311-cp311-win_amd64.whl", hash = "sha256:051fc5c7a1744bf82c13d243158e88e69a63c82832fef4aa73f1e536d4d56a93"}, - {file = "Pyomo-6.7.3-cp311-cp311-win_arm64.whl", hash = "sha256:d872c9f532e013d11a587847129de182efb257effdaf3bec735b631e72537990"}, - {file = "Pyomo-6.7.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d2958deb4e084e6b54f511fb64b9e4a1bb35a4e1bd0f4073f047930319b610b3"}, - {file = "Pyomo-6.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:953b1ecd46c15e54a0299591b1fbb6331b0df645dfd714c220400d385ba0a106"}, - {file = "Pyomo-6.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17f324fdaec0565efe9e784f0891152393ef705a9e60aaaf6890d7d8f20a5222"}, - {file = "Pyomo-6.7.3-cp312-cp312-win_amd64.whl", hash = "sha256:f333ec0d2341a51d05bbb6bb6c51e3ebd2406ae7379175fb3b6c6ef7ec2771f0"}, - {file = "Pyomo-6.7.3-cp312-cp312-win_arm64.whl", hash = "sha256:201732ad1bab762347d0717d414202dbbab83db8ee3b701f88558722d7890062"}, - {file = "Pyomo-6.7.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c2fad3daef9b474b42f9b883824078870f09190e408bfd2090e886a155c4e1f"}, - {file = "Pyomo-6.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69e5e5ef0c66f2d1ceb7d1c6880e058501e1952d43ecce16f6ac0e6bc788905f"}, - {file = "Pyomo-6.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa3dd3b7d59df47eb8dfd84e9d6a64c7fc0c89cd68acb98f505069b88f4bfd3f"}, - {file = "Pyomo-6.7.3-cp38-cp38-win_amd64.whl", hash = "sha256:2f20820d603b28ad707931577a1ff14be38ff800fcde03531f9550ffeb507d07"}, - {file = "Pyomo-6.7.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5301caa307539240254121830f0ed6e0fd5cff1e5ee8e335b97c2bb8c2f587dc"}, - {file = "Pyomo-6.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19b0286bf7fc8004427214e50fd1a5490844e02f72a9a76d72c2c745b0a73172"}, - {file = "Pyomo-6.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fda713100336b51e181bbc8c731ca97a129f27fa990a9def05559ade8fe2de7"}, - {file = "Pyomo-6.7.3-cp39-cp39-win_amd64.whl", hash = "sha256:380579299f3b03a9ec4d14fc4f0dd13ab2848f77a88861ae19a95f9e6b496e92"}, - {file = "Pyomo-6.7.3-cp39-cp39-win_arm64.whl", hash = "sha256:b292e95b5b56a8e04c3827f934789869400830a97c12ef756e7a48d5d7016adb"}, - {file = "Pyomo-6.7.3.tar.gz", hash = "sha256:b7f0441c405af4f42f38527ae38826a5c0a4984dd7bea1fe07172789d8594770"}, + {file = "Pyomo-6.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6c47f9fe79517d6abbb4e3fea1044e29fa86de6a7e9db25fafa9bd27a75ad6d"}, + {file = "Pyomo-6.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:36157938dfd7ac14249ad05cebcf1ab7f28a1d44a3d07d51be4679941301c143"}, + {file = "Pyomo-6.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6c9f026f97ae91bd765267d5ac92b0572b7d27ddb25eb7fd7460185a6df47cb"}, + {file = "Pyomo-6.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbfe758ca9a43814087b29ae6c7b4e27d71decd4702e254c0cf2b248ad65ba73"}, + {file = "Pyomo-6.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:449a4100bac87425c41ef3835d8e3378489f9a11914945f299efef405a913da0"}, + {file = "Pyomo-6.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:80b24ea789b7b7e8f41565a78212b75665eb6eea5e39142ec2134c5f4843db83"}, + {file = "Pyomo-6.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ee5cf281fe0e45d6952de86c18800670f7fab5e544d21ca1ade6fad57577097a"}, + {file = "Pyomo-6.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8fdf2e35cabb3e2e54da49da03ffd6c462e44493b38e1e891db482d1f76bcd0"}, + {file = "Pyomo-6.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ee3fb49ff18e72cae6f19c0f38166854ad7a50a1103c5de805b5e4368adf5a0"}, + {file = "Pyomo-6.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d63405b124613735c94b93be8b5e060cdfcf5e3e7d03a825c033d3d8a2a1a3dd"}, + {file = "Pyomo-6.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3a886845c013eddcaff0d71fb258deccd0713e3a2f12ce0ed3f043111e572701"}, + {file = "Pyomo-6.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e437724cf8dae2777a6f815512efa70e055966942834eefcd28a6bbbdb5150c0"}, + {file = "Pyomo-6.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4afa3ebb4a84b7dff0fcd79a635da9f0a08cd05c2e901962388002026a8e941f"}, + {file = "Pyomo-6.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c9175cd7159cc6bcf592a8497a1068a0d4105df5d2ce20e7a3b80b74b1c1baa"}, + {file = "Pyomo-6.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ff6b17bc885b463874a46122d07d206655963b0f634659014d5f1c904c88ef15"}, + {file = "Pyomo-6.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f0e5e371cf850a3b0fdf83a4f6b8ae565927e19c349b9bce924be13f2a4612d7"}, + {file = "Pyomo-6.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd112afdd63b877a92d94abe8e1d914ab67c58af1cf19e5b0d7bb7c587910a17"}, + {file = "Pyomo-6.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b11bb2418bc939594aa53c6409e9f3cb056fef2d1cd97b4c3cb6dbf1440da234"}, + {file = "Pyomo-6.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:b4115fc42b3b4cbbfc32c9ae5c14f3bc1691a6e79f50e60829866abc132d4255"}, + {file = "Pyomo-6.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1db5d704c28fd566fe30d64b3025d6652143e7143c34782ba4cc72c8ea258072"}, + {file = "Pyomo-6.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9d0bcd98d34859ca9aad31236edae2bdb6be35ee68498fa0f74b4f9057902ecc"}, + {file = "Pyomo-6.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72ce933ead5c8ccc44ab5a311e07b006dfff6744a2b4bbfa3c3f959d7d7a41fe"}, + {file = "Pyomo-6.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:606323626f3fb25a9e01b9770696011149ab191514083c9251dfaf6fb81c7c73"}, + {file = "Pyomo-6.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:ee17e68c219efcdd0b22adeb8fca8bcd746ffb25e280d850970748fe1bb7415f"}, + {file = "Pyomo-6.8.0-cp39-cp39-win_arm64.whl", hash = "sha256:85c3d44e13c6547692c71bbf8fe3d1a7b5ee4e439737a161f2ad4fe47980b03c"}, + {file = "Pyomo-6.8.0-py3-none-any.whl", hash = "sha256:c390cb7fdee18a6916f44b4c86409ddfb6fc6488fae00c0566d5cfb854f0ba85"}, + {file = "Pyomo-6.8.0.tar.gz", hash = "sha256:a204a78d8ed5fa7ad8fa94d3c8ed4f6da38b5c02a68b8fe446bc694f16c8d1ea"}, ] [package.dependencies] ply = "*" [package.extras] -docs = ["Sphinx (>4)", "enum-tools", "numpy (<2.0.0)", "scipy", "sphinx-copybutton", "sphinx-jinja2-compat (>=0.1.1)", "sphinx-rtd-theme (>0.5)", "sphinx-toolbox (>=2.16.0)", "sphinxcontrib-jsmath", "sphinxcontrib-napoleon"] -optional = ["casadi", "dill", "ipython", "matplotlib (>=3.6.0,!=3.6.1)", "networkx", "networkx (<3.2)", "numdifftools", "numpy (<2.0.0)", "openpyxl", "pandas", "pint", "plotly", "python-louvain", "pywin32", "pyyaml", "qtconsole", "scipy", "seaborn", "sympy", "xlrd", "z3-solver"] +docs = ["Sphinx (>4)", "enum-tools", "numpy", "scipy", "sphinx-copybutton", "sphinx-jinja2-compat (>=0.1.1)", "sphinx-rtd-theme (>0.5)", "sphinx-toolbox (>=2.16.0)", "sphinxcontrib-jsmath", "sphinxcontrib-napoleon"] +optional = ["casadi", "dill", "ipython", "linear-tree", "matplotlib (>=3.6.0,!=3.6.1)", "networkx", "networkx (<3.2)", "numdifftools", "numpy", "openpyxl", "pandas", "pint", "plotly", "python-louvain", "pywin32", "pyyaml", "qtconsole", "scipy", "seaborn", "sympy", "xlrd", "z3-solver"] tests = ["coverage", "parameterized", "pybind11", "pytest", "pytest-parallel"] [[package]] name = "pyparsing" -version = "3.1.2" +version = "3.1.4" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false python-versions = ">=3.6.8" files = [ - {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, - {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, + {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, + {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, ] [package.extras] @@ -1934,15 +2244,34 @@ files = [ {file = "pypoly2tri-0.0.3-py2.py3-none-any.whl", hash = "sha256:375f0b6461909e4f552e430ec8e062ed6cee800e827ac865478a72dc14a7e9f0"}, ] +[[package]] +name = "pyproject-api" +version = "1.7.2" +description = "API to interact with the python pyproject.toml based projects" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyproject_api-1.7.2-py3-none-any.whl", hash = "sha256:17c025105f8d27e22ffe542fe7dff3391b3736191a28294773a1f3b9ed25282b"}, + {file = "pyproject_api-1.7.2.tar.gz", hash = "sha256:dc5b0e0f6e291a4f22b46e182c9c6d4915c62b1f089b8de1b73f2d06ae453593"}, +] + +[package.dependencies] +packaging = ">=24.1" +tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +docs = ["furo (>=2024.8.6)", "sphinx-autodoc-typehints (>=2.4.1)"] +testing = ["covdefaults (>=2.3)", "pytest (>=8.3.3)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "setuptools (>=75.1)"] + [[package]] name = "pytest" -version = "8.2.2" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343"}, - {file = "pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] @@ -1950,7 +2279,7 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.5,<2.0" +pluggy = ">=1.5,<2" tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] @@ -2024,13 +2353,75 @@ cli = ["click (>=5.0)"] [[package]] name = "pytz" -version = "2024.1" +version = "2024.2" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -2087,140 +2478,144 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "rpds-py" -version = "0.18.1" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"}, - {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"}, - {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"}, - {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"}, - {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"}, - {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"}, - {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"}, - {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"}, - {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"}, - {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"}, - {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"}, - {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"}, - {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] name = "scikit-learn" -version = "1.5.0" +version = "1.5.2" description = "A set of python modules for machine learning and data mining" optional = false python-versions = ">=3.9" files = [ - {file = "scikit_learn-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:12e40ac48555e6b551f0a0a5743cc94cc5a765c9513fe708e01f0aa001da2801"}, - {file = "scikit_learn-1.5.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f405c4dae288f5f6553b10c4ac9ea7754d5180ec11e296464adb5d6ac68b6ef5"}, - {file = "scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df8ccabbf583315f13160a4bb06037bde99ea7d8211a69787a6b7c5d4ebb6fc3"}, - {file = "scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c75ea812cd83b1385bbfa94ae971f0d80adb338a9523f6bbcb5e0b0381151d4"}, - {file = "scikit_learn-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:a90c5da84829a0b9b4bf00daf62754b2be741e66b5946911f5bdfaa869fcedd6"}, - {file = "scikit_learn-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a65af2d8a6cce4e163a7951a4cfbfa7fceb2d5c013a4b593686c7f16445cf9d"}, - {file = "scikit_learn-1.5.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:4c0c56c3005f2ec1db3787aeaabefa96256580678cec783986836fc64f8ff622"}, - {file = "scikit_learn-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f77547165c00625551e5c250cefa3f03f2fc92c5e18668abd90bfc4be2e0bff"}, - {file = "scikit_learn-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:118a8d229a41158c9f90093e46b3737120a165181a1b58c03461447aa4657415"}, - {file = "scikit_learn-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:a03b09f9f7f09ffe8c5efffe2e9de1196c696d811be6798ad5eddf323c6f4d40"}, - {file = "scikit_learn-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:460806030c666addee1f074788b3978329a5bfdc9b7d63e7aad3f6d45c67a210"}, - {file = "scikit_learn-1.5.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:1b94d6440603752b27842eda97f6395f570941857456c606eb1d638efdb38184"}, - {file = "scikit_learn-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d82c2e573f0f2f2f0be897e7a31fcf4e73869247738ab8c3ce7245549af58ab8"}, - {file = "scikit_learn-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3a10e1d9e834e84d05e468ec501a356226338778769317ee0b84043c0d8fb06"}, - {file = "scikit_learn-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:855fc5fa8ed9e4f08291203af3d3e5fbdc4737bd617a371559aaa2088166046e"}, - {file = "scikit_learn-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:40fb7d4a9a2db07e6e0cae4dc7bdbb8fada17043bac24104d8165e10e4cff1a2"}, - {file = "scikit_learn-1.5.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:47132440050b1c5beb95f8ba0b2402bbd9057ce96ec0ba86f2f445dd4f34df67"}, - {file = "scikit_learn-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:174beb56e3e881c90424e21f576fa69c4ffcf5174632a79ab4461c4c960315ac"}, - {file = "scikit_learn-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261fe334ca48f09ed64b8fae13f9b46cc43ac5f580c4a605cbb0a517456c8f71"}, - {file = "scikit_learn-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:057b991ac64b3e75c9c04b5f9395eaf19a6179244c089afdebaad98264bff37c"}, - {file = "scikit_learn-1.5.0.tar.gz", hash = "sha256:789e3db01c750ed6d496fa2db7d50637857b451e57bcae863bff707c1247bef7"}, + {file = "scikit_learn-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:299406827fb9a4f862626d0fe6c122f5f87f8910b86fe5daa4c32dcd742139b6"}, + {file = "scikit_learn-1.5.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:2d4cad1119c77930b235579ad0dc25e65c917e756fe80cab96aa3b9428bd3fb0"}, + {file = "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c412ccc2ad9bf3755915e3908e677b367ebc8d010acbb3f182814524f2e5540"}, + {file = "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a686885a4b3818d9e62904d91b57fa757fc2bed3e465c8b177be652f4dd37c8"}, + {file = "scikit_learn-1.5.2-cp310-cp310-win_amd64.whl", hash = "sha256:c15b1ca23d7c5f33cc2cb0a0d6aaacf893792271cddff0edbd6a40e8319bc113"}, + {file = "scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03b6158efa3faaf1feea3faa884c840ebd61b6484167c711548fce208ea09445"}, + {file = "scikit_learn-1.5.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:1ff45e26928d3b4eb767a8f14a9a6efbf1cbff7c05d1fb0f95f211a89fd4f5de"}, + {file = "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f763897fe92d0e903aa4847b0aec0e68cadfff77e8a0687cabd946c89d17e675"}, + {file = "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8b0ccd4a902836493e026c03256e8b206656f91fbcc4fde28c57a5b752561f1"}, + {file = "scikit_learn-1.5.2-cp311-cp311-win_amd64.whl", hash = "sha256:6c16d84a0d45e4894832b3c4d0bf73050939e21b99b01b6fd59cbb0cf39163b6"}, + {file = "scikit_learn-1.5.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f932a02c3f4956dfb981391ab24bda1dbd90fe3d628e4b42caef3e041c67707a"}, + {file = "scikit_learn-1.5.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:3b923d119d65b7bd555c73be5423bf06c0105678ce7e1f558cb4b40b0a5502b1"}, + {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f60021ec1574e56632be2a36b946f8143bf4e5e6af4a06d85281adc22938e0dd"}, + {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:394397841449853c2290a32050382edaec3da89e35b3e03d6cc966aebc6a8ae6"}, + {file = "scikit_learn-1.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:57cc1786cfd6bd118220a92ede80270132aa353647684efa385a74244a41e3b1"}, + {file = "scikit_learn-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:757c7d514ddb00ae249832fe87100d9c73c6ea91423802872d9e74970a0e40b9"}, + {file = "scikit_learn-1.5.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:52788f48b5d8bca5c0736c175fa6bdaab2ef00a8f536cda698db61bd89c551c1"}, + {file = "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:643964678f4b5fbdc95cbf8aec638acc7aa70f5f79ee2cdad1eec3df4ba6ead8"}, + {file = "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca64b3089a6d9b9363cd3546f8978229dcbb737aceb2c12144ee3f70f95684b7"}, + {file = "scikit_learn-1.5.2-cp39-cp39-win_amd64.whl", hash = "sha256:3bed4909ba187aca80580fe2ef370d9180dcf18e621a27c4cf2ef10d279a7efe"}, + {file = "scikit_learn-1.5.2.tar.gz", hash = "sha256:b4237ed7b3fdd0a4882792e68ef2545d5baa50aca3bb45aa7df468138ad8f94d"}, ] [package.dependencies] @@ -2231,12 +2626,12 @@ threadpoolctl = ">=3.1.0" [package.extras] benchmark = ["matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "pandas (>=1.1.5)"] -build = ["cython (>=3.0.10)", "meson-python (>=0.15.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"] -docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=6.0.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-gallery (>=0.15.0)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"] +build = ["cython (>=3.0.10)", "meson-python (>=0.16.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-design (>=0.6.0)", "sphinx-gallery (>=0.16.0)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)"] examples = ["matplotlib (>=3.3.4)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)"] install = ["joblib (>=1.2.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)", "threadpoolctl (>=3.1.0)"] maintenance = ["conda-lock (==2.5.6)"] -tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.2.1)", "scikit-image (>=0.17.2)"] +tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.2.1)", "scikit-image (>=0.17.2)"] [[package]] name = "scipy" @@ -2282,67 +2677,73 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "setuptools" -version = "70.0.0" +version = "75.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.0.0-py3-none-any.whl", hash = "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4"}, - {file = "setuptools-70.0.0.tar.gz", hash = "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0"}, + {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, + {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] [[package]] name = "shapely" -version = "2.0.4" +version = "2.0.6" description = "Manipulation and analysis of geometric objects" optional = false python-versions = ">=3.7" files = [ - {file = "shapely-2.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:011b77153906030b795791f2fdfa2d68f1a8d7e40bce78b029782ade3afe4f2f"}, - {file = "shapely-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9831816a5d34d5170aa9ed32a64982c3d6f4332e7ecfe62dc97767e163cb0b17"}, - {file = "shapely-2.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5c4849916f71dc44e19ed370421518c0d86cf73b26e8656192fcfcda08218fbd"}, - {file = "shapely-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841f93a0e31e4c64d62ea570d81c35de0f6cea224568b2430d832967536308e6"}, - {file = "shapely-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b4431f522b277c79c34b65da128029a9955e4481462cbf7ebec23aab61fc58"}, - {file = "shapely-2.0.4-cp310-cp310-win32.whl", hash = "sha256:92a41d936f7d6743f343be265ace93b7c57f5b231e21b9605716f5a47c2879e7"}, - {file = "shapely-2.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:30982f79f21bb0ff7d7d4a4e531e3fcaa39b778584c2ce81a147f95be1cd58c9"}, - {file = "shapely-2.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de0205cb21ad5ddaef607cda9a3191eadd1e7a62a756ea3a356369675230ac35"}, - {file = "shapely-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7d56ce3e2a6a556b59a288771cf9d091470116867e578bebced8bfc4147fbfd7"}, - {file = "shapely-2.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:58b0ecc505bbe49a99551eea3f2e8a9b3b24b3edd2a4de1ac0dc17bc75c9ec07"}, - {file = "shapely-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:790a168a808bd00ee42786b8ba883307c0e3684ebb292e0e20009588c426da47"}, - {file = "shapely-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4310b5494271e18580d61022c0857eb85d30510d88606fa3b8314790df7f367d"}, - {file = "shapely-2.0.4-cp311-cp311-win32.whl", hash = "sha256:63f3a80daf4f867bd80f5c97fbe03314348ac1b3b70fb1c0ad255a69e3749879"}, - {file = "shapely-2.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:c52ed79f683f721b69a10fb9e3d940a468203f5054927215586c5d49a072de8d"}, - {file = "shapely-2.0.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5bbd974193e2cc274312da16b189b38f5f128410f3377721cadb76b1e8ca5328"}, - {file = "shapely-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:41388321a73ba1a84edd90d86ecc8bfed55e6a1e51882eafb019f45895ec0f65"}, - {file = "shapely-2.0.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0776c92d584f72f1e584d2e43cfc5542c2f3dd19d53f70df0900fda643f4bae6"}, - {file = "shapely-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c75c98380b1ede1cae9a252c6dc247e6279403fae38c77060a5e6186c95073ac"}, - {file = "shapely-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3e700abf4a37b7b8b90532fa6ed5c38a9bfc777098bc9fbae5ec8e618ac8f30"}, - {file = "shapely-2.0.4-cp312-cp312-win32.whl", hash = "sha256:4f2ab0faf8188b9f99e6a273b24b97662194160cc8ca17cf9d1fb6f18d7fb93f"}, - {file = "shapely-2.0.4-cp312-cp312-win_amd64.whl", hash = "sha256:03152442d311a5e85ac73b39680dd64a9892fa42bb08fd83b3bab4fe6999bfa0"}, - {file = "shapely-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:994c244e004bc3cfbea96257b883c90a86e8cbd76e069718eb4c6b222a56f78b"}, - {file = "shapely-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05ffd6491e9e8958b742b0e2e7c346635033d0a5f1a0ea083547fcc854e5d5cf"}, - {file = "shapely-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbdc1140a7d08faa748256438291394967aa54b40009f54e8d9825e75ef6113"}, - {file = "shapely-2.0.4-cp37-cp37m-win32.whl", hash = "sha256:5af4cd0d8cf2912bd95f33586600cac9c4b7c5053a036422b97cfe4728d2eb53"}, - {file = "shapely-2.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:464157509ce4efa5ff285c646a38b49f8c5ef8d4b340f722685b09bb033c5ccf"}, - {file = "shapely-2.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:489c19152ec1f0e5c5e525356bcbf7e532f311bff630c9b6bc2db6f04da6a8b9"}, - {file = "shapely-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b79bbd648664aa6f44ef018474ff958b6b296fed5c2d42db60078de3cffbc8aa"}, - {file = "shapely-2.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:674d7baf0015a6037d5758496d550fc1946f34bfc89c1bf247cabdc415d7747e"}, - {file = "shapely-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cd4ccecc5ea5abd06deeaab52fcdba372f649728050c6143cc405ee0c166679"}, - {file = "shapely-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb5cdcbbe3080181498931b52a91a21a781a35dcb859da741c0345c6402bf00c"}, - {file = "shapely-2.0.4-cp38-cp38-win32.whl", hash = "sha256:55a38dcd1cee2f298d8c2ebc60fc7d39f3b4535684a1e9e2f39a80ae88b0cea7"}, - {file = "shapely-2.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:ec555c9d0db12d7fd777ba3f8b75044c73e576c720a851667432fabb7057da6c"}, - {file = "shapely-2.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9103abd1678cb1b5f7e8e1af565a652e036844166c91ec031eeb25c5ca8af0"}, - {file = "shapely-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:263bcf0c24d7a57c80991e64ab57cba7a3906e31d2e21b455f493d4aab534aaa"}, - {file = "shapely-2.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddf4a9bfaac643e62702ed662afc36f6abed2a88a21270e891038f9a19bc08fc"}, - {file = "shapely-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:485246fcdb93336105c29a5cfbff8a226949db37b7473c89caa26c9bae52a242"}, - {file = "shapely-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8de4578e838a9409b5b134a18ee820730e507b2d21700c14b71a2b0757396acc"}, - {file = "shapely-2.0.4-cp39-cp39-win32.whl", hash = "sha256:9dab4c98acfb5fb85f5a20548b5c0abe9b163ad3525ee28822ffecb5c40e724c"}, - {file = "shapely-2.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:31c19a668b5a1eadab82ff070b5a260478ac6ddad3a5b62295095174a8d26398"}, - {file = "shapely-2.0.4.tar.gz", hash = "sha256:5dc736127fac70009b8d309a0eeb74f3e08979e530cf7017f2f507ef62e6cfb8"}, + {file = "shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29a34e068da2d321e926b5073539fd2a1d4429a2c656bd63f0bd4c8f5b236d0b"}, + {file = "shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c84c3f53144febf6af909d6b581bc05e8785d57e27f35ebaa5c1ab9baba13b"}, + {file = "shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ad2fae12dca8d2b727fa12b007e46fbc522148a584f5d6546c539f3464dccde"}, + {file = "shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3304883bd82d44be1b27a9d17f1167fda8c7f5a02a897958d86c59ec69b705e"}, + {file = "shapely-2.0.6-cp310-cp310-win32.whl", hash = "sha256:3ec3a0eab496b5e04633a39fa3d5eb5454628228201fb24903d38174ee34565e"}, + {file = "shapely-2.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:28f87cdf5308a514763a5c38de295544cb27429cfa655d50ed8431a4796090c4"}, + {file = "shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e"}, + {file = "shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2"}, + {file = "shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855"}, + {file = "shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0"}, + {file = "shapely-2.0.6-cp311-cp311-win32.whl", hash = "sha256:d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d"}, + {file = "shapely-2.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b"}, + {file = "shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0"}, + {file = "shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3"}, + {file = "shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8"}, + {file = "shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726"}, + {file = "shapely-2.0.6-cp312-cp312-win32.whl", hash = "sha256:42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f"}, + {file = "shapely-2.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48"}, + {file = "shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013"}, + {file = "shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7"}, + {file = "shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381"}, + {file = "shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805"}, + {file = "shapely-2.0.6-cp313-cp313-win32.whl", hash = "sha256:0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a"}, + {file = "shapely-2.0.6-cp313-cp313-win_amd64.whl", hash = "sha256:d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2"}, + {file = "shapely-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fa7468e4f5b92049c0f36d63c3e309f85f2775752e076378e36c6387245c5462"}, + {file = "shapely-2.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed5867e598a9e8ac3291da6cc9baa62ca25706eea186117034e8ec0ea4355653"}, + {file = "shapely-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81d9dfe155f371f78c8d895a7b7f323bb241fb148d848a2bf2244f79213123fe"}, + {file = "shapely-2.0.6-cp37-cp37m-win32.whl", hash = "sha256:fbb7bf02a7542dba55129062570211cfb0defa05386409b3e306c39612e7fbcc"}, + {file = "shapely-2.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:837d395fac58aa01aa544495b97940995211e3e25f9aaf87bc3ba5b3a8cd1ac7"}, + {file = "shapely-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c6d88ade96bf02f6bfd667ddd3626913098e243e419a0325ebef2bbd481d1eb6"}, + {file = "shapely-2.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8b3b818c4407eaa0b4cb376fd2305e20ff6df757bf1356651589eadc14aab41b"}, + {file = "shapely-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbc783529a21f2bd50c79cef90761f72d41c45622b3e57acf78d984c50a5d13"}, + {file = "shapely-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2423f6c0903ebe5df6d32e0066b3d94029aab18425ad4b07bf98c3972a6e25a1"}, + {file = "shapely-2.0.6-cp38-cp38-win32.whl", hash = "sha256:2de00c3bfa80d6750832bde1d9487e302a6dd21d90cb2f210515cefdb616e5f5"}, + {file = "shapely-2.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:3a82d58a1134d5e975f19268710e53bddd9c473743356c90d97ce04b73e101ee"}, + {file = "shapely-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:392f66f458a0a2c706254f473290418236e52aa4c9b476a072539d63a2460595"}, + {file = "shapely-2.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eba5bae271d523c938274c61658ebc34de6c4b33fdf43ef7e938b5776388c1be"}, + {file = "shapely-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7060566bc4888b0c8ed14b5d57df8a0ead5c28f9b69fb6bed4476df31c51b0af"}, + {file = "shapely-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b02154b3e9d076a29a8513dffcb80f047a5ea63c897c0cd3d3679f29363cf7e5"}, + {file = "shapely-2.0.6-cp39-cp39-win32.whl", hash = "sha256:44246d30124a4f1a638a7d5419149959532b99dfa25b54393512e6acc9c211ac"}, + {file = "shapely-2.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:2b542d7f1dbb89192d3512c52b679c822ba916f93479fa5d4fc2fe4fa0b3c9e8"}, + {file = "shapely-2.0.6.tar.gz", hash = "sha256:997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6"}, ] [package.dependencies] @@ -2412,38 +2813,38 @@ files = [ [[package]] name = "soupsieve" -version = "2.5" +version = "2.6" description = "A modern CSS selector implementation for Beautiful Soup." optional = false python-versions = ">=3.8" files = [ - {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, - {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, + {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, + {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, ] [[package]] name = "sphinx" -version = "7.3.7" +version = "7.4.7" description = "Python documentation generator" optional = false python-versions = ">=3.9" files = [ - {file = "sphinx-7.3.7-py3-none-any.whl", hash = "sha256:413f75440be4cacf328f580b4274ada4565fb2187d696a84970c23f77b64d8c3"}, - {file = "sphinx-7.3.7.tar.gz", hash = "sha256:a4a7db75ed37531c05002d56ed6948d4c42f473a36f46e1382b0bd76ca9627bc"}, + {file = "sphinx-7.4.7-py3-none-any.whl", hash = "sha256:c2419e2135d11f1951cd994d6eb18a1835bd8fdd8429f9ca375dc1f3281bd239"}, + {file = "sphinx-7.4.7.tar.gz", hash = "sha256:242f92a7ea7e6c5b406fdc2615413890ba9f699114a9c09192d7dfead2ee9cfe"}, ] [package.dependencies] alabaster = ">=0.7.14,<0.8.0" -babel = ">=2.9" -colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} -docutils = ">=0.18.1,<0.22" +babel = ">=2.13" +colorama = {version = ">=0.4.6", markers = "sys_platform == \"win32\""} +docutils = ">=0.20,<0.22" imagesize = ">=1.3" -importlib-metadata = {version = ">=4.8", markers = "python_version < \"3.10\""} -Jinja2 = ">=3.0" -packaging = ">=21.0" -Pygments = ">=2.14" -requests = ">=2.25.0" -snowballstemmer = ">=2.0" +importlib-metadata = {version = ">=6.0", markers = "python_version < \"3.10\""} +Jinja2 = ">=3.1" +packaging = ">=23.0" +Pygments = ">=2.17" +requests = ">=2.30.0" +snowballstemmer = ">=2.2" sphinxcontrib-applehelp = "*" sphinxcontrib-devhelp = "*" sphinxcontrib-htmlhelp = ">=2.0.0" @@ -2454,22 +2855,22 @@ tomli = {version = ">=2", markers = "python_version < \"3.11\""} [package.extras] docs = ["sphinxcontrib-websupport"] -lint = ["flake8 (>=3.5.0)", "importlib_metadata", "mypy (==1.9.0)", "pytest (>=6.0)", "ruff (==0.3.7)", "sphinx-lint", "tomli", "types-docutils", "types-requests"] -test = ["cython (>=3.0)", "defusedxml (>=0.7.1)", "pytest (>=6.0)", "setuptools (>=67.0)"] +lint = ["flake8 (>=6.0)", "importlib-metadata (>=6.0)", "mypy (==1.10.1)", "pytest (>=6.0)", "ruff (==0.5.2)", "sphinx-lint (>=0.9)", "tomli (>=2)", "types-docutils (==0.21.0.20240711)", "types-requests (>=2.30.0)"] +test = ["cython (>=3.0)", "defusedxml (>=0.7.1)", "pytest (>=8.0)", "setuptools (>=70.0)", "typing_extensions (>=4.9)"] [[package]] name = "sphinx-autobuild" -version = "2024.4.16" +version = "2024.9.18" description = "Rebuild Sphinx documentation on changes, with hot reloading in the browser." optional = false python-versions = ">=3.9" files = [ - {file = "sphinx_autobuild-2024.4.16-py3-none-any.whl", hash = "sha256:f2522779d30fcbf0253e09714f274ce8c608cb6ebcd67922b1c54de59faba702"}, - {file = "sphinx_autobuild-2024.4.16.tar.gz", hash = "sha256:1c0ed37a1970eed197f9c5a66d65759e7c4e4cba7b5a5d77940752bf1a59f2c7"}, + {file = "sphinx_autobuild-2024.9.18-py3-none-any.whl", hash = "sha256:06b550d0bfb71bbc1e27c6c28c404f7f8932599cb9a3f748d0cf5f906193b1f5"}, + {file = "sphinx_autobuild-2024.9.18.tar.gz", hash = "sha256:af6e7ba5456c3b9473b1c03b8ce160c657f90851b28718429b33b5552e677b94"}, ] [package.dependencies] -colorama = "*" +colorama = ">=0.4.6" sphinx = "*" starlette = ">=0.35" uvicorn = ">=0.25" @@ -2477,7 +2878,7 @@ watchfiles = ">=0.20" websockets = ">=11" [package.extras] -test = ["pytest (>=6)"] +test = ["httpx", "pytest (>=6)"] [[package]] name = "sphinx-click" @@ -2516,49 +2917,49 @@ dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client", "wheel"] [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.8" +version = "2.0.0" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_applehelp-1.0.8-py3-none-any.whl", hash = "sha256:cb61eb0ec1b61f349e5cc36b2028e9e7ca765be05e49641c97241274753067b4"}, - {file = "sphinxcontrib_applehelp-1.0.8.tar.gz", hash = "sha256:c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619"}, + {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, + {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-devhelp" -version = "1.0.6" +version = "2.0.0" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_devhelp-1.0.6-py3-none-any.whl", hash = "sha256:6485d09629944511c893fa11355bda18b742b83a2b181f9a009f7e500595c90f"}, - {file = "sphinxcontrib_devhelp-1.0.6.tar.gz", hash = "sha256:9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"}, + {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, + {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.5" +version = "2.1.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_htmlhelp-2.0.5-py3-none-any.whl", hash = "sha256:393f04f112b4d2f53d93448d4bce35842f62b307ccdc549ec1585e950bc35e04"}, - {file = "sphinxcontrib_htmlhelp-2.0.5.tar.gz", hash = "sha256:0dc87637d5de53dd5eec3a6a01753b1ccf99494bd756aafecd74b4fa9e729015"}, + {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, + {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["html5lib", "pytest"] @@ -2592,45 +2993,45 @@ test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" -version = "1.0.7" +version = "2.0.0" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_qthelp-1.0.7-py3-none-any.whl", hash = "sha256:e2ae3b5c492d58fcbd73281fbd27e34b8393ec34a073c792642cd8e529288182"}, - {file = "sphinxcontrib_qthelp-1.0.7.tar.gz", hash = "sha256:053dedc38823a80a7209a80860b16b722e9e0209e32fea98c90e4e6624588ed6"}, + {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, + {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] -test = ["pytest"] +test = ["defusedxml (>=0.7.1)", "pytest"] [[package]] name = "sphinxcontrib-serializinghtml" -version = "1.1.10" +version = "2.0.0" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_serializinghtml-1.1.10-py3-none-any.whl", hash = "sha256:326369b8df80a7d2d8d7f99aa5ac577f51ea51556ed974e7716cfd4fca3f6cb7"}, - {file = "sphinxcontrib_serializinghtml-1.1.10.tar.gz", hash = "sha256:93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"}, + {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, + {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "starlette" -version = "0.37.2" +version = "0.38.5" description = "The little ASGI library that shines." optional = false python-versions = ">=3.8" files = [ - {file = "starlette-0.37.2-py3-none-any.whl", hash = "sha256:6fe59f29268538e5d0d182f2791a479a0c64638e6935d1c6989e63fb2699c6ee"}, - {file = "starlette-0.37.2.tar.gz", hash = "sha256:9af890290133b79fc3db55474ade20f6220a364a0402e0b556e7cd5e1e093823"}, + {file = "starlette-0.38.5-py3-none-any.whl", hash = "sha256:632f420a9d13e3ee2a6f18f437b0a9f1faecb0bc42e1942aa2ea0e379a4c4206"}, + {file = "starlette-0.38.5.tar.gz", hash = "sha256:04a92830a9b6eb1442c766199d62260c3d4dc9c4f9188360626b1e0273cb7077"}, ] [package.dependencies] @@ -2642,13 +3043,13 @@ full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.7 [[package]] name = "tabulate" -version = "0.8.10" +version = "0.9.0" description = "Pretty-print tabular data" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" files = [ - {file = "tabulate-0.8.10-py3-none-any.whl", hash = "sha256:0ba055423dbaa164b9e456abe7920c5e8ed33fcc16f6d1b2f2d152c8e1e8b4fc"}, - {file = "tabulate-0.8.10.tar.gz", hash = "sha256:6c57f3f3dd7ac2782770155f3adb2db0b1a269637e42f27599925e64b114f519"}, + {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, + {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, ] [package.extras] @@ -2686,15 +3087,42 @@ files = [ {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] +[[package]] +name = "tox" +version = "4.19.0" +description = "tox is a generic virtualenv management and test command line tool" +optional = false +python-versions = ">=3.8" +files = [ + {file = "tox-4.19.0-py3-none-any.whl", hash = "sha256:6e20a520db7710f6980b8ec96bde189d6b8cf41b327ec703b03e1a2a447b1aaf"}, + {file = "tox-4.19.0.tar.gz", hash = "sha256:66177d887f9d7ef8eaa9b58b187f7b865fa4c58650086c01336e82c9831e1867"}, +] + +[package.dependencies] +cachetools = ">=5.5" +chardet = ">=5.2" +colorama = ">=0.4.6" +filelock = ">=3.15.4" +packaging = ">=24.1" +platformdirs = ">=4.2.2" +pluggy = ">=1.5" +pyproject-api = ">=1.7.1" +tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} +virtualenv = ">=20.26.3" + +[package.extras] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-argparse-cli (>=1.17)", "sphinx-autodoc-typehints (>=2.4)", "sphinx-copybutton (>=0.5.2)", "sphinx-inline-tabs (>=2023.4.21)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=24.8)"] +testing = ["build[virtualenv] (>=1.2.2)", "covdefaults (>=2.3)", "detect-test-pollution (>=1.2)", "devpi-process (>=1)", "diff-cover (>=9.1.1)", "distlib (>=0.3.8)", "flaky (>=3.8.1)", "hatch-vcs (>=0.4)", "hatchling (>=1.25)", "psutil (>=6)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-xdist (>=3.6.1)", "re-assert (>=1.1)", "setuptools (>=74.1.2)", "time-machine (>=2.15)", "wheel (>=0.44)"] + [[package]] name = "tqdm" -version = "4.66.4" +version = "4.66.5" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.4-py3-none-any.whl", hash = "sha256:b75ca56b413b030bc3f00af51fd2c1a1a5eac6a0c1cca83cbb37a5c52abce644"}, - {file = "tqdm-4.66.4.tar.gz", hash = "sha256:e4d936c9de8727928f3be6079590e97d9abfe8d39a590be678eb5919ffc186bb"}, + {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, + {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, ] [package.dependencies] @@ -2722,19 +3150,19 @@ numpy = ">=1.15" [[package]] name = "tsam" -version = "2.3.1" +version = "2.3.3" description = "Time series aggregation module (tsam) to create typical periods" optional = false -python-versions = "*" +python-versions = ">=3.9" files = [ - {file = "tsam-2.3.1.tar.gz", hash = "sha256:ce75db4e18f3110c08bd78325ae368b2259688ad93f5bf0b72813ff6e0aa6503"}, + {file = "tsam-2.3.3.tar.gz", hash = "sha256:1a818164dbd4bbeded3f209c82d2644666ead03c430b128963e13dab68892069"}, ] [package.dependencies] highspy = "*" networkx = "*" -numpy = ">=1.11.0" -pandas = ">=0.18.1" +numpy = ">=1.20.0" +pandas = ">=2.0.3" pyomo = ">=6.4.3" scikit-learn = ">=0.0" tqdm = "*" @@ -2763,13 +3191,13 @@ files = [ [[package]] name = "urllib3" -version = "2.2.1" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, - {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] @@ -2780,13 +3208,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "uvicorn" -version = "0.30.1" +version = "0.30.6" description = "The lightning-fast ASGI server." optional = false python-versions = ">=3.8" files = [ - {file = "uvicorn-0.30.1-py3-none-any.whl", hash = "sha256:cd17daa7f3b9d7a24de3617820e634d0933b69eed8e33a516071174427238c81"}, - {file = "uvicorn-0.30.1.tar.gz", hash = "sha256:d46cd8e0fd80240baffbcd9ec1012a712938754afcf81bce56c024c1656aece8"}, + {file = "uvicorn-0.30.6-py3-none-any.whl", hash = "sha256:65fd46fe3fda5bdc1b03b94eb634923ff18cd35b2f084813ea79d1f103f711b5"}, + {file = "uvicorn-0.30.6.tar.gz", hash = "sha256:4b15decdda1e72be08209e860a1e10e92439ad5b97cf44cc945fcbee66fc5788"}, ] [package.dependencies] @@ -2815,88 +3243,116 @@ jsonschema = "*" dev = ["check-manifest", "sphinx", "sphinx-rtd-theme", "sphinx-tabs"] test = ["codecov", "coverage", "pyfakefs", "pytest", "pytest-benchmark", "pytest-cov", "tox"] +[[package]] +name = "virtualenv" +version = "20.26.5" +description = "Virtual Python Environment builder" +optional = false +python-versions = ">=3.7" +files = [ + {file = "virtualenv-20.26.5-py3-none-any.whl", hash = "sha256:4f3ac17b81fba3ce3bd6f4ead2749a72da5929c01774948e243db9ba41df4ff6"}, + {file = "virtualenv-20.26.5.tar.gz", hash = "sha256:ce489cac131aa58f4b25e321d6d186171f78e6cb13fafbf32a840cee67733ff4"}, +] + +[package.dependencies] +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<5" + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] + [[package]] name = "watchfiles" -version = "0.22.0" +version = "0.24.0" description = "Simple, modern and high performance file watching and code reload in python." optional = false python-versions = ">=3.8" files = [ - {file = "watchfiles-0.22.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:da1e0a8caebf17976e2ffd00fa15f258e14749db5e014660f53114b676e68538"}, - {file = "watchfiles-0.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61af9efa0733dc4ca462347becb82e8ef4945aba5135b1638bfc20fad64d4f0e"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d9188979a58a096b6f8090e816ccc3f255f137a009dd4bbec628e27696d67c1"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2bdadf6b90c099ca079d468f976fd50062905d61fae183f769637cb0f68ba59a"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:067dea90c43bf837d41e72e546196e674f68c23702d3ef80e4e816937b0a3ffd"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbf8a20266136507abf88b0df2328e6a9a7c7309e8daff124dda3803306a9fdb"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1235c11510ea557fe21be5d0e354bae2c655a8ee6519c94617fe63e05bca4171"}, - {file = "watchfiles-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2444dc7cb9d8cc5ab88ebe792a8d75709d96eeef47f4c8fccb6df7c7bc5be71"}, - {file = "watchfiles-0.22.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c5af2347d17ab0bd59366db8752d9e037982e259cacb2ba06f2c41c08af02c39"}, - {file = "watchfiles-0.22.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9624a68b96c878c10437199d9a8b7d7e542feddda8d5ecff58fdc8e67b460848"}, - {file = "watchfiles-0.22.0-cp310-none-win32.whl", hash = "sha256:4b9f2a128a32a2c273d63eb1fdbf49ad64852fc38d15b34eaa3f7ca2f0d2b797"}, - {file = "watchfiles-0.22.0-cp310-none-win_amd64.whl", hash = "sha256:2627a91e8110b8de2406d8b2474427c86f5a62bf7d9ab3654f541f319ef22bcb"}, - {file = "watchfiles-0.22.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:8c39987a1397a877217be1ac0fb1d8b9f662c6077b90ff3de2c05f235e6a8f96"}, - {file = "watchfiles-0.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a927b3034d0672f62fb2ef7ea3c9fc76d063c4b15ea852d1db2dc75fe2c09696"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:052d668a167e9fc345c24203b104c313c86654dd6c0feb4b8a6dfc2462239249"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e45fb0d70dda1623a7045bd00c9e036e6f1f6a85e4ef2c8ae602b1dfadf7550"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c49b76a78c156979759d759339fb62eb0549515acfe4fd18bb151cc07366629c"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4a65474fd2b4c63e2c18ac67a0c6c66b82f4e73e2e4d940f837ed3d2fd9d4da"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1cc0cba54f47c660d9fa3218158b8963c517ed23bd9f45fe463f08262a4adae1"}, - {file = "watchfiles-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ebe84a035993bb7668f58a0ebf998174fb723a39e4ef9fce95baabb42b787f"}, - {file = "watchfiles-0.22.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e0f0a874231e2839abbf473256efffe577d6ee2e3bfa5b540479e892e47c172d"}, - {file = "watchfiles-0.22.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:213792c2cd3150b903e6e7884d40660e0bcec4465e00563a5fc03f30ea9c166c"}, - {file = "watchfiles-0.22.0-cp311-none-win32.whl", hash = "sha256:b44b70850f0073b5fcc0b31ede8b4e736860d70e2dbf55701e05d3227a154a67"}, - {file = "watchfiles-0.22.0-cp311-none-win_amd64.whl", hash = "sha256:00f39592cdd124b4ec5ed0b1edfae091567c72c7da1487ae645426d1b0ffcad1"}, - {file = "watchfiles-0.22.0-cp311-none-win_arm64.whl", hash = "sha256:3218a6f908f6a276941422b035b511b6d0d8328edd89a53ae8c65be139073f84"}, - {file = "watchfiles-0.22.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:c7b978c384e29d6c7372209cbf421d82286a807bbcdeb315427687f8371c340a"}, - {file = "watchfiles-0.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd4c06100bce70a20c4b81e599e5886cf504c9532951df65ad1133e508bf20be"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:425440e55cd735386ec7925f64d5dde392e69979d4c8459f6bb4e920210407f2"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:68fe0c4d22332d7ce53ad094622b27e67440dacefbaedd29e0794d26e247280c"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8a31bfd98f846c3c284ba694c6365620b637debdd36e46e1859c897123aa232"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc2e8fe41f3cac0660197d95216c42910c2b7e9c70d48e6d84e22f577d106fc1"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55b7cc10261c2786c41d9207193a85c1db1b725cf87936df40972aab466179b6"}, - {file = "watchfiles-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28585744c931576e535860eaf3f2c0ec7deb68e3b9c5a85ca566d69d36d8dd27"}, - {file = "watchfiles-0.22.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:00095dd368f73f8f1c3a7982a9801190cc88a2f3582dd395b289294f8975172b"}, - {file = "watchfiles-0.22.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:52fc9b0dbf54d43301a19b236b4a4614e610605f95e8c3f0f65c3a456ffd7d35"}, - {file = "watchfiles-0.22.0-cp312-none-win32.whl", hash = "sha256:581f0a051ba7bafd03e17127735d92f4d286af941dacf94bcf823b101366249e"}, - {file = "watchfiles-0.22.0-cp312-none-win_amd64.whl", hash = "sha256:aec83c3ba24c723eac14225194b862af176d52292d271c98820199110e31141e"}, - {file = "watchfiles-0.22.0-cp312-none-win_arm64.whl", hash = "sha256:c668228833c5619f6618699a2c12be057711b0ea6396aeaece4ded94184304ea"}, - {file = "watchfiles-0.22.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d47e9ef1a94cc7a536039e46738e17cce058ac1593b2eccdede8bf72e45f372a"}, - {file = "watchfiles-0.22.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28f393c1194b6eaadcdd8f941307fc9bbd7eb567995232c830f6aef38e8a6e88"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd64f3a4db121bc161644c9e10a9acdb836853155a108c2446db2f5ae1778c3d"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2abeb79209630da981f8ebca30a2c84b4c3516a214451bfc5f106723c5f45843"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4cc382083afba7918e32d5ef12321421ef43d685b9a67cc452a6e6e18920890e"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d048ad5d25b363ba1d19f92dcf29023988524bee6f9d952130b316c5802069cb"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:103622865599f8082f03af4214eaff90e2426edff5e8522c8f9e93dc17caee13"}, - {file = "watchfiles-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3e1f3cf81f1f823e7874ae563457828e940d75573c8fbf0ee66818c8b6a9099"}, - {file = "watchfiles-0.22.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8597b6f9dc410bdafc8bb362dac1cbc9b4684a8310e16b1ff5eee8725d13dcd6"}, - {file = "watchfiles-0.22.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0b04a2cbc30e110303baa6d3ddce8ca3664bc3403be0f0ad513d1843a41c97d1"}, - {file = "watchfiles-0.22.0-cp38-none-win32.whl", hash = "sha256:b610fb5e27825b570554d01cec427b6620ce9bd21ff8ab775fc3a32f28bba63e"}, - {file = "watchfiles-0.22.0-cp38-none-win_amd64.whl", hash = "sha256:fe82d13461418ca5e5a808a9e40f79c1879351fcaeddbede094028e74d836e86"}, - {file = "watchfiles-0.22.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3973145235a38f73c61474d56ad6199124e7488822f3a4fc97c72009751ae3b0"}, - {file = "watchfiles-0.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:280a4afbc607cdfc9571b9904b03a478fc9f08bbeec382d648181c695648202f"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a0d883351a34c01bd53cfa75cd0292e3f7e268bacf2f9e33af4ecede7e21d1d"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9165bcab15f2b6d90eedc5c20a7f8a03156b3773e5fb06a790b54ccecdb73385"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc1b9b56f051209be458b87edb6856a449ad3f803315d87b2da4c93b43a6fe72"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dc1fc25a1dedf2dd952909c8e5cb210791e5f2d9bc5e0e8ebc28dd42fed7562"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dc92d2d2706d2b862ce0568b24987eba51e17e14b79a1abcd2edc39e48e743c8"}, - {file = "watchfiles-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97b94e14b88409c58cdf4a8eaf0e67dfd3ece7e9ce7140ea6ff48b0407a593ec"}, - {file = "watchfiles-0.22.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:96eec15e5ea7c0b6eb5bfffe990fc7c6bd833acf7e26704eb18387fb2f5fd087"}, - {file = "watchfiles-0.22.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:28324d6b28bcb8d7c1041648d7b63be07a16db5510bea923fc80b91a2a6cbed6"}, - {file = "watchfiles-0.22.0-cp39-none-win32.whl", hash = "sha256:8c3e3675e6e39dc59b8fe5c914a19d30029e36e9f99468dddffd432d8a7b1c93"}, - {file = "watchfiles-0.22.0-cp39-none-win_amd64.whl", hash = "sha256:25c817ff2a86bc3de3ed2df1703e3d24ce03479b27bb4527c57e722f8554d971"}, - {file = "watchfiles-0.22.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b810a2c7878cbdecca12feae2c2ae8af59bea016a78bc353c184fa1e09f76b68"}, - {file = "watchfiles-0.22.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7e1f9c5d1160d03b93fc4b68a0aeb82fe25563e12fbcdc8507f8434ab6f823c"}, - {file = "watchfiles-0.22.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:030bc4e68d14bcad2294ff68c1ed87215fbd9a10d9dea74e7cfe8a17869785ab"}, - {file = "watchfiles-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ace7d060432acde5532e26863e897ee684780337afb775107c0a90ae8dbccfd2"}, - {file = "watchfiles-0.22.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5834e1f8b71476a26df97d121c0c0ed3549d869124ed2433e02491553cb468c2"}, - {file = "watchfiles-0.22.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:0bc3b2f93a140df6806c8467c7f51ed5e55a931b031b5c2d7ff6132292e803d6"}, - {file = "watchfiles-0.22.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fdebb655bb1ba0122402352b0a4254812717a017d2dc49372a1d47e24073795"}, - {file = "watchfiles-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c8e0aa0e8cc2a43561e0184c0513e291ca891db13a269d8d47cb9841ced7c71"}, - {file = "watchfiles-0.22.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2f350cbaa4bb812314af5dab0eb8d538481e2e2279472890864547f3fe2281ed"}, - {file = "watchfiles-0.22.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:7a74436c415843af2a769b36bf043b6ccbc0f8d784814ba3d42fc961cdb0a9dc"}, - {file = "watchfiles-0.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00ad0bcd399503a84cc688590cdffbe7a991691314dde5b57b3ed50a41319a31"}, - {file = "watchfiles-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72a44e9481afc7a5ee3291b09c419abab93b7e9c306c9ef9108cb76728ca58d2"}, - {file = "watchfiles-0.22.0.tar.gz", hash = "sha256:988e981aaab4f3955209e7e28c7794acdb690be1efa7f16f8ea5aba7ffdadacb"}, + {file = "watchfiles-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:083dc77dbdeef09fa44bb0f4d1df571d2e12d8a8f985dccde71ac3ac9ac067a0"}, + {file = "watchfiles-0.24.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e94e98c7cb94cfa6e071d401ea3342767f28eb5a06a58fafdc0d2a4974f4f35c"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82ae557a8c037c42a6ef26c494d0631cacca040934b101d001100ed93d43f361"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:acbfa31e315a8f14fe33e3542cbcafc55703b8f5dcbb7c1eecd30f141df50db3"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b74fdffce9dfcf2dc296dec8743e5b0332d15df19ae464f0e249aa871fc1c571"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:449f43f49c8ddca87c6b3980c9284cab6bd1f5c9d9a2b00012adaaccd5e7decd"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4abf4ad269856618f82dee296ac66b0cd1d71450fc3c98532d93798e73399b7a"}, + {file = "watchfiles-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f895d785eb6164678ff4bb5cc60c5996b3ee6df3edb28dcdeba86a13ea0465e"}, + {file = "watchfiles-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ae3e208b31be8ce7f4c2c0034f33406dd24fbce3467f77223d10cd86778471c"}, + {file = "watchfiles-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2efec17819b0046dde35d13fb8ac7a3ad877af41ae4640f4109d9154ed30a188"}, + {file = "watchfiles-0.24.0-cp310-none-win32.whl", hash = "sha256:6bdcfa3cd6fdbdd1a068a52820f46a815401cbc2cb187dd006cb076675e7b735"}, + {file = "watchfiles-0.24.0-cp310-none-win_amd64.whl", hash = "sha256:54ca90a9ae6597ae6dc00e7ed0a040ef723f84ec517d3e7ce13e63e4bc82fa04"}, + {file = "watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:bdcd5538e27f188dd3c804b4a8d5f52a7fc7f87e7fd6b374b8e36a4ca03db428"}, + {file = "watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2dadf8a8014fde6addfd3c379e6ed1a981c8f0a48292d662e27cabfe4239c83c"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6509ed3f467b79d95fc62a98229f79b1a60d1b93f101e1c61d10c95a46a84f43"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8360f7314a070c30e4c976b183d1d8d1585a4a50c5cb603f431cebcbb4f66327"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:316449aefacf40147a9efaf3bd7c9bdd35aaba9ac5d708bd1eb5763c9a02bef5"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73bde715f940bea845a95247ea3e5eb17769ba1010efdc938ffcb967c634fa61"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3770e260b18e7f4e576edca4c0a639f704088602e0bc921c5c2e721e3acb8d15"}, + {file = "watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa0fd7248cf533c259e59dc593a60973a73e881162b1a2f73360547132742823"}, + {file = "watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d7a2e3b7f5703ffbd500dabdefcbc9eafeff4b9444bbdd5d83d79eedf8428fab"}, + {file = "watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d831ee0a50946d24a53821819b2327d5751b0c938b12c0653ea5be7dea9c82ec"}, + {file = "watchfiles-0.24.0-cp311-none-win32.whl", hash = "sha256:49d617df841a63b4445790a254013aea2120357ccacbed00253f9c2b5dc24e2d"}, + {file = "watchfiles-0.24.0-cp311-none-win_amd64.whl", hash = "sha256:d3dcb774e3568477275cc76554b5a565024b8ba3a0322f77c246bc7111c5bb9c"}, + {file = "watchfiles-0.24.0-cp311-none-win_arm64.whl", hash = "sha256:9301c689051a4857d5b10777da23fafb8e8e921bcf3abe6448a058d27fb67633"}, + {file = "watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7211b463695d1e995ca3feb38b69227e46dbd03947172585ecb0588f19b0d87a"}, + {file = "watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b8693502d1967b00f2fb82fc1e744df128ba22f530e15b763c8d82baee15370"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdab9555053399318b953a1fe1f586e945bc8d635ce9d05e617fd9fe3a4687d6"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:34e19e56d68b0dad5cff62273107cf5d9fbaf9d75c46277aa5d803b3ef8a9e9b"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:41face41f036fee09eba33a5b53a73e9a43d5cb2c53dad8e61fa6c9f91b5a51e"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5148c2f1ea043db13ce9b0c28456e18ecc8f14f41325aa624314095b6aa2e9ea"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e4bd963a935aaf40b625c2499f3f4f6bbd0c3776f6d3bc7c853d04824ff1c9f"}, + {file = "watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c79d7719d027b7a42817c5d96461a99b6a49979c143839fc37aa5748c322f234"}, + {file = "watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:32aa53a9a63b7f01ed32e316e354e81e9da0e6267435c7243bf8ae0f10b428ef"}, + {file = "watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ce72dba6a20e39a0c628258b5c308779b8697f7676c254a845715e2a1039b968"}, + {file = "watchfiles-0.24.0-cp312-none-win32.whl", hash = "sha256:d9018153cf57fc302a2a34cb7564870b859ed9a732d16b41a9b5cb2ebed2d444"}, + {file = "watchfiles-0.24.0-cp312-none-win_amd64.whl", hash = "sha256:551ec3ee2a3ac9cbcf48a4ec76e42c2ef938a7e905a35b42a1267fa4b1645896"}, + {file = "watchfiles-0.24.0-cp312-none-win_arm64.whl", hash = "sha256:b52a65e4ea43c6d149c5f8ddb0bef8d4a1e779b77591a458a893eb416624a418"}, + {file = "watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3d2e3ab79a1771c530233cadfd277fcc762656d50836c77abb2e5e72b88e3a48"}, + {file = "watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:327763da824817b38ad125dcd97595f942d720d32d879f6c4ddf843e3da3fe90"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd82010f8ab451dabe36054a1622870166a67cf3fce894f68895db6f74bbdc94"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d64ba08db72e5dfd5c33be1e1e687d5e4fcce09219e8aee893a4862034081d4e"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1cf1f6dd7825053f3d98f6d33f6464ebdd9ee95acd74ba2c34e183086900a827"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43e3e37c15a8b6fe00c1bce2473cfa8eb3484bbeecf3aefbf259227e487a03df"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88bcd4d0fe1d8ff43675360a72def210ebad3f3f72cabfeac08d825d2639b4ab"}, + {file = "watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:999928c6434372fde16c8f27143d3e97201160b48a614071261701615a2a156f"}, + {file = "watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:30bbd525c3262fd9f4b1865cb8d88e21161366561cd7c9e1194819e0a33ea86b"}, + {file = "watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:edf71b01dec9f766fb285b73930f95f730bb0943500ba0566ae234b5c1618c18"}, + {file = "watchfiles-0.24.0-cp313-none-win32.whl", hash = "sha256:f4c96283fca3ee09fb044f02156d9570d156698bc3734252175a38f0e8975f07"}, + {file = "watchfiles-0.24.0-cp313-none-win_amd64.whl", hash = "sha256:a974231b4fdd1bb7f62064a0565a6b107d27d21d9acb50c484d2cdba515b9366"}, + {file = "watchfiles-0.24.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:ee82c98bed9d97cd2f53bdb035e619309a098ea53ce525833e26b93f673bc318"}, + {file = "watchfiles-0.24.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fd92bbaa2ecdb7864b7600dcdb6f2f1db6e0346ed425fbd01085be04c63f0b05"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f83df90191d67af5a831da3a33dd7628b02a95450e168785586ed51e6d28943c"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fca9433a45f18b7c779d2bae7beeec4f740d28b788b117a48368d95a3233ed83"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b995bfa6bf01a9e09b884077a6d37070464b529d8682d7691c2d3b540d357a0c"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed9aba6e01ff6f2e8285e5aa4154e2970068fe0fc0998c4380d0e6278222269b"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5171ef898299c657685306d8e1478a45e9303ddcd8ac5fed5bd52ad4ae0b69b"}, + {file = "watchfiles-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4933a508d2f78099162da473841c652ad0de892719043d3f07cc83b33dfd9d91"}, + {file = "watchfiles-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:95cf3b95ea665ab03f5a54765fa41abf0529dbaf372c3b83d91ad2cfa695779b"}, + {file = "watchfiles-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:01def80eb62bd5db99a798d5e1f5f940ca0a05986dcfae21d833af7a46f7ee22"}, + {file = "watchfiles-0.24.0-cp38-none-win32.whl", hash = "sha256:4d28cea3c976499475f5b7a2fec6b3a36208656963c1a856d328aeae056fc5c1"}, + {file = "watchfiles-0.24.0-cp38-none-win_amd64.whl", hash = "sha256:21ab23fdc1208086d99ad3f69c231ba265628014d4aed31d4e8746bd59e88cd1"}, + {file = "watchfiles-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b665caeeda58625c3946ad7308fbd88a086ee51ccb706307e5b1fa91556ac886"}, + {file = "watchfiles-0.24.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5c51749f3e4e269231510da426ce4a44beb98db2dce9097225c338f815b05d4f"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82b2509f08761f29a0fdad35f7e1638b8ab1adfa2666d41b794090361fb8b855"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a60e2bf9dc6afe7f743e7c9b149d1fdd6dbf35153c78fe3a14ae1a9aee3d98b"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f7d9b87c4c55e3ea8881dfcbf6d61ea6775fffed1fedffaa60bd047d3c08c430"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:78470906a6be5199524641f538bd2c56bb809cd4bf29a566a75051610bc982c3"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07cdef0c84c03375f4e24642ef8d8178e533596b229d32d2bbd69e5128ede02a"}, + {file = "watchfiles-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d337193bbf3e45171c8025e291530fb7548a93c45253897cd764a6a71c937ed9"}, + {file = "watchfiles-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ec39698c45b11d9694a1b635a70946a5bad066b593af863460a8e600f0dff1ca"}, + {file = "watchfiles-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e28d91ef48eab0afb939fa446d8ebe77e2f7593f5f463fd2bb2b14132f95b6e"}, + {file = "watchfiles-0.24.0-cp39-none-win32.whl", hash = "sha256:7138eff8baa883aeaa074359daabb8b6c1e73ffe69d5accdc907d62e50b1c0da"}, + {file = "watchfiles-0.24.0-cp39-none-win_amd64.whl", hash = "sha256:b3ef2c69c655db63deb96b3c3e587084612f9b1fa983df5e0c3379d41307467f"}, + {file = "watchfiles-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:632676574429bee8c26be8af52af20e0c718cc7f5f67f3fb658c71928ccd4f7f"}, + {file = "watchfiles-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a2a9891723a735d3e2540651184be6fd5b96880c08ffe1a98bae5017e65b544b"}, + {file = "watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a7fa2bc0efef3e209a8199fd111b8969fe9db9c711acc46636686331eda7dd4"}, + {file = "watchfiles-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01550ccf1d0aed6ea375ef259706af76ad009ef5b0203a3a4cce0f6024f9b68a"}, + {file = "watchfiles-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:96619302d4374de5e2345b2b622dc481257a99431277662c30f606f3e22f42be"}, + {file = "watchfiles-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:85d5f0c7771dcc7a26c7a27145059b6bb0ce06e4e751ed76cdf123d7039b60b5"}, + {file = "watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951088d12d339690a92cef2ec5d3cfd957692834c72ffd570ea76a6790222777"}, + {file = "watchfiles-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49fb58bcaa343fedc6a9e91f90195b20ccb3135447dc9e4e2570c3a39565853e"}, + {file = "watchfiles-0.24.0.tar.gz", hash = "sha256:afb72325b74fa7a428c009c1b8be4b4d7c2afedafb2982827ef2156646df2fe1"}, ] [package.dependencies] @@ -2904,101 +3360,119 @@ anyio = ">=3.0.0" [[package]] name = "websockets" -version = "12.0" +version = "13.0.1" description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" optional = false python-versions = ">=3.8" files = [ - {file = "websockets-12.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d554236b2a2006e0ce16315c16eaa0d628dab009c33b63ea03f41c6107958374"}, - {file = "websockets-12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d225bb6886591b1746b17c0573e29804619c8f755b5598d875bb4235ea639be"}, - {file = "websockets-12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb809e816916a3b210bed3c82fb88eaf16e8afcf9c115ebb2bacede1797d2547"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c588f6abc13f78a67044c6b1273a99e1cf31038ad51815b3b016ce699f0d75c2"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5aa9348186d79a5f232115ed3fa9020eab66d6c3437d72f9d2c8ac0c6858c558"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6350b14a40c95ddd53e775dbdbbbc59b124a5c8ecd6fbb09c2e52029f7a9f480"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:70ec754cc2a769bcd218ed8d7209055667b30860ffecb8633a834dde27d6307c"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e96f5ed1b83a8ddb07909b45bd94833b0710f738115751cdaa9da1fb0cb66e8"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4d87be612cbef86f994178d5186add3d94e9f31cc3cb499a0482b866ec477603"}, - {file = "websockets-12.0-cp310-cp310-win32.whl", hash = "sha256:befe90632d66caaf72e8b2ed4d7f02b348913813c8b0a32fae1cc5fe3730902f"}, - {file = "websockets-12.0-cp310-cp310-win_amd64.whl", hash = "sha256:363f57ca8bc8576195d0540c648aa58ac18cf85b76ad5202b9f976918f4219cf"}, - {file = "websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4"}, - {file = "websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f"}, - {file = "websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53"}, - {file = "websockets-12.0-cp311-cp311-win32.whl", hash = "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402"}, - {file = "websockets-12.0-cp311-cp311-win_amd64.whl", hash = "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b"}, - {file = "websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df"}, - {file = "websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc"}, - {file = "websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113"}, - {file = "websockets-12.0-cp312-cp312-win32.whl", hash = "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d"}, - {file = "websockets-12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f"}, - {file = "websockets-12.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5f6ffe2c6598f7f7207eef9a1228b6f5c818f9f4d53ee920aacd35cec8110438"}, - {file = "websockets-12.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9edf3fc590cc2ec20dc9d7a45108b5bbaf21c0d89f9fd3fd1685e223771dc0b2"}, - {file = "websockets-12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8572132c7be52632201a35f5e08348137f658e5ffd21f51f94572ca6c05ea81d"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604428d1b87edbf02b233e2c207d7d528460fa978f9e391bd8aaf9c8311de137"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1a9d160fd080c6285e202327aba140fc9a0d910b09e423afff4ae5cbbf1c7205"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87b4aafed34653e465eb77b7c93ef058516cb5acf3eb21e42f33928616172def"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b2ee7288b85959797970114deae81ab41b731f19ebcd3bd499ae9ca0e3f1d2c8"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7fa3d25e81bfe6a89718e9791128398a50dec6d57faf23770787ff441d851967"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a571f035a47212288e3b3519944f6bf4ac7bc7553243e41eac50dd48552b6df7"}, - {file = "websockets-12.0-cp38-cp38-win32.whl", hash = "sha256:3c6cc1360c10c17463aadd29dd3af332d4a1adaa8796f6b0e9f9df1fdb0bad62"}, - {file = "websockets-12.0-cp38-cp38-win_amd64.whl", hash = "sha256:1bf386089178ea69d720f8db6199a0504a406209a0fc23e603b27b300fdd6892"}, - {file = "websockets-12.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab3d732ad50a4fbd04a4490ef08acd0517b6ae6b77eb967251f4c263011a990d"}, - {file = "websockets-12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1d9697f3337a89691e3bd8dc56dea45a6f6d975f92e7d5f773bc715c15dde28"}, - {file = "websockets-12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1df2fbd2c8a98d38a66f5238484405b8d1d16f929bb7a33ed73e4801222a6f53"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23509452b3bc38e3a057382c2e941d5ac2e01e251acce7adc74011d7d8de434c"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e5fc14ec6ea568200ea4ef46545073da81900a2b67b3e666f04adf53ad452ec"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46e71dbbd12850224243f5d2aeec90f0aaa0f2dde5aeeb8fc8df21e04d99eff9"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b81f90dcc6c85a9b7f29873beb56c94c85d6f0dac2ea8b60d995bd18bf3e2aae"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a02413bc474feda2849c59ed2dfb2cddb4cd3d2f03a2fedec51d6e959d9b608b"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bbe6013f9f791944ed31ca08b077e26249309639313fff132bfbf3ba105673b9"}, - {file = "websockets-12.0-cp39-cp39-win32.whl", hash = "sha256:cbe83a6bbdf207ff0541de01e11904827540aa069293696dd528a6640bd6a5f6"}, - {file = "websockets-12.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc4e7fa5414512b481a2483775a8e8be7803a35b30ca805afa4998a84f9fd9e8"}, - {file = "websockets-12.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:248d8e2446e13c1d4326e0a6a4e9629cb13a11195051a73acf414812700badbd"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f44069528d45a933997a6fef143030d8ca8042f0dfaad753e2906398290e2870"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4e37d36f0d19f0a4413d3e18c0d03d0c268ada2061868c1e6f5ab1a6d575077"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d829f975fc2e527a3ef2f9c8f25e553eb7bc779c6665e8e1d52aa22800bb38b"}, - {file = "websockets-12.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:2c71bd45a777433dd9113847af751aae36e448bc6b8c361a566cb043eda6ec30"}, - {file = "websockets-12.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0bee75f400895aef54157b36ed6d3b308fcab62e5260703add87f44cee9c82a6"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:423fc1ed29f7512fceb727e2d2aecb952c46aa34895e9ed96071821309951123"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27a5e9964ef509016759f2ef3f2c1e13f403725a5e6a1775555994966a66e931"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3181df4583c4d3994d31fb235dc681d2aaad744fbdbf94c4802485ececdecf2"}, - {file = "websockets-12.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b067cb952ce8bf40115f6c19f478dc71c5e719b7fbaa511359795dfd9d1a6468"}, - {file = "websockets-12.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:00700340c6c7ab788f176d118775202aadea7602c5cc6be6ae127761c16d6b0b"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e469d01137942849cff40517c97a30a93ae79917752b34029f0ec72df6b46399"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffefa1374cd508d633646d51a8e9277763a9b78ae71324183693959cf94635a7"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0cab91b3956dfa9f512147860783a1829a8d905ee218a9837c18f683239611"}, - {file = "websockets-12.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2cb388a5bfb56df4d9a406783b7f9dbefb888c09b71629351cc6b036e9259370"}, - {file = "websockets-12.0-py3-none-any.whl", hash = "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e"}, - {file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"}, + {file = "websockets-13.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1841c9082a3ba4a05ea824cf6d99570a6a2d8849ef0db16e9c826acb28089e8f"}, + {file = "websockets-13.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c5870b4a11b77e4caa3937142b650fbbc0914a3e07a0cf3131f35c0587489c1c"}, + {file = "websockets-13.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f1d3d1f2eb79fe7b0fb02e599b2bf76a7619c79300fc55f0b5e2d382881d4f7f"}, + {file = "websockets-13.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15c7d62ee071fa94a2fc52c2b472fed4af258d43f9030479d9c4a2de885fd543"}, + {file = "websockets-13.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6724b554b70d6195ba19650fef5759ef11346f946c07dbbe390e039bcaa7cc3d"}, + {file = "websockets-13.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56a952fa2ae57a42ba7951e6b2605e08a24801a4931b5644dfc68939e041bc7f"}, + {file = "websockets-13.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:17118647c0ea14796364299e942c330d72acc4b248e07e639d34b75067b3cdd8"}, + {file = "websockets-13.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64a11aae1de4c178fa653b07d90f2fb1a2ed31919a5ea2361a38760192e1858b"}, + {file = "websockets-13.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0617fd0b1d14309c7eab6ba5deae8a7179959861846cbc5cb528a7531c249448"}, + {file = "websockets-13.0.1-cp310-cp310-win32.whl", hash = "sha256:11f9976ecbc530248cf162e359a92f37b7b282de88d1d194f2167b5e7ad80ce3"}, + {file = "websockets-13.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:c3c493d0e5141ec055a7d6809a28ac2b88d5b878bb22df8c621ebe79a61123d0"}, + {file = "websockets-13.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:699ba9dd6a926f82a277063603fc8d586b89f4cb128efc353b749b641fcddda7"}, + {file = "websockets-13.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf2fae6d85e5dc384bf846f8243ddaa9197f3a1a70044f59399af001fd1f51d4"}, + {file = "websockets-13.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:52aed6ef21a0f1a2a5e310fb5c42d7555e9c5855476bbd7173c3aa3d8a0302f2"}, + {file = "websockets-13.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8eb2b9a318542153674c6e377eb8cb9ca0fc011c04475110d3477862f15d29f0"}, + {file = "websockets-13.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5df891c86fe68b2c38da55b7aea7095beca105933c697d719f3f45f4220a5e0e"}, + {file = "websockets-13.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fac2d146ff30d9dd2fcf917e5d147db037a5c573f0446c564f16f1f94cf87462"}, + {file = "websockets-13.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b8ac5b46fd798bbbf2ac6620e0437c36a202b08e1f827832c4bf050da081b501"}, + {file = "websockets-13.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:46af561eba6f9b0848b2c9d2427086cabadf14e0abdd9fde9d72d447df268418"}, + {file = "websockets-13.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b5a06d7f60bc2fc378a333978470dfc4e1415ee52f5f0fce4f7853eb10c1e9df"}, + {file = "websockets-13.0.1-cp311-cp311-win32.whl", hash = "sha256:556e70e4f69be1082e6ef26dcb70efcd08d1850f5d6c5f4f2bcb4e397e68f01f"}, + {file = "websockets-13.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:67494e95d6565bf395476e9d040037ff69c8b3fa356a886b21d8422ad86ae075"}, + {file = "websockets-13.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f9c9e258e3d5efe199ec23903f5da0eeaad58cf6fccb3547b74fd4750e5ac47a"}, + {file = "websockets-13.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6b41a1b3b561f1cba8321fb32987552a024a8f67f0d05f06fcf29f0090a1b956"}, + {file = "websockets-13.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f73e676a46b0fe9426612ce8caeca54c9073191a77c3e9d5c94697aef99296af"}, + {file = "websockets-13.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f613289f4a94142f914aafad6c6c87903de78eae1e140fa769a7385fb232fdf"}, + {file = "websockets-13.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f52504023b1480d458adf496dc1c9e9811df4ba4752f0bc1f89ae92f4f07d0c"}, + {file = "websockets-13.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:139add0f98206cb74109faf3611b7783ceafc928529c62b389917a037d4cfdf4"}, + {file = "websockets-13.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:47236c13be337ef36546004ce8c5580f4b1150d9538b27bf8a5ad8edf23ccfab"}, + {file = "websockets-13.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c44ca9ade59b2e376612df34e837013e2b273e6c92d7ed6636d0556b6f4db93d"}, + {file = "websockets-13.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9bbc525f4be3e51b89b2a700f5746c2a6907d2e2ef4513a8daafc98198b92237"}, + {file = "websockets-13.0.1-cp312-cp312-win32.whl", hash = "sha256:3624fd8664f2577cf8de996db3250662e259bfbc870dd8ebdcf5d7c6ac0b5185"}, + {file = "websockets-13.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0513c727fb8adffa6d9bf4a4463b2bade0186cbd8c3604ae5540fae18a90cb99"}, + {file = "websockets-13.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1ee4cc030a4bdab482a37462dbf3ffb7e09334d01dd37d1063be1136a0d825fa"}, + {file = "websockets-13.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dbb0b697cc0655719522406c059eae233abaa3243821cfdfab1215d02ac10231"}, + {file = "websockets-13.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:acbebec8cb3d4df6e2488fbf34702cbc37fc39ac7abf9449392cefb3305562e9"}, + {file = "websockets-13.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63848cdb6fcc0bf09d4a155464c46c64ffdb5807ede4fb251da2c2692559ce75"}, + {file = "websockets-13.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:872afa52a9f4c414d6955c365b6588bc4401272c629ff8321a55f44e3f62b553"}, + {file = "websockets-13.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e70fec7c54aad4d71eae8e8cab50525e899791fc389ec6f77b95312e4e9920"}, + {file = "websockets-13.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e82db3756ccb66266504f5a3de05ac6b32f287faacff72462612120074103329"}, + {file = "websockets-13.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4e85f46ce287f5c52438bb3703d86162263afccf034a5ef13dbe4318e98d86e7"}, + {file = "websockets-13.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f3fea72e4e6edb983908f0db373ae0732b275628901d909c382aae3b592589f2"}, + {file = "websockets-13.0.1-cp313-cp313-win32.whl", hash = "sha256:254ecf35572fca01a9f789a1d0f543898e222f7b69ecd7d5381d8d8047627bdb"}, + {file = "websockets-13.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:ca48914cdd9f2ccd94deab5bcb5ac98025a5ddce98881e5cce762854a5de330b"}, + {file = "websockets-13.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b74593e9acf18ea5469c3edaa6b27fa7ecf97b30e9dabd5a94c4c940637ab96e"}, + {file = "websockets-13.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:132511bfd42e77d152c919147078460c88a795af16b50e42a0bd14f0ad71ddd2"}, + {file = "websockets-13.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:165bedf13556f985a2aa064309baa01462aa79bf6112fbd068ae38993a0e1f1b"}, + {file = "websockets-13.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e801ca2f448850685417d723ec70298feff3ce4ff687c6f20922c7474b4746ae"}, + {file = "websockets-13.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30d3a1f041360f029765d8704eae606781e673e8918e6b2c792e0775de51352f"}, + {file = "websockets-13.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67648f5e50231b5a7f6d83b32f9c525e319f0ddc841be0de64f24928cd75a603"}, + {file = "websockets-13.0.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:4f0426d51c8f0926a4879390f53c7f5a855e42d68df95fff6032c82c888b5f36"}, + {file = "websockets-13.0.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ef48e4137e8799998a343706531e656fdec6797b80efd029117edacb74b0a10a"}, + {file = "websockets-13.0.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:249aab278810bee585cd0d4de2f08cfd67eed4fc75bde623be163798ed4db2eb"}, + {file = "websockets-13.0.1-cp38-cp38-win32.whl", hash = "sha256:06c0a667e466fcb56a0886d924b5f29a7f0886199102f0a0e1c60a02a3751cb4"}, + {file = "websockets-13.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1f3cf6d6ec1142412d4535adabc6bd72a63f5f148c43fe559f06298bc21953c9"}, + {file = "websockets-13.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1fa082ea38d5de51dd409434edc27c0dcbd5fed2b09b9be982deb6f0508d25bc"}, + {file = "websockets-13.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a365bcb7be554e6e1f9f3ed64016e67e2fa03d7b027a33e436aecf194febb63"}, + {file = "websockets-13.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:10a0dc7242215d794fb1918f69c6bb235f1f627aaf19e77f05336d147fce7c37"}, + {file = "websockets-13.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59197afd478545b1f73367620407b0083303569c5f2d043afe5363676f2697c9"}, + {file = "websockets-13.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d20516990d8ad557b5abeb48127b8b779b0b7e6771a265fa3e91767596d7d97"}, + {file = "websockets-13.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1a2e272d067030048e1fe41aa1ec8cfbbaabce733b3d634304fa2b19e5c897f"}, + {file = "websockets-13.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ad327ac80ba7ee61da85383ca8822ff808ab5ada0e4a030d66703cc025b021c4"}, + {file = "websockets-13.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:518f90e6dd089d34eaade01101fd8a990921c3ba18ebbe9b0165b46ebff947f0"}, + {file = "websockets-13.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:68264802399aed6fe9652e89761031acc734fc4c653137a5911c2bfa995d6d6d"}, + {file = "websockets-13.0.1-cp39-cp39-win32.whl", hash = "sha256:a5dc0c42ded1557cc7c3f0240b24129aefbad88af4f09346164349391dea8e58"}, + {file = "websockets-13.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b448a0690ef43db5ef31b3a0d9aea79043882b4632cfc3eaab20105edecf6097"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:faef9ec6354fe4f9a2c0bbb52fb1ff852effc897e2a4501e25eb3a47cb0a4f89"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:03d3f9ba172e0a53e37fa4e636b86cc60c3ab2cfee4935e66ed1d7acaa4625ad"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d450f5a7a35662a9b91a64aefa852f0c0308ee256122f5218a42f1d13577d71e"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f55b36d17ac50aa8a171b771e15fbe1561217510c8768af3d546f56c7576cdc"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14b9c006cac63772b31abbcd3e3abb6228233eec966bf062e89e7fa7ae0b7333"}, + {file = "websockets-13.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b79915a1179a91f6c5f04ece1e592e2e8a6bd245a0e45d12fd56b2b59e559a32"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f40de079779acbcdbb6ed4c65af9f018f8b77c5ec4e17a4b737c05c2db554491"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:80e4ba642fc87fa532bac07e5ed7e19d56940b6af6a8c61d4429be48718a380f"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a02b0161c43cc9e0232711eff846569fad6ec836a7acab16b3cf97b2344c060"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6aa74a45d4cdc028561a7d6ab3272c8b3018e23723100b12e58be9dfa5a24491"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00fd961943b6c10ee6f0b1130753e50ac5dcd906130dcd77b0003c3ab797d026"}, + {file = "websockets-13.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d93572720d781331fb10d3da9ca1067817d84ad1e7c31466e9f5e59965618096"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:71e6e5a3a3728886caee9ab8752e8113670936a193284be9d6ad2176a137f376"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c4a6343e3b0714e80da0b0893543bf9a5b5fa71b846ae640e56e9abc6fbc4c83"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a678532018e435396e37422a95e3ab87f75028ac79570ad11f5bf23cd2a7d8c"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6716c087e4aa0b9260c4e579bb82e068f84faddb9bfba9906cb87726fa2e870"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e33505534f3f673270dd67f81e73550b11de5b538c56fe04435d63c02c3f26b5"}, + {file = "websockets-13.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:acab3539a027a85d568c2573291e864333ec9d912675107d6efceb7e2be5d980"}, + {file = "websockets-13.0.1-py3-none-any.whl", hash = "sha256:b80f0c51681c517604152eb6a572f5a9378f877763231fddb883ba2f968e8817"}, + {file = "websockets-13.0.1.tar.gz", hash = "sha256:4d6ece65099411cfd9a48d13701d7438d9c34f479046b34c50ff60bb8834e43e"}, ] [[package]] name = "zipp" -version = "3.19.2" +version = "3.20.2" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"}, - {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"}, + {file = "zipp-3.20.2-py3-none-any.whl", hash = "sha256:a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350"}, + {file = "zipp-3.20.2.tar.gz", hash = "sha256:bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29"}, ] [package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +type = ["pytest-mypy"] [metadata] lock-version = "2.0" -python-versions = ">=3.9,<3.12" -content-hash = "75ad4a4f1aa1ad0e93fe851c97f87cb2967e96a4c3ece2c087a62b35acc7980a" +python-versions = ">=3.9,<4.0" +content-hash = "53ebd4fa6361caba2c172815baaeb8d46fa44c1962eeac5bdc877032f00ac756" diff --git a/pyproject.toml b/pyproject.toml index 254e1a04d..c7f884b2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,28 +11,29 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.12" +python = ">=3.9,<4.0" networkx = "<3" eppy = "^0.5.63" matplotlib = ">=3.4,<4.0" pycountry = "^24.6.1" scikit-learn = "^1.5.0" pandas = ">=2.0.3" -numpy = ">=1.17,<2" tqdm = "^4.66.4" -tabulate = "<0.9" click = "^8.1.7" outdated = "^0.2.2" deprecation = "^2.1.0" sigfig = "^1.3.3" requests = "^2.32.3" coolprop = "^6.6.0" -energy-pandas = ">=0.3.5" +energy_pandas = "^0.4.1" validator-collection = "^1.5.0" -pint = "<=0.19" typing-extensions = "^4.12.2" pydantic-settings = "^2.3.2" path = "^16.14.0" +numpy = [ + {version = "^2.0.2", python = "<=3.9"}, + {version = "^2.1.1", python = "3.10"} +] # geomeppy.dependencies shapely = "^2.0.4" @@ -62,7 +63,8 @@ transforms3d = "^0.4.1" pytest = "^8.2.2" pytest-cov = "^5.0.0" pytest-xdist = "^3.6.1" -flake8 = "^7.0.0" +tox = "^4.19.0" +pre-commit = "^3.8.0" [tool.poetry.group.docs.dependencies] sphinx = "^7.3.7" @@ -77,4 +79,67 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -archetypal = "archetypal.cli:cli" \ No newline at end of file +archetypal = "archetypal.cli:cli" + +[tool.pytest.ini_options] +testpaths = ["tests"] + +[tool.ruff] +target-version = "py37" +line-length = 120 +fix = true +select = [ + # flake8-2020 + "YTT", + # flake8-bandit + # "S", + # flake8-bugbear + # "B", + # flake8-builtins + # "A", + # flake8-comprehensions + # "C4", + # flake8-debugger + "T10", + # flake8-simplify + # "SIM", + # isort + "I", + # mccabe + "C90", + # pycodestyle + #"E", + "W", + # pyflakes + # "F", + # pygrep-hooks + "PGH", + # pyupgrade + # "UP", + # ruff + # "RUF", + # tryceratops + # "TRY", +] +ignore = [ + # LineTooLong + "E501", + # DoNotAssignLambda + "E731", + # Too Complex + "C901" +] +exclude = ["tests/input_data/*", "docker/trnsidf/*"] + +[tool.ruff.format] +preview = true + +[tool.coverage.report] +skip_empty = true + +[tool.coverage.run] +branch = true +source = ["archetypal"] + +[tool.ruff.per-file-ignores] +"tests/*" = ["S101"] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index e39f33fd6..000000000 --- a/setup.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[metadata] -description-file = README.md - -[isort] -profile = black -multi_line_output = 3 -skip = __init__.py - -[flake8] -# Recommend matching the black line length (default 88), -# rather than using the flake8 default of 79: -max-line-length = 88 -ignore = - # See https://github.com/PyCQA/pycodestyle/issues/373 - E203, - E501, - -[tool:pytest] -log_cli = True -log_cli_level = INFO diff --git a/tests/conftest.py b/tests/conftest.py index 2c766c045..5e779db76 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,7 @@ import glob +import os import sys +from pathlib import Path import pytest @@ -9,23 +11,23 @@ # or not. from archetypal import settings, utils -do = [True, False] +data_dir = Path(__file__).parent / "input_data" -@pytest.fixture(params=do, ids=["from_scratch", "from_cache"], scope="function") +@pytest.fixture(params=[True, False], ids=["from_scratch", "from_cache"], scope="function") def scratch_then_cache(request): """# remove the tests/temp folder if it already exists so we start fresh with tests""" # request is a special parameter known to pytest. It passes whatever is in - # params=do. Ids are there to give the test a human readable name. + # params=do. Ids are there to give the test a human-readable name. if request.param: dirs = [ settings.data_folder, settings.cache_folder, settings.imgs_folder, ] - for dir in dirs: - dir.rmtree_p() + for d in dirs: + d.rmtree_p() samples_ = ["regular", "umi_samples"] # ['problematic', 'regular', 'umi_samples'] @@ -33,16 +35,16 @@ def scratch_then_cache(request): @pytest.fixture(params=samples_, ids=samples_, scope="session") def idf_source(request): - return glob.glob("tests/input_data/{}/*.idf".format(request.param)) + return glob.glob(f"tests/input_data/{request.param}/*.idf") @pytest.fixture(scope="session") def config(): utils.config( - data_folder="tests/.temp/data", - logs_folder="tests/.temp/logs", - imgs_folder="tests/.temp/images", - cache_folder="tests/.temp/cache", + data_folder=os.getenv("ARCHETYPAL_DATA") or "tests/.temp/data", + logs_folder=os.getenv("ARCHETYPAL_LOGS") or "tests/.temp/logs", + imgs_folder=os.getenv("ARCHETYPAL_IMAGES") or "tests/.temp/images", + cache_folder=os.getenv("ARCHETYPAL_CACHE") or "tests/.temp/cache", cache_responses=True, log_file=False, log_console=True, @@ -54,9 +56,9 @@ def config(): def clean_config(config): """calls config fixture and clears default folders""" - dirs = [settings.data_folder, settings.cache_folder, settings.imgs_folder] - for dir in dirs: - dir.rmtree_p() + dirs = [settings.data_folder, settings.cache_folder, settings.imgs_folder, settings.logs_folder] + for d in dirs: + d.rmtree_p() # List fixtures that are located outiside of conftest.py so that they can be diff --git a/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0.idf b/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0.idf new file mode 100644 index 000000000..ade543911 --- /dev/null +++ b/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0.idf @@ -0,0 +1,60603 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + YES; !- Run Simulation for Weather File Run Periods + +Building, + High-Rise Apartment, !- Name + 0, !- North Axis + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.2, !- Temperature Convergence Tolerance Value + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 30, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit + +Timestep, + 4; !- Number of Timesteps per Hour + +ConvergenceLimits, + 5, !- Minimum System Timestep + 25; !- Maximum HVAC Iterations + +Site:Location, + Buffalo.Niagara.Intl.AP_NY_USA WMO=725280, !- Name + 42.94, !- Latitude + -78.74, !- Longitude + -5, !- Time Zone + 215; !- Elevation + +SizingPeriod:DesignDay, + Buffalo.Niagara.Intl.AP_NY_USA Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -16.3, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -16.3, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98769, !- Barometric Pressure + 5.1, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + Buffalo.Niagara.Intl.AP_NY_USA Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 30.3, !- Maximum DryBulb Temperature + 9.3, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 21.8, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98769, !- Barometric Pressure + 5.7, !- Wind Speed + 240, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance taub + 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance taud + +RunPeriod, + RUNPERIOD 1, !- 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 + ; !- Treat Weather as Actual + +RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +Site:GroundTemperature:BuildingSurface, + 20.27, !- January Ground Temperature + 20.17, !- February Ground Temperature + 20.19, !- March Ground Temperature + 20.27, !- April Ground Temperature + 20.38, !- May Ground Temperature + 22.64, !- June Ground Temperature + 23.1, !- July Ground Temperature + 23.22, !- August Ground Temperature + 23.23, !- September Ground Temperature + 21, !- October Ground Temperature + 20.62, !- November Ground Temperature + 20.42; !- December Ground Temperature + +Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 8.966666667, !- Annual Average Outdoor Air Temperature + 26.2; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +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 + +Schedule:Compact, + OCC_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 7:00, !- Field 3 + 1.0, !- Field 4 + Until: 8:00, !- Field 5 + 0.85, !- Field 6 + Until: 9:00, !- Field 7 + 0.39, !- Field 8 + Until: 16:00, !- Field 9 + 0.25, !- Field 10 + Until: 17:00, !- Field 11 + 0.3, !- Field 12 + Until: 18:00, !- Field 13 + 0.52, !- Field 14 + Until: 21:00, !- Field 15 + 0.87, !- Field 16 + Until: 24:00, !- Field 17 + 1.0; !- Field 18 + +Schedule:Compact, + OCC_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00, !- Field 3 + 0.0, !- Field 4 + Until: 12:00, !- Field 5 + 1.0, !- Field 6 + Until: 13:00, !- Field 7 + 0.5, !- Field 8 + Until: 17:00, !- Field 9 + 1.0, !- Field 10 + Until: 24:00, !- Field 11 + 0.0, !- Field 12 + For AllOtherDays, !- Field 13 + Until: 24:00, !- Field 14 + 0.0; !- Field 15 + +Schedule:Compact, + LTG_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 4:00, !- Field 3 + 0.011316031, !- Field 4 + Until: 5:00, !- Field 5 + 0.033948092, !- Field 6 + Until: 6:00, !- Field 7 + 0.0735542, !- Field 8 + Until: 7:00, !- Field 9 + 0.079212215, !- Field 10 + Until: 8:00, !- Field 11 + 0.0735542, !- Field 12 + Until: 9:00, !- Field 13 + 0.033948092, !- Field 14 + Until: 15:00, !- Field 15 + 0.022632061, !- Field 16 + Until: 16:00, !- Field 17 + 0.039606108, !- Field 18 + Until: 17:00, !- Field 19 + 0.079212215, !- Field 20 + Until: 18:00, !- Field 21 + 0.113160307, !- Field 22 + Until: 19:00, !- Field 23 + 0.152766415, !- Field 24 + Until: 21:00, !- Field 25 + 0.181056492, !- Field 26 + Until: 22:00, !- Field 27 + 0.124476338, !- Field 28 + Until: 23:00, !- Field 29 + 0.067896184, !- Field 30 + Until: 24:00, !- Field 31 + 0.028290077; !- Field 32 + +Schedule:Compact, + LTG_COR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.576875; !- Field 4 + +Schedule:Compact, + LTG_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00, !- Field 3 + 1, !- Field 4 + For: WinterDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0, !- Field 7 + For: Weekdays, !- Field 8 + Until: 8:00, !- Field 9 + 0.18, !- Field 10 + Until: 12:00, !- Field 11 + 0.76932, !- Field 12 + Until: 13:00, !- Field 13 + 0.68384, !- Field 14 + Until: 17:00, !- Field 15 + 0.76932, !- Field 16 + Until: 24:00, !- Field 17 + 0.18, !- Field 18 + For: AllOtherDays, !- Field 19 + Until: 24:00, !- Field 20 + 0.18; !- Field 21 + +Schedule:Compact, + EQP_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.45, !- Field 4 + Until: 2:00, !- Field 5 + 0.41, !- Field 6 + Until: 3:00, !- Field 7 + 0.39, !- Field 8 + Until: 5:00, !- Field 9 + 0.38, !- Field 10 + Until: 6:00, !- Field 11 + 0.43, !- Field 12 + Until: 7:00, !- Field 13 + 0.54, !- Field 14 + Until: 8:00, !- Field 15 + 0.65, !- Field 16 + Until: 9:00, !- Field 17 + 0.66, !- Field 18 + Until: 10:00, !- Field 19 + 0.67, !- Field 20 + Until: 11:00, !- Field 21 + 0.69, !- Field 22 + Until: 12:00, !- Field 23 + 0.70, !- Field 24 + Until: 13:00, !- Field 25 + 0.69, !- Field 26 + Until: 14:00, !- Field 27 + 0.66, !- Field 28 + Until: 15:00, !- Field 29 + 0.65, !- Field 30 + Until: 16:00, !- Field 31 + 0.68, !- Field 32 + Until: 17:00, !- Field 33 + 0.80, !- Field 34 + Until: 19:00, !- Field 35 + 1.0, !- Field 36 + Until: 20:00, !- Field 37 + 0.93, !- Field 38 + Until: 21:00, !- Field 39 + 0.89, !- Field 40 + Until: 22:00, !- Field 41 + 0.85, !- Field 42 + Until: 23:00, !- Field 43 + 0.71, !- Field 44 + Until: 24:00, !- Field 45 + 0.58; !- Field 46 + +Schedule:Compact, + EQP_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00, !- Field 3 + 0.218625, !- Field 4 + Until: 8:00, !- Field 5 + 0.33125, !- Field 6 + Until: 12:00, !- Field 7 + 0.92575, !- Field 8 + Until: 13:00, !- Field 9 + 0.870205, !- Field 10 + Until: 17:00, !- Field 11 + 0.92575, !- Field 12 + Until: 18:00, !- Field 13 + 0.33125, !- Field 14 + Until: 24:00, !- Field 15 + 0.218625, !- Field 16 + For AllOtherDays, !- Field 17 + Until: 24:00, !- Field 18 + 0.218625; !- Field 19 + +Schedule:Compact, + INF_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INF_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INF_COR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INFIL_Door_Opening_SCH, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 07:00, !- Field 5 + 0.131, !- Field 6 + Until: 08:00, !- Field 7 + 1.0, !- Field 8 + Until: 17:00, !- Field 9 + 0.131, !- Field 10 + Until: 18:00, !- Field 11 + 1.0, !- Field 12 + Until: 22:00, !- Field 13 + 0.131, !- Field 14 + Until: 24:00, !- Field 15 + 0.0; !- Field 16 + +Schedule:Compact, + 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, + 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, !- Field 3 + 21.1; !- Field 4 + +Schedule:Compact, + CLGSETP_DESIGN_OFF_SCH, !- Name + Temperature, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR:AllDays, !- Field 2 + UNTIL: 24:00, !- Field 3 + 23.9; !- Field 4 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL:17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 21.1, !- Field 17 + UNTIL:17:00, !- Field 18 + 21.1, !- Field 19 + UNTIL: 18:00, !- Field 20 + 18.3, !- Field 21 + UNTIL: 24:00, !- Field 22 + 15.6, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 15.6; !- Field 26 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL: 17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 17.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 20.0, !- Field 19 + UNTIL: 17:00, !- Field 20 + 21.1, !- Field 21 + UNTIL: 18:00, !- Field 22 + 18.3, !- Field 23 + UNTIL: 24:00, !- Field 24 + 15.6, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 15.6; !- Field 28 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL: 17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 17.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 20.0, !- Field 19 + UNTIL: 17:00, !- Field 20 + 21.1, !- Field 21 + UNTIL: 18:00, !- Field 22 + 18.3, !- Field 23 + UNTIL: 24:00, !- Field 24 + 15.6, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 15.6; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 23.9, !- Field 17 + UNTIL:17:00, !- Field 18 + 23.9, !- Field 19 + UNTIL: 18:00, !- Field 20 + 26.7, !- Field 21 + UNTIL: 24:00, !- Field 22 + 29.4, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 29.4; !- Field 26 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 27.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 25.6, !- Field 19 + UNTIL: 17:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 18:00, !- Field 22 + 26.7, !- Field 23 + UNTIL: 24:00, !- Field 24 + 29.4, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 29.4; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 27.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 25.6, !- Field 19 + UNTIL: 17:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 18:00, !- Field 22 + 26.7, !- Field 23 + UNTIL: 24:00, !- Field 24 + 29.4, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 29.4; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 23.9, !- Field 15 + UNTIL: 8:00, !- Field 16 + 23.9, !- Field 17 + UNTIL:17:00, !- Field 18 + 23.9, !- Field 19 + UNTIL: 18:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 24:00, !- Field 22 + 23.9, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 23.9; !- Field 26 + +Schedule:Compact, + Activity Schedule, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 95; !- Field 4 + +Schedule:Compact, + All Off, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.0; !- Field 4 + +Schedule:Compact, + All On, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + Exterior_Lgt_ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +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, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + ZONE CONTROL TYPE SCHED, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays Weekends Holidays Customday1 Customday2, !- Field 2 + Until: 24:00, !- Field 3 + 4, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 2, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00, !- Field 9 + 1; !- Field 10 + +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, !- Field 3 + 4; !- Field 4 + +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, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + SHWSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60; !- Field 4 + +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, !- Field 3 + 60.0; !- Field 4 + +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, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + SHW TARGET TEMP SCHED, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Schedule:Compact, + SHW SUPPLY TEMP SCHED, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 55; !- Field 4 + +Schedule:Compact, + SHW Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.05; !- Field 4 + +Schedule:Compact, + SHW Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + PlantOnSched, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + Ambient Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + APT_DHW_SCH, !- Name + Fraction, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 1:00, !- Field 3 + 0.08, !- Field 4 + UNTIL: 2:00, !- Field 5 + 0.04, !- Field 6 + UNTIL: 3:00, !- Field 7 + 0.01, !- Field 8 + UNTIL: 4:00, !- Field 9 + 0.01, !- Field 10 + UNTIL: 5:00, !- Field 11 + 0.04, !- Field 12 + UNTIL: 6:00, !- Field 13 + 0.27, !- Field 14 + UNTIL: 7:00, !- Field 15 + 0.94, !- Field 16 + UNTIL: 8:00, !- Field 17 + 1.00, !- Field 18 + UNTIL: 9:00, !- Field 19 + 0.96, !- Field 20 + UNTIL: 10:00, !- Field 21 + 0.84, !- Field 22 + UNTIL: 11:00, !- Field 23 + 0.76, !- Field 24 + UNTIL: 12:00, !- Field 25 + 0.61, !- Field 26 + UNTIL: 13:00, !- Field 27 + 0.53, !- Field 28 + UNTIL: 14:00, !- Field 29 + 0.47, !- Field 30 + UNTIL: 15:00, !- Field 31 + 0.41, !- Field 32 + UNTIL: 16:00, !- Field 33 + 0.47, !- Field 34 + UNTIL: 17:00, !- Field 35 + 0.55, !- Field 36 + UNTIL: 18:00, !- Field 37 + 0.73, !- Field 38 + UNTIL: 19:00, !- Field 39 + 0.86, !- Field 40 + UNTIL: 20:00, !- Field 41 + 0.82, !- Field 42 + UNTIL: 21:00, !- Field 43 + 0.75, !- Field 44 + UNTIL: 22:00, !- Field 45 + 0.61, !- Field 46 + UNTIL: 23:00, !- Field 47 + 0.53, !- Field 48 + UNTIL: 24:00, !- Field 49 + 0.29; !- Field 50 + +Schedule:Compact, + SupplyFanSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + PLANTHEATINGONSCHED, !- Name + FRACTION, !- Schedule Type Limits Name + Through: 5/8, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00, !- Field 3 + 1.00, !- Field 4 + Through: 10/17, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00, !- Field 7 + 0.00, !- Field 8 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00, !- Field 11 + 1.00; !- Field 12 + +Schedule:Compact, + PLANTCOOLINGONSCHED, !- Name + FRACTION, !- Schedule Type Limits Name + Through: 5/8, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00, !- Field 3 + 0.00, !- Field 4 + Through: 10/17, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00, !- Field 7 + 1.00, !- Field 8 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00, !- Field 11 + 0.00; !- Field 12 + +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, !- Field 3 + 30; !- Field 4 + +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, !- Field 3 + 20; !- Field 4 + +Schedule:Compact, + Exterior_Ltg_Sch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 07:00, !- Field 3 + 1.0, !- Field 4 + Until: 19:00, !- Field 5 + 0.0, !- Field 6 + Until: 24:00, !- Field 7 + 1.0; !- Field 8 + +Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WinterDesignDay, !- Field 2 + Until: 24:00, !- Field 3 + 0.05, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0.5, !- Field 7 + For: Allotherdays, !- Field 8 + Until: 04:00, !- Field 9 + 0.05, !- Field 10 + Until: 05:00, !- Field 11 + 0.10, !- Field 12 + Until: 06:00, !- Field 13 + 0.20, !- Field 14 + Until: 07:00, !- Field 15 + 0.40, !- Field 16 + Until: 09:00, !- Field 17 + 0.50, !- Field 18 + Until: 10:00, !- Field 19 + 0.35, !- Field 20 + Until: 16:00, !- Field 21 + 0.15, !- Field 22 + Until: 17:00, !- Field 23 + 0.35, !- Field 24 + Until: 19:00, !- Field 25 + 0.50, !- Field 26 + Until: 21:00, !- Field 27 + 0.40, !- Field 28 + Until: 22:00, !- Field 29 + 0.30, !- Field 30 + Until: 23:00, !- Field 31 + 0.20, !- Field 32 + Until: 24:00, !- Field 33 + 0.10; !- Field 34 + +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, !- Field 3 + 1; !- Field 4 + +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, !- Field 3 + 0.05, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0.5, !- Field 7 + For: Allotherdays, !- Field 8 + Until: 04:00, !- Field 9 + 0.05, !- Field 10 + Until: 05:00, !- Field 11 + 0.10, !- Field 12 + Until: 06:00, !- Field 13 + 0.20, !- Field 14 + Until: 07:00, !- Field 15 + 0.40, !- Field 16 + Until: 09:00, !- Field 17 + 0.50, !- Field 18 + Until: 10:00, !- Field 19 + 0.35, !- Field 20 + Until: 16:00, !- Field 21 + 0.15, !- Field 22 + Until: 17:00, !- Field 23 + 0.35, !- Field 24 + Until: 19:00, !- Field 25 + 0.50, !- Field 26 + Until: 21:00, !- Field 27 + 0.40, !- Field 28 + Until: 22:00, !- Field 29 + 0.30, !- Field 30 + Until: 23:00, !- Field 31 + 0.20, !- Field 32 + Until: 24:00, !- Field 33 + 0.10; !- Field 34 + +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 + +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 + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + AC02 Acoustic Ceiling, !- Name + MediumSmooth, !- Roughness + 0.0127, !- Thickness + 0.057, !- Conductivity + 288, !- Density + 1339, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material, + F07 25mm stucco, !- Name + Smooth, !- Roughness + 0.0254, !- Thickness + 0.72, !- Conductivity + 1856, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500; !- Specific Heat + +Material, + F08 Metal roof surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + F12 Asphalt shingles, !- Name + VeryRough, !- Roughness + 0.0032, !- Thickness + 0.04, !- Conductivity + 1120, !- Density + 1260, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + F13 Built-up roofing, !- Name + Rough, !- Roughness + 0.0095, !- Thickness + 0.16, !- Conductivity + 1120, !- Density + 1460, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness + 0.16, !- Conductivity + 800, !- Density + 1090, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material, + G01 16mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.0159, !- Thickness + 0.16, !- Conductivity + 800, !- Density + 1090; !- Specific Heat + +Material, + G02 16mm plywood, !- Name + Smooth, !- Roughness + 0.0159, !- Thickness + 0.12, !- Conductivity + 544, !- Density + 1210; !- Specific Heat + +Material, + M14 150mm heavyweight concrete roof, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 100mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 200mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 100mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 150mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 200mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + M10 200mm concrete block wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 0.72, !- Conductivity + 800, !- Density + 832; !- Specific Heat + +Material, + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 1.326, !- Conductivity + 1842, !- Density + 912; !- Specific Heat + +Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material:NoMass, + Air_Wall_Material, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material:NoMass, + Nonres_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 5.30668495131472, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Semiheated_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 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 + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 2.81828208913367, !- Thermal Resistance + 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 + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Semiheated_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Std Opaque Door Panel, !- Name + MediumRough, !- Roughness + 0.123456790123457, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +WindowMaterial:Glazing, + GREEN 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.487, !- Solar Transmittance at Normal Incidence + 0.056, !- Front Side Solar Reflectance at Normal Incidence + 0.056, !- Back Side Solar Reflectance at Normal Incidence + 0.749, !- Visible Transmittance at Normal Incidence + 0.07, !- Front Side Visible Reflectance at Normal Incidence + 0.07, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.24, !- Solar Transmittance at Normal Incidence + 0.16, !- Front Side Solar Reflectance at Normal Incidence + 0.32, !- Back Side Solar Reflectance at Normal Incidence + 0.3, !- Visible Transmittance at Normal Incidence + 0.16, !- Front Side Visible Reflectance at Normal Incidence + 0.29, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.6, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF C CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.2, !- Solar Transmittance at Normal Incidence + 0.16, !- Front Side Solar Reflectance at Normal Incidence + 0.39, !- Back Side Solar Reflectance at Normal Incidence + 0.22, !- Visible Transmittance at Normal Incidence + 0.17, !- Front Side Visible Reflectance at Normal Incidence + 0.35, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.55, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECREF-1 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.099, !- Solar Transmittance at Normal Incidence + 0.219, !- Front Side Solar Reflectance at Normal Incidence + 0.219, !- Back Side Solar Reflectance at Normal Incidence + 0.155, !- Visible Transmittance at Normal Incidence + 0.073, !- Front Side Visible Reflectance at Normal Incidence + 0.073, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.1, !- Solar Transmittance at Normal Incidence + 0.11, !- Front Side Solar Reflectance at Normal Incidence + 0.41, !- Back Side Solar Reflectance at Normal Incidence + 0.13, !- Visible Transmittance at Normal Incidence + 0.1, !- Front Side Visible Reflectance at Normal Incidence + 0.32, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.45, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.775, !- Solar Transmittance at Normal Incidence + 0.071, !- Front Side Solar Reflectance at Normal Incidence + 0.071, !- Back Side Solar Reflectance at Normal Incidence + 0.881, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF D CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.429, !- Solar Transmittance at Normal Incidence + 0.308, !- Front Side Solar Reflectance at Normal Incidence + 0.379, !- Back Side Solar Reflectance at Normal Incidence + 0.334, !- Visible Transmittance at Normal Incidence + 0.453, !- Front Side Visible Reflectance at Normal Incidence + 0.505, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + BLUE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.48, !- Solar Transmittance at Normal Incidence + 0.05, !- Front Side Solar Reflectance at Normal Incidence + 0.05, !- Back Side Solar Reflectance at Normal Incidence + 0.57, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.06, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREY 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.455, !- Solar Transmittance at Normal Incidence + 0.053, !- Front Side Solar Reflectance at Normal Incidence + 0.053, !- Back Side Solar Reflectance at Normal Incidence + 0.431, !- Visible Transmittance at Normal Incidence + 0.052, !- Front Side Visible Reflectance at Normal Incidence + 0.052, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.6, !- Solar Transmittance at Normal Incidence + 0.17, !- Front Side Solar Reflectance at Normal Incidence + 0.22, !- Back Side Solar Reflectance at Normal Incidence + 0.84, !- Visible Transmittance at Normal Incidence + 0.055, !- Front Side Visible Reflectance at Normal Incidence + 0.078, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.626, !- Solar Transmittance at Normal Incidence + 0.061, !- Front Side Solar Reflectance at Normal Incidence + 0.061, !- Back Side Solar Reflectance at Normal Incidence + 0.611, !- Visible Transmittance at Normal Incidence + 0.061, !- Front Side Visible Reflectance at Normal Incidence + 0.061, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.36, !- Solar Transmittance at Normal Incidence + 0.093, !- Front Side Solar Reflectance at Normal Incidence + 0.2, !- Back Side Solar Reflectance at Normal Incidence + 0.5, !- Visible Transmittance at Normal Incidence + 0.035, !- Front Side Visible Reflectance at Normal Incidence + 0.054, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B TINT HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.15, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.33, !- Back Side Solar Reflectance at Normal Incidence + 0.18, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.28, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.6, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF C CLEAR MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.17, !- Solar Transmittance at Normal Incidence + 0.2, !- Front Side Solar Reflectance at Normal Incidence + 0.42, !- Back Side Solar Reflectance at Normal Incidence + 0.19, !- Visible Transmittance at Normal Incidence + 0.21, !- Front Side Visible Reflectance at Normal Incidence + 0.38, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.51, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF D TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.3, !- Solar Transmittance at Normal Incidence + 0.14, !- Front Side Solar Reflectance at Normal Incidence + 0.36, !- Back Side Solar Reflectance at Normal Incidence + 0.25, !- Visible Transmittance at Normal Incidence + 0.18, !- Front Side Visible Reflectance at Normal Incidence + 0.45, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + COATED POLY-77, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00051, !- Thickness + 0.504, !- Solar Transmittance at Normal Incidence + 0.402, !- Front Side Solar Reflectance at Normal Incidence + 0.398, !- Back Side Solar Reflectance at Normal Incidence + 0.766, !- Visible Transmittance at Normal Incidence + 0.147, !- Front Side Visible Reflectance at Normal Incidence + 0.167, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.075, !- Front Side Infrared Hemispherical Emissivity + 0.72, !- Back Side Infrared Hemispherical Emissivity + 0.14; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.26, !- Solar Transmittance at Normal Incidence + 0.14, !- Front Side Solar Reflectance at Normal Incidence + 0.41, !- Back Side Solar Reflectance at Normal Incidence + 0.46, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.04, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.03, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + PYR B CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.68, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.81, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.2, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.15, !- Solar Transmittance at Normal Incidence + 0.22, !- Front Side Solar Reflectance at Normal Incidence + 0.38, !- Back Side Solar Reflectance at Normal Incidence + 0.2, !- Visible Transmittance at Normal Incidence + 0.23, !- Front Side Visible Reflectance at Normal Incidence + 0.33, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.58, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF A CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.066, !- Solar Transmittance at Normal Incidence + 0.341, !- Front Side Solar Reflectance at Normal Incidence + 0.493, !- Back Side Solar Reflectance at Normal Incidence + 0.08, !- Visible Transmittance at Normal Incidence + 0.41, !- Front Side Visible Reflectance at Normal Incidence + 0.37, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.4, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREEN 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.635, !- Solar Transmittance at Normal Incidence + 0.063, !- Front Side Solar Reflectance at Normal Incidence + 0.063, !- Back Side Solar Reflectance at Normal Incidence + 0.822, !- Visible Transmittance at Normal Incidence + 0.075, !- Front Side Visible Reflectance at Normal Incidence + 0.075, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECABS-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.111, !- Solar Transmittance at Normal Incidence + 0.179, !- Front Side Solar Reflectance at Normal Incidence + 0.179, !- Back Side Solar Reflectance at Normal Incidence + 0.128, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + COATED POLY-55, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00051, !- Thickness + 0.32, !- Solar Transmittance at Normal Incidence + 0.582, !- Front Side Solar Reflectance at Normal Incidence + 0.593, !- Back Side Solar Reflectance at Normal Incidence + 0.551, !- Visible Transmittance at Normal Incidence + 0.336, !- Front Side Visible Reflectance at Normal Incidence + 0.375, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.046, !- Front Side Infrared Hemispherical Emissivity + 0.72, !- Back Side Infrared Hemispherical Emissivity + 0.14; !- Conductivity + +WindowMaterial:Glazing, + ECREF-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.099, !- Solar Transmittance at Normal Incidence + 0.219, !- Front Side Solar Reflectance at Normal Incidence + 0.219, !- Back Side Solar Reflectance at Normal Incidence + 0.155, !- Visible Transmittance at Normal Incidence + 0.073, !- Front Side Visible Reflectance at Normal Incidence + 0.073, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 6MM Rev, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.43, !- Solar Transmittance at Normal Incidence + 0.42, !- Front Side Solar Reflectance at Normal Incidence + 0.3, !- Back Side Solar Reflectance at Normal Incidence + 0.77, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.07, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.03, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + BRONZE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.482, !- Solar Transmittance at Normal Incidence + 0.054, !- Front Side Solar Reflectance at Normal Incidence + 0.054, !- Back Side Solar Reflectance at Normal Incidence + 0.534, !- Visible Transmittance at Normal Incidence + 0.057, !- Front Side Visible Reflectance at Normal Incidence + 0.057, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF A TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.06, !- Solar Transmittance at Normal Incidence + 0.13, !- Front Side Solar Reflectance at Normal Incidence + 0.42, !- Back Side Solar Reflectance at Normal Incidence + 0.09, !- Visible Transmittance at Normal Incidence + 0.14, !- Front Side Visible Reflectance at Normal Incidence + 0.35, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.47, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Theoretical Glass 297, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.375039, !- Solar Transmittance at Normal Incidence + 0.574961, !- Front Side Solar Reflectance at Normal Incidence + 0.574961, !- Back Side Solar Reflectance at Normal Incidence + 0.529698, !- Visible Transmittance at Normal Incidence + 0.420302, !- Front Side Visible Reflectance at Normal Incidence + 0.420302, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0103561; !- Conductivity + +WindowMaterial:Glazing, + Theoretical Glass 347, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.315861, !- Solar Transmittance at Normal Incidence + 0.634139, !- Front Side Solar Reflectance at Normal Incidence + 0.634139, !- Back Side Solar Reflectance at Normal Incidence + 0.479911, !- Visible Transmittance at Normal Incidence + 0.470089, !- Front Side Visible Reflectance at Normal Incidence + 0.470089, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.010358; !- Conductivity + +WindowMaterial:Glazing, + Glass_12116_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00475, !- Thickness + 0.171874, !- Solar Transmittance at Normal Incidence + 0.1094601, !- Front Side Solar Reflectance at Normal Incidence + 0.2199938, !- Back Side Solar Reflectance at Normal Incidence + 0.322771, !- Visible Transmittance at Normal Incidence + 0.182598, !- Front Side Visible Reflectance at Normal Incidence + 0.081654, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.538265, !- Back Side Infrared Hemispherical Emissivity + 1.000345; !- Conductivity + +WindowMaterial:Glazing, + Glass_102_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003048, !- Thickness + 0.833848, !- Solar Transmittance at Normal Incidence + 0.07476376, !- Front Side Solar Reflectance at Normal Incidence + 0.07485449, !- Back Side Solar Reflectance at Normal Incidence + 0.89926, !- Visible Transmittance at Normal Incidence + 0.082563, !- Front Side Visible Reflectance at Normal Incidence + 0.082564, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + PYR B CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.74, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.82, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.2, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.45, !- Solar Transmittance at Normal Incidence + 0.34, !- Front Side Solar Reflectance at Normal Incidence + 0.37, !- Back Side Solar Reflectance at Normal Incidence + 0.78, !- Visible Transmittance at Normal Incidence + 0.07, !- Front Side Visible Reflectance at Normal Incidence + 0.06, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.03, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECABS-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.814, !- Solar Transmittance at Normal Incidence + 0.086, !- Front Side Solar Reflectance at Normal Incidence + 0.086, !- Back Side Solar Reflectance at Normal Incidence + 0.847, !- Visible Transmittance at Normal Incidence + 0.099, !- Front Side Visible Reflectance at Normal Incidence + 0.099, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Glass_2175_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0086, !- Thickness + 0.167758, !- Solar Transmittance at Normal Incidence + 0.2176064, !- Front Side Solar Reflectance at Normal Incidence + 0.4379779, !- Back Side Solar Reflectance at Normal Incidence + 0.416044, !- Visible Transmittance at Normal Incidence + 0.078729, !- Front Side Visible Reflectance at Normal Incidence + 0.10654, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2022F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0039, !- Thickness + 0.355897, !- Solar Transmittance at Normal Incidence + 0.3940945, !- Front Side Solar Reflectance at Normal Incidence + 0.2656452, !- Back Side Solar Reflectance at Normal Incidence + 0.677694, !- Visible Transmittance at Normal Incidence + 0.042734, !- Front Side Visible Reflectance at Normal Incidence + 0.05547, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.046, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2052_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00837, !- Thickness + 0.507767, !- Solar Transmittance at Normal Incidence + 0.05422805, !- Front Side Solar Reflectance at Normal Incidence + 0.05449309, !- Back Side Solar Reflectance at Normal Incidence + 0.586833, !- Visible Transmittance at Normal Incidence + 0.05805, !- Front Side Visible Reflectance at Normal Incidence + 0.058397, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2010F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00221, !- Thickness + 0.434294, !- Solar Transmittance at Normal Incidence + 0.4183747, !- Front Side Solar Reflectance at Normal Incidence + 0.3410654, !- Back Side Solar Reflectance at Normal Incidence + 0.797579, !- Visible Transmittance at Normal Incidence + 0.043577, !- Front Side Visible Reflectance at Normal Incidence + 0.056031, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.042274, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2027F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.004, !- Thickness + 0.369744, !- Solar Transmittance at Normal Incidence + 0.4700695, !- Front Side Solar Reflectance at Normal Incidence + 0.340935, !- Back Side Solar Reflectance at Normal Incidence + 0.765222, !- Visible Transmittance at Normal Incidence + 0.0546, !- Front Side Visible Reflectance at Normal Incidence + 0.073741, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.03675, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + ECREF-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.694, !- Solar Transmittance at Normal Incidence + 0.168, !- Front Side Solar Reflectance at Normal Incidence + 0.168, !- Back Side Solar Reflectance at Normal Incidence + 0.818, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.11, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + PYR A CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.75, !- Solar Transmittance at Normal Incidence + 0.1, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.85, !- Visible Transmittance at Normal Incidence + 0.12, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.4, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Glass_4321_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00618, !- Thickness + 0.425947, !- Solar Transmittance at Normal Incidence + 0.0742419, !- Front Side Solar Reflectance at Normal Incidence + 0.09994167, !- Back Side Solar Reflectance at Normal Incidence + 0.559652, !- Visible Transmittance at Normal Incidence + 0.072726, !- Front Side Visible Reflectance at Normal Incidence + 0.094819, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.279, !- Back Side Infrared Hemispherical Emissivity + 0.814; !- Conductivity + +WindowMaterial:Glazing, + Glass_8652_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003059, !- Thickness + 0.343691, !- Solar Transmittance at Normal Incidence + 0.2989869, !- Front Side Solar Reflectance at Normal Incidence + 0.4621051, !- Back Side Solar Reflectance at Normal Incidence + 0.487937, !- Visible Transmittance at Normal Incidence + 0.209449, !- Front Side Visible Reflectance at Normal Incidence + 0.306829, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.39, !- Back Side Infrared Hemispherical Emissivity + 0.962; !- Conductivity + +WindowMaterial:Glazing, + Glass_282_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003251, !- Thickness + 0.352565, !- Solar Transmittance at Normal Incidence + 0.2956174, !- Front Side Solar Reflectance at Normal Incidence + 0.4058073, !- Back Side Solar Reflectance at Normal Incidence + 0.510046, !- Visible Transmittance at Normal Incidence + 0.237458, !- Front Side Visible Reflectance at Normal Incidence + 0.270435, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.37, !- Back Side Infrared Hemispherical Emissivity + 0.94; !- Conductivity + +WindowMaterial:Glazing, + Glass_2531_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00306, !- Thickness + 0.350556, !- Solar Transmittance at Normal Incidence + 0.3198325, !- Front Side Solar Reflectance at Normal Incidence + 0.3617666, !- Back Side Solar Reflectance at Normal Incidence + 0.490923, !- Visible Transmittance at Normal Incidence + 0.25084, !- Front Side Visible Reflectance at Normal Incidence + 0.232929, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.454, !- Back Side Infrared Hemispherical Emissivity + 0.934; !- Conductivity + +WindowMaterial:Glazing, + Glass_2532_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00306, !- Thickness + 0.340824, !- Solar Transmittance at Normal Incidence + 0.2268281, !- Front Side Solar Reflectance at Normal Incidence + 0.2732317, !- Back Side Solar Reflectance at Normal Incidence + 0.543814, !- Visible Transmittance at Normal Incidence + 0.0766, !- Front Side Visible Reflectance at Normal Incidence + 0.079448, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.676, !- Back Side Infrared Hemispherical Emissivity + 0.933; !- Conductivity + +WindowMaterial:Glazing, + Glass_9731_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.01248, !- Thickness + 0.369424, !- Solar Transmittance at Normal Incidence + 0.2079376, !- Front Side Solar Reflectance at Normal Incidence + 0.203399, !- Back Side Solar Reflectance at Normal Incidence + 0.710088, !- Visible Transmittance at Normal Incidence + 0.071115, !- Front Side Visible Reflectance at Normal Incidence + 0.070696, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.815; !- Conductivity + +WindowMaterial:Glazing, + Glass_4313_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00385, !- Thickness + 0.373486, !- Solar Transmittance at Normal Incidence + 0.07114256, !- Front Side Solar Reflectance at Normal Incidence + 0.09944001, !- Back Side Solar Reflectance at Normal Incidence + 0.6013, !- Visible Transmittance at Normal Incidence + 0.077225, !- Front Side Visible Reflectance at Normal Incidence + 0.096992, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.298, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_1576_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003058, !- Thickness + 0.167637, !- Solar Transmittance at Normal Incidence + 0.3034693, !- Front Side Solar Reflectance at Normal Incidence + 0.1825558, !- Back Side Solar Reflectance at Normal Incidence + 0.341994, !- Visible Transmittance at Normal Incidence + 0.128888, !- Front Side Visible Reflectance at Normal Incidence + 0.128077, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.868, !- Back Side Infrared Hemispherical Emissivity + 0.846; !- Conductivity + +WindowMaterial:Gas, + AIR 6MM, !- Name + Air, !- Gas Type + 0.0063; !- Thickness + +WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + ARGON 13MM, !- Name + Argon, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0025, !- Name + Air, !- Gas Type + 0.0025; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0032, !- Name + Air, !- Gas Type + 0.0032; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0042, !- Name + Air, !- Gas Type + 0.0042; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0043, !- Name + Air, !- Gas Type + 0.0043; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0018, !- Name + Air, !- Gas Type + 0.0018; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0024, !- Name + Air, !- Gas Type + 0.0024; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0038, !- Name + Air, !- Gas Type + 0.0038; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0127, !- Name + Air, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0090, !- Name + Air, !- Gas Type + 0.009; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0070, !- Name + Air, !- Gas Type + 0.007; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0060, !- Name + Air, !- Gas Type + 0.006; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0052, !- Name + Air, !- Gas Type + 0.0052; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0048, !- Name + Air, !- Gas Type + 0.0048; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0046, !- Name + Air, !- Gas Type + 0.0046; !- Thickness + +WindowMaterial:GasMixture, + Gap_9_W_0_0127, !- Name + 0.0127, !- Thickness + 2, !- Number of Gases in Mixture + Air, !- Gas 1 Type + 0.1, !- Gas 1 Fraction + Argon, !- Gas 2 Type + 0.9; !- Gas 2 Fraction + +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 2 + Res_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + +Construction, + semiheated_ext_wall, !- Name + F07 25mm stucco, !- Outside Layer + G01 16mm gypsum board, !- Layer 2 + Semiheated_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + +Construction, + nonres_floor, !- Name + Nonres_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + res_floor, !- Name + Res_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + semiheated_floor, !- Name + Semiheated_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + nonres_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Nonres_Floor_Insulation; !- Layer 3 + +Construction, + res_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Res_Floor_Insulation; !- Layer 3 + +Construction, + semiheated_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Semiheated_Floor_Insulation; !- Layer 3 + +Construction, + Window_U_1.22_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.34, !- Name + REF C CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.72_SHGC_0.25, !- Name + REF B TINT MID 6MM; !- Outside Layer + +Construction, + Window_U_0.62_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.65_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.62_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.62_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.52_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.48_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.45, !- Name + REF D CLEAR 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.46_SHGC_0.45, !- Name + GREY 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.43_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.44_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.34_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.35_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.31, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.43_SHGC_0.29, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.34_SHGC_0.45, !- Name + PYR B CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.56_SHGC_0.35, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.45_SHGC_0.31, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.45, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-77, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 3MM; !- Layer 5 + +Construction, + Window_U_0.38_SHGC_0.26, !- Name + REF B TINT HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.25_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.35_SHGC_0.26, !- Name + REF C CLEAR MID 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.27, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.18, !- Name + REF A TINT MID 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.13, !- Name + REF A CLEAR LO 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.29_SHGC_0.22, !- Name + BRONZE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +Construction, + Window_U_0.29_SHGC_0.17, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.29_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.23, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.16, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.11, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.19_SHGC_0.20, !- Name + BRONZE 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 13MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +Construction, + Window_U_0.71_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.38_SHGC_0.30, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.36_SHGC_0.35, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.30_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +CONSTRUCTION, + Window_U_0.45_SHGC_0.27, !- Name + Glass_12116_LayerAvg, !- Outside Layer + Air 13MM, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.39_SHGC_0.36, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_1.98_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.98_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.49, !- Name + REF D CLEAR 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_0.98_SHGC_0.45, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.98_SHGC_0.68, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.88_SHGC_0.16, !- Name + REF A CLEAR LO 6MM; !- Outside Layer + +Construction, + Window_U_0.88_SHGC_0.27, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.52_SHGC_0.22, !- Name + REF B CLEAR LO 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.44_SHGC_0.20, !- Name + REF B TINT HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.39_SHGC_0.38, !- Name + Theoretical Glass 297; !- Outside Layer + +Construction, + Window_U_0.39_SHGC_0.32, !- Name + Theoretical Glass 347; !- Outside Layer + +Construction, + Window_U_0.75_SHGC_0.72, !- Name + PYR B CLEAR 6MM; !- Outside Layer + +Construction, + Window_U_0.67_SHGC_0.77, !- Name + PYR B CLEAR 3MM; !- Outside Layer + +Construction, + Window_U_0.56_SHGC_0.76, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +Construction, + Window_U_0.40_SHGC_0.43, !- Name + LoE SPEC SEL CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.40_SHGC_0.45, !- Name + ECABS-2 BLEACHED 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.60_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0025, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0032, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.50_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0042, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.47_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0043, !- Layer 2 + Glass_2010F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.75_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0018, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.65_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0024, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.50_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_1.16_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_1.08_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.29_SHGC_0.45, !- Name + ECREF-2 BLEACHED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_1.60_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.05_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.90_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.9_SHGC_0.6, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.75_SHGC_0.6, !- Name + GREY 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +Construction, + Window_U_0.85_SHGC_0.78, !- Name + PYR A CLEAR 3MM; !- Outside Layer + +Construction, + Window_U_1.30_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_1.15_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_1.80_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.70_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +CONSTRUCTION, + Window_U_0.37_SHGC_0.45, !- Name + Glass_4321_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.41_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.40_SHGC_0.4, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.40_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.39_SHGC_0.40, !- Name + Glass_282_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.45_SHGC_0.38, !- Name + Glass_2532_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.44_SHGC_0.40, !- Name + Glass_9731_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.38_SHGC_0.36, !- Name + Glass_2531_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.38_SHGC_0.41, !- Name + Glass_4313_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.51_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0090, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.54_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0070, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.56_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0060, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.59_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0048, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.58_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0052, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +Zone, + G SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Office, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor SWA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G SW Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor NWA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G NW Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor SEA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + Office, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor NEA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G NE Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor N1A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G N1 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor N2A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G N2 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor S1A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G S1 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor S2A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G S2 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g Floor C, !- Name + Floor, !- Surface Type + int_slab_ceiling, !- Construction Name + G Corridor, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 46.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + ENTRANCE DOOR, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.0508, !- Vertex 1 Ycoordinate + 2.1335, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.0508, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6255, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6255, !- Vertex 4 Ycoordinate + 2.1335; !- Vertex 4 Zcoordinate + +InternalMass, + G SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G SW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G NW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + Office_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G NE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G N1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G N2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G S1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G S2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + F2 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + T SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T SW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T NW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T SE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T NE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T N1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T N2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T S1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T S2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + Activity Schedule; !- Activity Level Schedule Name + +People, + Office People, !- Name + Office, !- Zone or ZoneList Name + OCC_OFF_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + Activity Schedule; !- Activity Level Schedule Name + +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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 10.0104363, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Office_Lights_plugin, !- Name + Office, !- Zone or ZoneList Name + LTG_OFF_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.0104363, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + M Corridor_Lights_plugin, !- Name + M Corridor, !- Zone or ZoneList Name + LTG_COR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.95, !- Fraction Lost + MiscPlug; !- EndUse 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 + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.95, !- Fraction Lost + MiscPlug; !- EndUse Subcategory + +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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 6.6170048e-05, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneVentilation:WindandStackOpenArea, + G SW Apartment Sliding Door Ventilation, !- Name + G SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G NW Apartment Sliding Door Ventilation, !- Name + G NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G NE Apartment Sliding Door Ventilation, !- Name + G NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G N1 Apartment Sliding Door Ventilation, !- Name + G N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G N2 Apartment Sliding Door Ventilation, !- Name + G N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G S1 Apartment Sliding Door Ventilation, !- Name + G S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G S2 Apartment Sliding Door Ventilation, !- Name + G S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M SW Apartment Sliding Door Ventilation, !- Name + M SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M NW Apartment Sliding Door Ventilation, !- Name + M NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M SE Apartment Sliding Door Ventilation, !- Name + M SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M NE Apartment Sliding Door Ventilation, !- Name + M NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M N1 Apartment Sliding Door Ventilation, !- Name + M N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M N2 Apartment Sliding Door Ventilation, !- Name + M N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M S1 Apartment Sliding Door Ventilation, !- Name + M S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M S2 Apartment Sliding Door Ventilation, !- Name + M S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T SW Apartment Sliding Door Ventilation, !- Name + T SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T NW Apartment Sliding Door Ventilation, !- Name + T NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T SE Apartment Sliding Door Ventilation, !- Name + T SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T NE Apartment Sliding Door Ventilation, !- Name + T NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T N1 Apartment Sliding Door Ventilation, !- Name + T N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T N2 Apartment Sliding Door Ventilation, !- Name + T N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T S1 Apartment Sliding Door Ventilation, !- Name + T S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T S2 Apartment Sliding Door Ventilation, !- Name + T S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 SW Apartment Sliding Door Ventilation, !- Name + F2 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 NW Apartment Sliding Door Ventilation, !- Name + F2 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 SE Apartment Sliding Door Ventilation, !- Name + F2 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 NE Apartment Sliding Door Ventilation, !- Name + F2 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 N1 Apartment Sliding Door Ventilation, !- Name + F2 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 N2 Apartment Sliding Door Ventilation, !- Name + F2 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 S1 Apartment Sliding Door Ventilation, !- Name + F2 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 S2 Apartment Sliding Door Ventilation, !- Name + F2 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 SW Apartment Sliding Door Ventilation, !- Name + F3 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 NW Apartment Sliding Door Ventilation, !- Name + F3 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 SE Apartment Sliding Door Ventilation, !- Name + F3 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 NE Apartment Sliding Door Ventilation, !- Name + F3 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 N1 Apartment Sliding Door Ventilation, !- Name + F3 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 N2 Apartment Sliding Door Ventilation, !- Name + F3 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 S1 Apartment Sliding Door Ventilation, !- Name + F3 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 S2 Apartment Sliding Door Ventilation, !- Name + F3 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 SW Apartment Sliding Door Ventilation, !- Name + F4 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 NW Apartment Sliding Door Ventilation, !- Name + F4 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 SE Apartment Sliding Door Ventilation, !- Name + F4 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 NE Apartment Sliding Door Ventilation, !- Name + F4 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 N1 Apartment Sliding Door Ventilation, !- Name + F4 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 N2 Apartment Sliding Door Ventilation, !- Name + F4 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 S1 Apartment Sliding Door Ventilation, !- Name + F4 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 S2 Apartment Sliding Door Ventilation, !- Name + F4 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 SW Apartment Sliding Door Ventilation, !- Name + F6 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 NW Apartment Sliding Door Ventilation, !- Name + F6 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 SE Apartment Sliding Door Ventilation, !- Name + F6 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 NE Apartment Sliding Door Ventilation, !- Name + F6 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 N1 Apartment Sliding Door Ventilation, !- Name + F6 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 N2 Apartment Sliding Door Ventilation, !- Name + F6 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 S1 Apartment Sliding Door Ventilation, !- Name + F6 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 S2 Apartment Sliding Door Ventilation, !- Name + F6 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 SW Apartment Sliding Door Ventilation, !- Name + F7 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 NW Apartment Sliding Door Ventilation, !- Name + F7 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 SE Apartment Sliding Door Ventilation, !- Name + F7 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 NE Apartment Sliding Door Ventilation, !- Name + F7 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 N1 Apartment Sliding Door Ventilation, !- Name + F7 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 N2 Apartment Sliding Door Ventilation, !- Name + F7 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 S1 Apartment Sliding Door Ventilation, !- Name + F7 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 S2 Apartment Sliding Door Ventilation, !- Name + F7 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 SW Apartment Sliding Door Ventilation, !- Name + F8 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 NW Apartment Sliding Door Ventilation, !- Name + F8 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 SE Apartment Sliding Door Ventilation, !- Name + F8 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 NE Apartment Sliding Door Ventilation, !- Name + F8 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 N1 Apartment Sliding Door Ventilation, !- Name + F8 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 N2 Apartment Sliding Door Ventilation, !- Name + F8 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 S1 Apartment Sliding Door Ventilation, !- Name + F8 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 S2 Apartment Sliding Door Ventilation, !- Name + F8 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 SW Apartment Sliding Door Ventilation, !- Name + F9 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 NW Apartment Sliding Door Ventilation, !- Name + F9 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 SE Apartment Sliding Door Ventilation, !- Name + F9 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 NE Apartment Sliding Door Ventilation, !- Name + F9 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 N1 Apartment Sliding Door Ventilation, !- Name + F9 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 N2 Apartment Sliding Door Ventilation, !- Name + F9 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 S1 Apartment Sliding Door Ventilation, !- Name + F9 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 S2 Apartment Sliding Door Ventilation, !- Name + F9 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +Exterior:Lights, + Facade Lighting, !- Name + Exterior_Lgt_ALWAYS_ON, !- Schedule Name + 7504.3, !- Design Level + AstronomicalClock, !- Control Option + General; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ DSOA G SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA Office, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000431773, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +Sizing:Parameters, + 1.2, !- Heating Sizing Factor + 1.2, !- Cooling Sizing Factor + 4; !- Timesteps in Averaging Window + +Sizing:Zone, + G SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + Office, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:System, + AirLoop G SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop Office, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:Plant, + SHWSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature + 5; !- Loop Design Temperature Difference + +Sizing:Plant, + Single Water Plant Loop, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 30, !- Design Loop Exit Temperature + 11; !- Loop Design Temperature Difference + +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 + AptCoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + AptHeatingSetPoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + Apartment 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 + +ThermostatSetpoint:SingleHeating, + AptHeatingSetPoint, !- Name + HTGSETP_APT_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleHeating, + OffHeatingSetPoint, !- Name + HTGSETP_DESIGN_OFF_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + AptCoolingSetPoint, !- Name + CLGSETP_APT_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + OffCoolingSetPoint, !- Name + CLGSETP_DESIGN_OFF_SCH; !- 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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +ZoneHVAC:EquipmentList, + G SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +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 NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + +Fan:OnOff, + AirLoop G SW Supply Fan, !- Name + All On, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.5, !- Pressure Rise + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + +Coil:Heating:Electric, + Heat Pump DX Supp Heating Coil AirLoop G SW, !- Name + All On, !- Availability Schedule Name + 1, !- Efficiency + autosize, !- Nominal Capacity + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + Heating Coil Air Outlet Node AirLoop T S2, !- Air Inlet Node Name + AirLoop T S2 Supply Air Outlet; !- Air Outlet Node Name + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- Supply Air Fan Operating Mode Schedule Name + +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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + ; !- 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +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 + +AirLoopHVAC, + AirLoop G SW, !- Name + , !- Controller List Name + AirLoop G SW Availability Manager, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G NW Apartment OA Mixing Box; !- Component 2 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 + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 S2 Apartment OA Mixing Box; !- Component 2 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 + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T S2 Apartment OA Mixing Box; !- Component 2 Name + +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 + +OutdoorAir:Mixer, + G SW Apartment OA Mixing Box, !- Name + G SW Apartment Mixed Air Outlet, !- Mixed Air Node Name + G SW Apartment Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 + +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 + +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 + +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 + +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 + +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 + +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, !- Branch 101 Name + WLHP Cooling Plant Branch AirLoop F7 SE, !- Branch 102 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Branch 103 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Branch 104 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Branch 105 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Branch 106 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Branch 107 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Branch 108 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Branch 109 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Branch 110 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Branch 111 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Branch 112 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Branch 113 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Branch 114 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Branch 115 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Branch 116 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Branch 117 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Branch 118 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Branch 119 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Branch 120 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Branch 121 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Branch 122 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Branch 123 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Branch 124 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Branch 125 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Branch 126 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Branch 127 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Branch 128 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Branch 129 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Branch 130 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Branch 131 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Branch 132 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Branch 133 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Branch 134 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Branch 135 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Branch 136 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Branch 137 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Branch 138 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Branch 139 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Branch 140 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Branch 141 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Branch 142 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Branch 143 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Branch 144 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Branch 145 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Branch 146 Name + WLHP Heating Plant Branch AirLoop T SW, !- Branch 147 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Branch 148 Name + WLHP Heating Plant Branch AirLoop T NW, !- Branch 149 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Branch 150 Name + WLHP Heating Plant Branch AirLoop T SE, !- Branch 151 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Branch 152 Name + WLHP Heating Plant Branch AirLoop T NE, !- Branch 153 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Branch 154 Name + WLHP Heating Plant Branch AirLoop T N1, !- Branch 155 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Branch 156 Name + WLHP Heating Plant Branch AirLoop T N2, !- Branch 157 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Branch 158 Name + WLHP Heating Plant Branch AirLoop T S1, !- Branch 159 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Branch 160 Name + WLHP Heating Plant Branch AirLoop T S2, !- Branch 161 Name + Plant Demand Bypass Branch, !- Branch 162 Name + Plant Demand Outlet Branch; !- Branch 163 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 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, !- Outlet Branch 101 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Outlet Branch 102 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Outlet Branch 103 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Outlet Branch 104 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Outlet Branch 105 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Outlet Branch 106 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Outlet Branch 107 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Outlet Branch 108 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Outlet Branch 109 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Outlet Branch 110 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Outlet Branch 111 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Outlet Branch 112 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Outlet Branch 113 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Outlet Branch 114 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Outlet Branch 115 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Outlet Branch 116 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Outlet Branch 117 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Outlet Branch 118 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Outlet Branch 119 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Outlet Branch 120 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Outlet Branch 121 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Outlet Branch 122 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Outlet Branch 123 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Outlet Branch 124 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Outlet Branch 125 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Outlet Branch 126 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Outlet Branch 127 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Outlet Branch 128 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Outlet Branch 129 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Outlet Branch 130 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Outlet Branch 131 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Outlet Branch 132 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Outlet Branch 133 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Outlet Branch 134 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Outlet Branch 135 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Outlet Branch 136 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Outlet Branch 137 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Outlet Branch 138 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Outlet Branch 139 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Outlet Branch 140 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Outlet Branch 141 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Outlet Branch 142 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Outlet Branch 143 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Outlet Branch 144 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Outlet Branch 145 Name + WLHP Heating Plant Branch AirLoop T SW, !- Outlet Branch 146 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Outlet Branch 147 Name + WLHP Heating Plant Branch AirLoop T NW, !- Outlet Branch 148 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Outlet Branch 149 Name + WLHP Heating Plant Branch AirLoop T SE, !- Outlet Branch 150 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Outlet Branch 151 Name + WLHP Heating Plant Branch AirLoop T NE, !- Outlet Branch 152 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Outlet Branch 153 Name + WLHP Heating Plant Branch AirLoop T N1, !- Outlet Branch 154 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Outlet Branch 155 Name + WLHP Heating Plant Branch AirLoop T N2, !- Outlet Branch 156 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Outlet Branch 157 Name + WLHP Heating Plant Branch AirLoop T S1, !- Outlet Branch 158 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Outlet Branch 159 Name + WLHP Heating Plant Branch AirLoop T S2, !- Outlet Branch 160 Name + Plant Demand Bypass Branch; !- Outlet Branch 161 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 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, !- Inlet Branch 101 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Inlet Branch 102 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Inlet Branch 103 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Inlet Branch 104 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Inlet Branch 105 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Inlet Branch 106 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Inlet Branch 107 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Inlet Branch 108 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Inlet Branch 109 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Inlet Branch 110 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Inlet Branch 111 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Inlet Branch 112 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Inlet Branch 113 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Inlet Branch 114 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Inlet Branch 115 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Inlet Branch 116 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Inlet Branch 117 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Inlet Branch 118 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Inlet Branch 119 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Inlet Branch 120 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Inlet Branch 121 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Inlet Branch 122 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Inlet Branch 123 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Inlet Branch 124 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Inlet Branch 125 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Inlet Branch 126 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Inlet Branch 127 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Inlet Branch 128 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Inlet Branch 129 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Inlet Branch 130 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Inlet Branch 131 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Inlet Branch 132 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Inlet Branch 133 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Inlet Branch 134 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Inlet Branch 135 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Inlet Branch 136 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Inlet Branch 137 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Inlet Branch 138 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Inlet Branch 139 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Inlet Branch 140 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Inlet Branch 141 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Inlet Branch 142 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Inlet Branch 143 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Inlet Branch 144 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Inlet Branch 145 Name + WLHP Heating Plant Branch AirLoop T SW, !- Inlet Branch 146 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Inlet Branch 147 Name + WLHP Heating Plant Branch AirLoop T NW, !- Inlet Branch 148 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Inlet Branch 149 Name + WLHP Heating Plant Branch AirLoop T SE, !- Inlet Branch 150 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Inlet Branch 151 Name + WLHP Heating Plant Branch AirLoop T NE, !- Inlet Branch 152 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Inlet Branch 153 Name + WLHP Heating Plant Branch AirLoop T N1, !- Inlet Branch 154 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Inlet Branch 155 Name + WLHP Heating Plant Branch AirLoop T N2, !- Inlet Branch 156 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Inlet Branch 157 Name + WLHP Heating Plant Branch AirLoop T S1, !- Inlet Branch 158 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Inlet Branch 159 Name + WLHP Heating Plant Branch AirLoop T S2, !- Inlet Branch 160 Name + Plant Demand Bypass Branch; !- Inlet Branch 161 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, + 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 + +NodeList, + G SW Apartment Inlets, !- Name + G SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G NW Apartment Inlets, !- Name + G NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + Office Inlets, !- Name + Office Supply Inlet; !- Node 1 Name + +NodeList, + G NE Apartment Inlets, !- Name + G NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G N1 Apartment Inlets, !- Name + G N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G N2 Apartment Inlets, !- Name + G N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G S1 Apartment Inlets, !- Name + G S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G S2 Apartment Inlets, !- Name + G S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 SW Apartment Inlets, !- Name + F2 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 NW Apartment Inlets, !- Name + F2 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 SE Apartment Inlets, !- Name + F2 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 NE Apartment Inlets, !- Name + F2 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 N1 Apartment Inlets, !- Name + F2 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 N2 Apartment Inlets, !- Name + F2 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 S1 Apartment Inlets, !- Name + F2 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 S2 Apartment Inlets, !- Name + F2 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 SW Apartment Inlets, !- Name + F3 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 NW Apartment Inlets, !- Name + F3 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 SE Apartment Inlets, !- Name + F3 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 NE Apartment Inlets, !- Name + F3 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 N1 Apartment Inlets, !- Name + F3 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 N2 Apartment Inlets, !- Name + F3 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 S1 Apartment Inlets, !- Name + F3 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 S2 Apartment Inlets, !- Name + F3 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 SW Apartment Inlets, !- Name + F4 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 NW Apartment Inlets, !- Name + F4 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 SE Apartment Inlets, !- Name + F4 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 NE Apartment Inlets, !- Name + F4 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 N1 Apartment Inlets, !- Name + F4 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 N2 Apartment Inlets, !- Name + F4 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 S1 Apartment Inlets, !- Name + F4 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 S2 Apartment Inlets, !- Name + F4 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M SW Apartment Inlets, !- Name + M SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M NW Apartment Inlets, !- Name + M NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M SE Apartment Inlets, !- Name + M SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M NE Apartment Inlets, !- Name + M NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M N1 Apartment Inlets, !- Name + M N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M N2 Apartment Inlets, !- Name + M N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M S1 Apartment Inlets, !- Name + M S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M S2 Apartment Inlets, !- Name + M S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 SW Apartment Inlets, !- Name + F6 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 NW Apartment Inlets, !- Name + F6 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 SE Apartment Inlets, !- Name + F6 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 NE Apartment Inlets, !- Name + F6 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 N1 Apartment Inlets, !- Name + F6 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 N2 Apartment Inlets, !- Name + F6 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 S1 Apartment Inlets, !- Name + F6 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 S2 Apartment Inlets, !- Name + F6 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 SW Apartment Inlets, !- Name + F7 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 NW Apartment Inlets, !- Name + F7 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 SE Apartment Inlets, !- Name + F7 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 NE Apartment Inlets, !- Name + F7 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 N1 Apartment Inlets, !- Name + F7 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 N2 Apartment Inlets, !- Name + F7 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 S1 Apartment Inlets, !- Name + F7 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 S2 Apartment Inlets, !- Name + F7 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 SW Apartment Inlets, !- Name + F8 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 NW Apartment Inlets, !- Name + F8 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 SE Apartment Inlets, !- Name + F8 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 NE Apartment Inlets, !- Name + F8 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 N1 Apartment Inlets, !- Name + F8 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 N2 Apartment Inlets, !- Name + F8 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 S1 Apartment Inlets, !- Name + F8 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 S2 Apartment Inlets, !- Name + F8 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 SW Apartment Inlets, !- Name + F9 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 NW Apartment Inlets, !- Name + F9 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 SE Apartment Inlets, !- Name + F9 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 NE Apartment Inlets, !- Name + F9 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 N1 Apartment Inlets, !- Name + F9 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 N2 Apartment Inlets, !- Name + F9 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 S1 Apartment Inlets, !- Name + F9 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 S2 Apartment Inlets, !- Name + F9 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T SW Apartment Inlets, !- Name + T SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T NW Apartment Inlets, !- Name + T NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T SE Apartment Inlets, !- Name + T SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T NE Apartment Inlets, !- Name + T NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T N1 Apartment Inlets, !- Name + T N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T N2 Apartment Inlets, !- Name + T N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T S1 Apartment Inlets, !- Name + T S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T S2 Apartment Inlets, !- Name + T S2 Apartment Supply Inlet; !- Node 1 Name + +OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1; !- Height Above Ground + +OutdoorAir:Node, + Common OSA Inlet Node, !- Name + -1; !- Height Above Ground + +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 + +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 + +Pump:ConstantSpeed, + SHWSys1 Pump, !- Name + SHWSys1 Supply Inlet Node, !- Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + autosize, !- Design Flow Rate + 29891, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.3, !- 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 + 179045.1073, !- Design Pump Head + autosize, !- Design Power Consumption + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + +Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + 258468.02, !- Nominal Capacity + 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 + 0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1, !- 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 + ConstantFlow; !- Boiler Flow Mode + +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 + autosize, !- High Fan Speed Fan Power + autocalculate, !- Low Fan Speed Air Flow Rate + , !- Low Fan Speed Air Flow Rate Sizing Factor + autocalculate, !- Low Fan Speed Fan Power + , !- Low Fan Speed Fan Power Sizing Factor + 0.002208, !- Design Spray Water Flow Rate + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Outdoor Air Inlet Node Name + , !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + , !- High Speed Standard Design Capacity + , !- Low Speed Standard Design Capacity + , !- Low Speed Standard Capacity Sizing Factor + autosize, !- High Fan Speed Ufactor Times Area Value + autocalculate, !- Low Fan Speed Ufactor Times Area Value + , !- Low Fan Speed UFactor Times Area Sizing Factor + autosize, !- Design Water Flow Rate + , !- High Speed User Specified Design Capacity + , !- Low Speed User Specified Design Capacity + , !- Low Speed User Specified Design Capacity Sizing Factor + , !- Design Entering Water Temperature + , !- Design Entering Air Temperature + , !- Design Entering Air Wetbulb Temperature + 1, !- High Speed Sizing Factor + SaturatedExit, !- Evaporation Loss Mode + , !- Evaporation Loss Factor + 0.008, !- Drift Loss Percent + ConcentrationRatio, !- Blowdown Calculation Mode + 3; !- Blowdown Concentration Ratio + +WaterHeater:Mixed, + SHWSys1 Water Heater, !- Name + 2.271247, !- Tank Volume + SHWSys1 Water Heater Setpoint Temperature Schedule, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 82.2222, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + 175842.64, !- Heater Maximum Capacity + , !- Heater Minimum Capacity + , !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + NATURALGAS, !- Heater Fuel Type + 0.802764686, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 8167.94, !- Off Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + 8167.94, !- On Cycle Parasitic Fuel Consumption Rate + 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 + , !- Off Cycle Loss Fraction to Zone + 15.60100708, !- On Cycle Loss Coefficient to Ambient Temperature + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate + , !- 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, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate + AUTOSIZE, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +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 + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + 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 + 10, !- Minimum Loop Temperature + autosize, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + autocalculate, !- Plant Loop Volume + 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 + +PlantEquipmentList, + SHWSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SHWSys1 Water Heater; !- Equipment 1 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 + +PlantEquipmentOperation:CoolingLoad, + WSHPPlant Cool Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + WSHPPlant Cooling Equipment; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + SHWSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + SHWSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + WSHPPlant Heat Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + WSHPPlant Heating Equipment; !- Range 1 Equipment List Name + +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, + 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 + +EnergyManagementSystem:Sensor, + Facility_Int_LTG, !- Name + , !- OutputVariable or OutputMeter Index Key Name + InteriorLights:Electricity; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + BoilerPLR, !- Name + Central Boiler, !- OutputVariable or OutputMeter Index Key Name + Boiler Part Load Ratio; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + OAT, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Drybulb Temperature; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + M_S1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name + M S1 APARTMENT, !- OutputVariable or OutputMeter Index Key Name + Zone Ventilation Standard Density Volume Flow Rate; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + M_N1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name + M N1 APARTMENT, !- OutputVariable or OutputMeter Index Key Name + Zone Ventilation Standard Density Volume Flow Rate; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Actuator, + BoilerCurve, !- Name + Central Boiler Efficiency Curve, !- Actuated Component Unique Name + Curve, !- Actuated Component Type + Curve Result; !- Actuated Component Control Type + +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:Actuator, + S_Apartment_CLGSETP_Vent_CTRL, !- 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_Vent_CTRL, !- 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_Vent_CTRL, !- 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_Vent_CTRL, !- Name + N HTGSETP_APT_SCH, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:ProgramCallingManager, + Transformer_Load_Prog_Manager, !- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + Transformer_Load_Prog; !- Program Name 1 + +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:ProgramCallingManager, + OA_BASED_OPTIMUM_START_EMS_Program Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + OA_BASED_OPTIMUM_START_EMS_Program; !- Program Name 1 + +EnergyManagementSystem:ProgramCallingManager, + Vent_Thermostat_Reset, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Vent_Program_N_Apartments, !- Program Name 1 + Vent_Program_S_Apartments; !- Program Name 2 + +EnergyManagementSystem:Program, + Transformer_Load_Prog, !- Name + SET Wired_LTG = Facility_Int_LTG*0.0015; !- Program Line 1 + +EnergyManagementSystem:Program, + SetBoilerPar, !- Name + SET CapRated = 258468.02, !- Program Line 1 + SET EtRated = 0.8, !- Program Line 2 + SET CapRated = (CapRated *3.412)/1000, !- Program Line 3 + SET SkinLossRate = 0.02, !- Program Line 4 + SET BoilerType = 1, !- Program Line 5 + IF BoilerType == 1, !- Program Line 6 + IF CapRated >10000, !- Program Line 7 + SET PLRx = 0.2, !- Program Line 8 + ELSEIF CapRated >5000, !- Program Line 9 + SET PLRx = 0.25, !- Program Line 10 + ELSEIF CapRated >1000, !- Program Line 11 + SET PLRx = 0.33, !- Program Line 12 + ELSE, !- Program Line 13 + SET BoilerType = 2, !- Program Line 14 + SET PLRx = 0.2, !- Program Line 15 + ENDIF, !- Program Line 16 + ELSE, !- Program Line 17 + SET PLRx = 0.2, !- Program Line 18 + ENDIF, !- Program Line 19 + IF BoilerType == 1, !- Program Line 20 + SET CurveX = 0.975 + 0.305 * PLRx - 0.527 * (PLRx^2) + 0.249 * (PLRx^3), !- Program Line 21 + ELSE, !- Program Line 22 + SET CurveX = 0.907 + 0.320 * PLRx - 0.420 * (PLRx^2) + 0.193 * (PLRx^3), !- Program Line 23 + ENDIF, !- Program Line 24 + SET LoadX = CapRated * PLRx, !- Program Line 25 + SET Etx = CurveX * EtRated, !- Program Line 26 + SET InputEx = LoadX/Etx, !- Program Line 27 + SET SkinEx = CapRated * SkinLossRate, !- Program Line 28 + SET Ecx = (LoadX + SkinEx)/InputEx; !- Program Line 29 + +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), !- Program Line 3 + ELSE, !- Program Line 4 + SET BoilerCurve = 0.907 + 0.320*BoilerPLR - 0.420*(BoilerPLR^2) + 0.193*(BoilerPLR^3), !- Program Line 5 + ENDIF, !- Program Line 6 + ELSE, !- Program Line 7 + IF BoilerPLR == 0, !- Program Line 8 + SET BoilerCurve = NULL, !- Program Line 9 + ELSE, !- Program Line 10 + IF BoilerPLR <0.05, !- Program Line 11 + SET BoilerCurve = (0.05/(0.05 + SkinLossRate)) * (Ecx/EtRated), !- Program Line 12 + ELSE, !- Program Line 13 + SET BoilerCurve = (BoilerPLR/(BoilerPLR + SkinLossRate)) * (Ecx/EtRated), !- Program Line 14 + ENDIF, !- Program Line 15 + ENDIF, !- Program Line 16 + ENDIF; !- Program Line 17 + +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, !- Program Line 3 + ELSEIF DaylightSavings==1 && Hour==6 && DayOfWeek>1 && DayOfWeek<7 && OAT<23.9 && OAT>1.7, !- Program Line 4 + SET CLGSETP_OFF_SCH_Actuator = 29.4, !- Program Line 5 + SET HTGSETP_OFF_SCH_Actuator = 15.6, !- Program Line 6 + ELSE, !- Program Line 7 + SET CLGSETP_SCH_Actuator = NULL, !- Program Line 8 + SET HTGSETP_SCH_Actuator = NULL, !- Program Line 9 + ENDIF; !- Program Line 10 + +EnergyManagementSystem:Program, + Vent_Program_S_Apartments, !- Name + Set Vent_Setback_Flag = 1, !- Program Line 1 + IF (M_S1_Apartment_Sliding_Door_Ventilation_Sensor > 0) && (Vent_Setback_Flag == 1), !- Program Line 2 + SET S_Apartment_CLGSETP_Vent_CTRL = 32.22, !- Program Line 3 + SET S_Apartment_HTGSETP_Vent_CTRL = 12.78, !- Program Line 4 + ELSE, !- Program Line 5 + SET S_Apartment_CLGSETP_Vent_CTRL = null, !- Program Line 6 + SET S_Apartment_HTGSETP_Vent_CTRL = null, !- Program Line 7 + ENDIF; !- Program Line 8 + +EnergyManagementSystem:Program, + Vent_Program_N_Apartments, !- Name + Set Vent_Setback_Flag = 1, !- Program Line 1 + IF (M_N1_Apartment_Sliding_Door_Ventilation_Sensor > 0) && (Vent_Setback_Flag == 1), !- Program Line 2 + SET N_Apartment_CLGSETP_Vent_CTRL = 32.22, !- Program Line 3 + SET N_Apartment_HTGSETP_Vent_CTRL = 12.78, !- Program Line 4 + ELSE, !- Program Line 5 + SET N_Apartment_CLGSETP_Vent_CTRL = null, !- Program Line 6 + SET N_Apartment_HTGSETP_Vent_CTRL = null, !- Program Line 7 + ENDIF; !- Program Line 8 + +EnergyManagementSystem:GlobalVariable, + Wired_LTG; !- Erl Variable 1 Name + +EnergyManagementSystem:GlobalVariable, + BoilerType, !- Erl Variable 1 Name + CapRated, !- Erl Variable 2 Name + EtRated, !- Erl Variable 3 Name + PLRx, !- Erl Variable 4 Name + Ecx, !- Erl Variable 5 Name + SkinLossRate; !- Erl Variable 6 Name + +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 + +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 + +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 + +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: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 + +SetpointManager:MixedAir, + Split GSW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G SW Supply Fan Outlet, !- Fan Outlet Node Name + G SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GNW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G NW Supply Fan Outlet, !- Fan Outlet Node Name + G NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G NE Supply Fan Outlet, !- Fan Outlet Node Name + G NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G N1 Supply Fan Outlet, !- Fan Outlet Node Name + G N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G N2 Supply Fan Outlet, !- Fan Outlet Node Name + G N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G S1 Supply Fan Outlet, !- Fan Outlet Node Name + G S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G S2 Supply Fan Outlet, !- Fan Outlet Node Name + G S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 SW Supply Fan Outlet, !- Fan Outlet Node Name + F2 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 NW Supply Fan Outlet, !- Fan Outlet Node Name + F2 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 SE Supply Fan Outlet, !- Fan Outlet Node Name + F2 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 NE Supply Fan Outlet, !- Fan Outlet Node Name + F2 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F2 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F2 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F2 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F2 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 SW Supply Fan Outlet, !- Fan Outlet Node Name + F3 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 NW Supply Fan Outlet, !- Fan Outlet Node Name + F3 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 SE Supply Fan Outlet, !- Fan Outlet Node Name + F3 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 NE Supply Fan Outlet, !- Fan Outlet Node Name + F3 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F3 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F3 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F3 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F3 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 SW Supply Fan Outlet, !- Fan Outlet Node Name + F4 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 NW Supply Fan Outlet, !- Fan Outlet Node Name + F4 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 SE Supply Fan Outlet, !- Fan Outlet Node Name + F4 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 NE Supply Fan Outlet, !- Fan Outlet Node Name + F4 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F4 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F4 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F4 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F4 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MSW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M SW Supply Fan Outlet, !- Fan Outlet Node Name + M SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MNW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M NW Supply Fan Outlet, !- Fan Outlet Node Name + M NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MSE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M SE Supply Fan Outlet, !- Fan Outlet Node Name + M SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M NE Supply Fan Outlet, !- Fan Outlet Node Name + M NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M N1 Supply Fan Outlet, !- Fan Outlet Node Name + M N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M N2 Supply Fan Outlet, !- Fan Outlet Node Name + M N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M S1 Supply Fan Outlet, !- Fan Outlet Node Name + M S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M S2 Supply Fan Outlet, !- Fan Outlet Node Name + M S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 SW Supply Fan Outlet, !- Fan Outlet Node Name + F6 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 NW Supply Fan Outlet, !- Fan Outlet Node Name + F6 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 SE Supply Fan Outlet, !- Fan Outlet Node Name + F6 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 NE Supply Fan Outlet, !- Fan Outlet Node Name + F6 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F6 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F6 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F6 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F6 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 SW Supply Fan Outlet, !- Fan Outlet Node Name + F7 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 NW Supply Fan Outlet, !- Fan Outlet Node Name + F7 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 SE Supply Fan Outlet, !- Fan Outlet Node Name + F7 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 NE Supply Fan Outlet, !- Fan Outlet Node Name + F7 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F7 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F7 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F7 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F7 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 SW Supply Fan Outlet, !- Fan Outlet Node Name + F8 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 NW Supply Fan Outlet, !- Fan Outlet Node Name + F8 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 SE Supply Fan Outlet, !- Fan Outlet Node Name + F8 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 NE Supply Fan Outlet, !- Fan Outlet Node Name + F8 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F8 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F8 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F8 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F8 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 SW Supply Fan Outlet, !- Fan Outlet Node Name + F9 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 NW Supply Fan Outlet, !- Fan Outlet Node Name + F9 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 SE Supply Fan Outlet, !- Fan Outlet Node Name + F9 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 NE Supply Fan Outlet, !- Fan Outlet Node Name + F9 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F9 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F9 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F9 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F9 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T NE Supply Fan Outlet, !- Fan Outlet Node Name + T NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T N1 Supply Fan Outlet, !- Fan Outlet Node Name + T N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T N2 Supply Fan Outlet, !- Fan Outlet Node Name + T N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T S1 Supply Fan Outlet, !- Fan Outlet Node Name + T S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T S2 Supply Fan Outlet, !- Fan Outlet Node Name + T S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G SW Return Air Inlet, !- Return Air Stream Node Name + G SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G NW Return Air Inlet, !- Return Air Stream Node Name + G NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G NE Return Air Inlet, !- Return Air Stream Node Name + G NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G N1 Return Air Inlet, !- Return Air Stream Node Name + G N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G N2 Return Air Inlet, !- Return Air Stream Node Name + G N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G S1 Return Air Inlet, !- Return Air Stream Node Name + G S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G S2 Return Air Inlet, !- Return Air Stream Node Name + G S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 SW Return Air Inlet, !- Return Air Stream Node Name + F2 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 NW Return Air Inlet, !- Return Air Stream Node Name + F2 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 SE Return Air Inlet, !- Return Air Stream Node Name + F2 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 NE Return Air Inlet, !- Return Air Stream Node Name + F2 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 N1 Return Air Inlet, !- Return Air Stream Node Name + F2 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 N2 Return Air Inlet, !- Return Air Stream Node Name + F2 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 S1 Return Air Inlet, !- Return Air Stream Node Name + F2 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 S2 Return Air Inlet, !- Return Air Stream Node Name + F2 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 SW Return Air Inlet, !- Return Air Stream Node Name + F3 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 NW Return Air Inlet, !- Return Air Stream Node Name + F3 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 SE Return Air Inlet, !- Return Air Stream Node Name + F3 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 NE Return Air Inlet, !- Return Air Stream Node Name + F3 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 N1 Return Air Inlet, !- Return Air Stream Node Name + F3 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 N2 Return Air Inlet, !- Return Air Stream Node Name + F3 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 S1 Return Air Inlet, !- Return Air Stream Node Name + F3 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 S2 Return Air Inlet, !- Return Air Stream Node Name + F3 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 SW Return Air Inlet, !- Return Air Stream Node Name + F4 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 NW Return Air Inlet, !- Return Air Stream Node Name + F4 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 SE Return Air Inlet, !- Return Air Stream Node Name + F4 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 NE Return Air Inlet, !- Return Air Stream Node Name + F4 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 N1 Return Air Inlet, !- Return Air Stream Node Name + F4 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 N2 Return Air Inlet, !- Return Air Stream Node Name + F4 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 S1 Return Air Inlet, !- Return Air Stream Node Name + F4 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 S2 Return Air Inlet, !- Return Air Stream Node Name + F4 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M SW Return Air Inlet, !- Return Air Stream Node Name + M SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M NW Return Air Inlet, !- Return Air Stream Node Name + M NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M SE Return Air Inlet, !- Return Air Stream Node Name + M SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M NE Return Air Inlet, !- Return Air Stream Node Name + M NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M N1 Return Air Inlet, !- Return Air Stream Node Name + M N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M N2 Return Air Inlet, !- Return Air Stream Node Name + M N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M S1 Return Air Inlet, !- Return Air Stream Node Name + M S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M S2 Return Air Inlet, !- Return Air Stream Node Name + M S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 SW Return Air Inlet, !- Return Air Stream Node Name + F6 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 NW Return Air Inlet, !- Return Air Stream Node Name + F6 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 SE Return Air Inlet, !- Return Air Stream Node Name + F6 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 NE Return Air Inlet, !- Return Air Stream Node Name + F6 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 N1 Return Air Inlet, !- Return Air Stream Node Name + F6 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 N2 Return Air Inlet, !- Return Air Stream Node Name + F6 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 S1 Return Air Inlet, !- Return Air Stream Node Name + F6 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 S2 Return Air Inlet, !- Return Air Stream Node Name + F6 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 SW Return Air Inlet, !- Return Air Stream Node Name + F7 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 NW Return Air Inlet, !- Return Air Stream Node Name + F7 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 SE Return Air Inlet, !- Return Air Stream Node Name + F7 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 NE Return Air Inlet, !- Return Air Stream Node Name + F7 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 N1 Return Air Inlet, !- Return Air Stream Node Name + F7 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 N2 Return Air Inlet, !- Return Air Stream Node Name + F7 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 S1 Return Air Inlet, !- Return Air Stream Node Name + F7 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 S2 Return Air Inlet, !- Return Air Stream Node Name + F7 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 SW Return Air Inlet, !- Return Air Stream Node Name + F8 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 NW Return Air Inlet, !- Return Air Stream Node Name + F8 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 SE Return Air Inlet, !- Return Air Stream Node Name + F8 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 NE Return Air Inlet, !- Return Air Stream Node Name + F8 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 N1 Return Air Inlet, !- Return Air Stream Node Name + F8 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 N2 Return Air Inlet, !- Return Air Stream Node Name + F8 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 S1 Return Air Inlet, !- Return Air Stream Node Name + F8 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 S2 Return Air Inlet, !- Return Air Stream Node Name + F8 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 SW Return Air Inlet, !- Return Air Stream Node Name + F9 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 NW Return Air Inlet, !- Return Air Stream Node Name + F9 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 SE Return Air Inlet, !- Return Air Stream Node Name + F9 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 NE Return Air Inlet, !- Return Air Stream Node Name + F9 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 N1 Return Air Inlet, !- Return Air Stream Node Name + F9 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 N2 Return Air Inlet, !- Return Air Stream Node Name + F9 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 S1 Return Air Inlet, !- Return Air Stream Node Name + F9 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 S2 Return Air Inlet, !- Return Air Stream Node Name + F9 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T NE Return Air Inlet, !- Return Air Stream Node Name + T NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T N1 Return Air Inlet, !- Return Air Stream Node Name + T N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T N2 Return Air Inlet, !- Return Air Stream Node Name + T N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T S1 Return Air Inlet, !- Return Air Stream Node Name + T S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T S2 Return Air Inlet, !- Return Air Stream Node Name + T S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +ElectricLoadCenter:Transformer, + Transformer 1, !- Name + Always_On, !- Availability Schedule Name + PowerInFromGrid, !- Transformer Usage + , !- Zone Name + , !- Radiative Fraction + 75000, !- Rated Capacity + 3, !- Phase + Aluminum, !- Conductor Material + 150, !- Full Load Temperature Rise + 0.1, !- Fraction of Eddy Current Losses + NominalEfficiency, !- Performance Input Method + , !- Rated No Load Loss + , !- Rated Load Loss + 0.986, !- Nameplate Efficiency + 0.35, !- Per Unit Load for Nameplate Efficiency + 75, !- Reference Temperature for Nameplate Efficiency + , !- 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 + +WaterUse:Equipment, + G SW Apartment sub cat, !- Name + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + +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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + T S2 Apartment sub cat; !- Water Use Equipment 1 Name + +Curve:Quadratic, + HPACCOOLPLFFPLR, !- Name + 0.75, !- Coefficient1 Constant + 0.25, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + Central Boiler Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 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 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Biquadratic, + ChillerCentEIRFT, !- Name + 0.9339, !- Coefficient1 Constant + -0.0582, !- Coefficient2 x + 0.0045, !- Coefficient3 x2 + 0.0024, !- Coefficient4 y + 0.0005, !- Coefficient5 y2 + -0.0012, !- Coefficient6 xy + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +Curve:Biquadratic, + ChillerCentCapFT, !- Name + 0.2579, !- Coefficient1 Constant + 0.0389, !- Coefficient2 x + -0.0002, !- Coefficient3 x2 + 0.0469, !- Coefficient4 y + -0.0009, !- Coefficient5 y2 + -0.0003, !- Coefficient6 xy + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +Output:VariableDictionary, + IDF; !- Key Field + +Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + +Output:Table:Monthly, + Monthly Indoor Temp, !- Name + 2, !- Digits After Decimal + Zone Mean Air Temperature, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + Components of Peak Electrical Demand, !- Name + 3, !- Digits After Decimal + Electricity:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity, !- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity, !- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + +Output:Table:Monthly, + Components of Peak Gas Demand, !- Name + 3, !- Digits After Decimal + Gas:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Gas:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + Gas:HVAC, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Gas, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + MiscPlugGas:InteriorEquipment:Gas, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Gas:Plant, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + WaterSystems:Gas, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + Water Heater:WaterSystems:Gas, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Heating:Gas, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 9 + +OutputControl:Table:Style, + Comma, !- Column Separator + None; !- Unit Conversion + +Output:Meter:MeterFileOnly, + Electricity:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + ElectricityNet:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + Gas:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + InteriorLights:Electricity, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + InteriorEquipment:Electricity, !- Key Name + Hourly; !- Reporting Frequency + +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 \ No newline at end of file diff --git a/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0V9-2-0.idf b/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0V9-2-0.idf new file mode 100644 index 000000000..ade543911 --- /dev/null +++ b/tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_BuffaloV9-2-0V9-2-0.idf @@ -0,0 +1,60603 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + YES; !- Run Simulation for Weather File Run Periods + +Building, + High-Rise Apartment, !- Name + 0, !- North Axis + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.2, !- Temperature Convergence Tolerance Value + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 30, !- Calculation Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit + +Timestep, + 4; !- Number of Timesteps per Hour + +ConvergenceLimits, + 5, !- Minimum System Timestep + 25; !- Maximum HVAC Iterations + +Site:Location, + Buffalo.Niagara.Intl.AP_NY_USA WMO=725280, !- Name + 42.94, !- Latitude + -78.74, !- Longitude + -5, !- Time Zone + 215; !- Elevation + +SizingPeriod:DesignDay, + Buffalo.Niagara.Intl.AP_NY_USA Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -16.3, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -16.3, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98769, !- Barometric Pressure + 5.1, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + Buffalo.Niagara.Intl.AP_NY_USA Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 30.3, !- Maximum DryBulb Temperature + 9.3, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 21.8, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98769, !- Barometric Pressure + 5.7, !- Wind Speed + 240, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance taub + 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance taud + +RunPeriod, + RUNPERIOD 1, !- 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 + ; !- Treat Weather as Actual + +RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November, !- Start Date + 1, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +Site:GroundTemperature:BuildingSurface, + 20.27, !- January Ground Temperature + 20.17, !- February Ground Temperature + 20.19, !- March Ground Temperature + 20.27, !- April Ground Temperature + 20.38, !- May Ground Temperature + 22.64, !- June Ground Temperature + 23.1, !- July Ground Temperature + 23.22, !- August Ground Temperature + 23.23, !- September Ground Temperature + 21, !- October Ground Temperature + 20.62, !- November Ground Temperature + 20.42; !- December Ground Temperature + +Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 8.966666667, !- Annual Average Outdoor Air Temperature + 26.2; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +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 + +Schedule:Compact, + OCC_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 7:00, !- Field 3 + 1.0, !- Field 4 + Until: 8:00, !- Field 5 + 0.85, !- Field 6 + Until: 9:00, !- Field 7 + 0.39, !- Field 8 + Until: 16:00, !- Field 9 + 0.25, !- Field 10 + Until: 17:00, !- Field 11 + 0.3, !- Field 12 + Until: 18:00, !- Field 13 + 0.52, !- Field 14 + Until: 21:00, !- Field 15 + 0.87, !- Field 16 + Until: 24:00, !- Field 17 + 1.0; !- Field 18 + +Schedule:Compact, + OCC_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 8:00, !- Field 3 + 0.0, !- Field 4 + Until: 12:00, !- Field 5 + 1.0, !- Field 6 + Until: 13:00, !- Field 7 + 0.5, !- Field 8 + Until: 17:00, !- Field 9 + 1.0, !- Field 10 + Until: 24:00, !- Field 11 + 0.0, !- Field 12 + For AllOtherDays, !- Field 13 + Until: 24:00, !- Field 14 + 0.0; !- Field 15 + +Schedule:Compact, + LTG_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 4:00, !- Field 3 + 0.011316031, !- Field 4 + Until: 5:00, !- Field 5 + 0.033948092, !- Field 6 + Until: 6:00, !- Field 7 + 0.0735542, !- Field 8 + Until: 7:00, !- Field 9 + 0.079212215, !- Field 10 + Until: 8:00, !- Field 11 + 0.0735542, !- Field 12 + Until: 9:00, !- Field 13 + 0.033948092, !- Field 14 + Until: 15:00, !- Field 15 + 0.022632061, !- Field 16 + Until: 16:00, !- Field 17 + 0.039606108, !- Field 18 + Until: 17:00, !- Field 19 + 0.079212215, !- Field 20 + Until: 18:00, !- Field 21 + 0.113160307, !- Field 22 + Until: 19:00, !- Field 23 + 0.152766415, !- Field 24 + Until: 21:00, !- Field 25 + 0.181056492, !- Field 26 + Until: 22:00, !- Field 27 + 0.124476338, !- Field 28 + Until: 23:00, !- Field 29 + 0.067896184, !- Field 30 + Until: 24:00, !- Field 31 + 0.028290077; !- Field 32 + +Schedule:Compact, + LTG_COR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.576875; !- Field 4 + +Schedule:Compact, + LTG_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00, !- Field 3 + 1, !- Field 4 + For: WinterDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0, !- Field 7 + For: Weekdays, !- Field 8 + Until: 8:00, !- Field 9 + 0.18, !- Field 10 + Until: 12:00, !- Field 11 + 0.76932, !- Field 12 + Until: 13:00, !- Field 13 + 0.68384, !- Field 14 + Until: 17:00, !- Field 15 + 0.76932, !- Field 16 + Until: 24:00, !- Field 17 + 0.18, !- Field 18 + For: AllOtherDays, !- Field 19 + Until: 24:00, !- Field 20 + 0.18; !- Field 21 + +Schedule:Compact, + EQP_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.45, !- Field 4 + Until: 2:00, !- Field 5 + 0.41, !- Field 6 + Until: 3:00, !- Field 7 + 0.39, !- Field 8 + Until: 5:00, !- Field 9 + 0.38, !- Field 10 + Until: 6:00, !- Field 11 + 0.43, !- Field 12 + Until: 7:00, !- Field 13 + 0.54, !- Field 14 + Until: 8:00, !- Field 15 + 0.65, !- Field 16 + Until: 9:00, !- Field 17 + 0.66, !- Field 18 + Until: 10:00, !- Field 19 + 0.67, !- Field 20 + Until: 11:00, !- Field 21 + 0.69, !- Field 22 + Until: 12:00, !- Field 23 + 0.70, !- Field 24 + Until: 13:00, !- Field 25 + 0.69, !- Field 26 + Until: 14:00, !- Field 27 + 0.66, !- Field 28 + Until: 15:00, !- Field 29 + 0.65, !- Field 30 + Until: 16:00, !- Field 31 + 0.68, !- Field 32 + Until: 17:00, !- Field 33 + 0.80, !- Field 34 + Until: 19:00, !- Field 35 + 1.0, !- Field 36 + Until: 20:00, !- Field 37 + 0.93, !- Field 38 + Until: 21:00, !- Field 39 + 0.89, !- Field 40 + Until: 22:00, !- Field 41 + 0.85, !- Field 42 + Until: 23:00, !- Field 43 + 0.71, !- Field 44 + Until: 24:00, !- Field 45 + 0.58; !- Field 46 + +Schedule:Compact, + EQP_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00, !- Field 3 + 0.218625, !- Field 4 + Until: 8:00, !- Field 5 + 0.33125, !- Field 6 + Until: 12:00, !- Field 7 + 0.92575, !- Field 8 + Until: 13:00, !- Field 9 + 0.870205, !- Field 10 + Until: 17:00, !- Field 11 + 0.92575, !- Field 12 + Until: 18:00, !- Field 13 + 0.33125, !- Field 14 + Until: 24:00, !- Field 15 + 0.218625, !- Field 16 + For AllOtherDays, !- Field 17 + Until: 24:00, !- Field 18 + 0.218625; !- Field 19 + +Schedule:Compact, + INF_APT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INF_OFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INF_COR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + INFIL_Door_Opening_SCH, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 07:00, !- Field 5 + 0.131, !- Field 6 + Until: 08:00, !- Field 7 + 1.0, !- Field 8 + Until: 17:00, !- Field 9 + 0.131, !- Field 10 + Until: 18:00, !- Field 11 + 1.0, !- Field 12 + Until: 22:00, !- Field 13 + 0.131, !- Field 14 + Until: 24:00, !- Field 15 + 0.0; !- Field 16 + +Schedule:Compact, + 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, + 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, !- Field 3 + 21.1; !- Field 4 + +Schedule:Compact, + CLGSETP_DESIGN_OFF_SCH, !- Name + Temperature, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR:AllDays, !- Field 2 + UNTIL: 24:00, !- Field 3 + 23.9; !- Field 4 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL:17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 21.1, !- Field 17 + UNTIL:17:00, !- Field 18 + 21.1, !- Field 19 + UNTIL: 18:00, !- Field 20 + 18.3, !- Field 21 + UNTIL: 24:00, !- Field 22 + 15.6, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 15.6; !- Field 26 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL: 17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 17.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 20.0, !- Field 19 + UNTIL: 17:00, !- Field 20 + 21.1, !- Field 21 + UNTIL: 18:00, !- Field 22 + 18.3, !- Field 23 + UNTIL: 24:00, !- Field 24 + 15.6, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 15.6; !- Field 28 + +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, !- Field 3 + 15.6, !- Field 4 + UNTIL: 8:00, !- Field 5 + 18.3, !- Field 6 + UNTIL: 17:00, !- Field 7 + 21.1, !- Field 8 + UNTIL: 18:00, !- Field 9 + 18.3, !- Field 10 + UNTIL: 24:00, !- Field 11 + 15.6, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 15.6, !- Field 15 + UNTIL: 8:00, !- Field 16 + 17.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 20.0, !- Field 19 + UNTIL: 17:00, !- Field 20 + 21.1, !- Field 21 + UNTIL: 18:00, !- Field 22 + 18.3, !- Field 23 + UNTIL: 24:00, !- Field 24 + 15.6, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 15.6; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 23.9, !- Field 17 + UNTIL:17:00, !- Field 18 + 23.9, !- Field 19 + UNTIL: 18:00, !- Field 20 + 26.7, !- Field 21 + UNTIL: 24:00, !- Field 22 + 29.4, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 29.4; !- Field 26 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 27.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 25.6, !- Field 19 + UNTIL: 17:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 18:00, !- Field 22 + 26.7, !- Field 23 + UNTIL: 24:00, !- Field 24 + 29.4, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 29.4; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 29.4, !- Field 15 + UNTIL: 8:00, !- Field 16 + 27.8, !- Field 17 + UNTIL: 9:00, !- Field 18 + 25.6, !- Field 19 + UNTIL: 17:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 18:00, !- Field 22 + 26.7, !- Field 23 + UNTIL: 24:00, !- Field 24 + 29.4, !- Field 25 + FOR: AllOtherDays, !- Field 26 + UNTIL: 24:00, !- Field 27 + 29.4; !- Field 28 + +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, !- Field 3 + 29.4, !- Field 4 + UNTIL: 8:00, !- Field 5 + 26.7, !- Field 6 + UNTIL:17:00, !- Field 7 + 23.9, !- Field 8 + UNTIL: 18:00, !- Field 9 + 26.7, !- Field 10 + UNTIL: 24:00, !- Field 11 + 29.4, !- Field 12 + FOR:Weekdays, !- Field 13 + UNTIL: 7:00, !- Field 14 + 23.9, !- Field 15 + UNTIL: 8:00, !- Field 16 + 23.9, !- Field 17 + UNTIL:17:00, !- Field 18 + 23.9, !- Field 19 + UNTIL: 18:00, !- Field 20 + 23.9, !- Field 21 + UNTIL: 24:00, !- Field 22 + 23.9, !- Field 23 + FOR: AllOtherDays, !- Field 24 + UNTIL: 24:00, !- Field 25 + 23.9; !- Field 26 + +Schedule:Compact, + Activity Schedule, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 95; !- Field 4 + +Schedule:Compact, + All Off, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.0; !- Field 4 + +Schedule:Compact, + All On, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + Exterior_Lgt_ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +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, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + ZONE CONTROL TYPE SCHED, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays Weekends Holidays Customday1 Customday2, !- Field 2 + Until: 24:00, !- Field 3 + 4, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 2, !- Field 7 + For: WinterDesignDay, !- Field 8 + Until: 24:00, !- Field 9 + 1; !- Field 10 + +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, !- Field 3 + 4; !- Field 4 + +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, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + SHWSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60; !- Field 4 + +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, !- Field 3 + 60.0; !- Field 4 + +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, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + SHW TARGET TEMP SCHED, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Schedule:Compact, + SHW SUPPLY TEMP SCHED, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 55; !- Field 4 + +Schedule:Compact, + SHW Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.05; !- Field 4 + +Schedule:Compact, + SHW Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + PlantOnSched, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0; !- Field 4 + +Schedule:Compact, + Ambient Temp Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + APT_DHW_SCH, !- Name + Fraction, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 1:00, !- Field 3 + 0.08, !- Field 4 + UNTIL: 2:00, !- Field 5 + 0.04, !- Field 6 + UNTIL: 3:00, !- Field 7 + 0.01, !- Field 8 + UNTIL: 4:00, !- Field 9 + 0.01, !- Field 10 + UNTIL: 5:00, !- Field 11 + 0.04, !- Field 12 + UNTIL: 6:00, !- Field 13 + 0.27, !- Field 14 + UNTIL: 7:00, !- Field 15 + 0.94, !- Field 16 + UNTIL: 8:00, !- Field 17 + 1.00, !- Field 18 + UNTIL: 9:00, !- Field 19 + 0.96, !- Field 20 + UNTIL: 10:00, !- Field 21 + 0.84, !- Field 22 + UNTIL: 11:00, !- Field 23 + 0.76, !- Field 24 + UNTIL: 12:00, !- Field 25 + 0.61, !- Field 26 + UNTIL: 13:00, !- Field 27 + 0.53, !- Field 28 + UNTIL: 14:00, !- Field 29 + 0.47, !- Field 30 + UNTIL: 15:00, !- Field 31 + 0.41, !- Field 32 + UNTIL: 16:00, !- Field 33 + 0.47, !- Field 34 + UNTIL: 17:00, !- Field 35 + 0.55, !- Field 36 + UNTIL: 18:00, !- Field 37 + 0.73, !- Field 38 + UNTIL: 19:00, !- Field 39 + 0.86, !- Field 40 + UNTIL: 20:00, !- Field 41 + 0.82, !- Field 42 + UNTIL: 21:00, !- Field 43 + 0.75, !- Field 44 + UNTIL: 22:00, !- Field 45 + 0.61, !- Field 46 + UNTIL: 23:00, !- Field 47 + 0.53, !- Field 48 + UNTIL: 24:00, !- Field 49 + 0.29; !- Field 50 + +Schedule:Compact, + SupplyFanSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + PLANTHEATINGONSCHED, !- Name + FRACTION, !- Schedule Type Limits Name + Through: 5/8, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00, !- Field 3 + 1.00, !- Field 4 + Through: 10/17, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00, !- Field 7 + 0.00, !- Field 8 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00, !- Field 11 + 1.00; !- Field 12 + +Schedule:Compact, + PLANTCOOLINGONSCHED, !- Name + FRACTION, !- Schedule Type Limits Name + Through: 5/8, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00, !- Field 3 + 0.00, !- Field 4 + Through: 10/17, !- Field 5 + For: Alldays, !- Field 6 + Until: 24:00, !- Field 7 + 1.00, !- Field 8 + Through: 12/31, !- Field 9 + For: Alldays, !- Field 10 + Until: 24:00, !- Field 11 + 0.00; !- Field 12 + +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, !- Field 3 + 30; !- Field 4 + +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, !- Field 3 + 20; !- Field 4 + +Schedule:Compact, + Exterior_Ltg_Sch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 07:00, !- Field 3 + 1.0, !- Field 4 + Until: 19:00, !- Field 5 + 0.0, !- Field 6 + Until: 24:00, !- Field 7 + 1.0; !- Field 8 + +Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WinterDesignDay, !- Field 2 + Until: 24:00, !- Field 3 + 0.05, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0.5, !- Field 7 + For: Allotherdays, !- Field 8 + Until: 04:00, !- Field 9 + 0.05, !- Field 10 + Until: 05:00, !- Field 11 + 0.10, !- Field 12 + Until: 06:00, !- Field 13 + 0.20, !- Field 14 + Until: 07:00, !- Field 15 + 0.40, !- Field 16 + Until: 09:00, !- Field 17 + 0.50, !- Field 18 + Until: 10:00, !- Field 19 + 0.35, !- Field 20 + Until: 16:00, !- Field 21 + 0.15, !- Field 22 + Until: 17:00, !- Field 23 + 0.35, !- Field 24 + Until: 19:00, !- Field 25 + 0.50, !- Field 26 + Until: 21:00, !- Field 27 + 0.40, !- Field 28 + Until: 22:00, !- Field 29 + 0.30, !- Field 30 + Until: 23:00, !- Field 31 + 0.20, !- Field 32 + Until: 24:00, !- Field 33 + 0.10; !- Field 34 + +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, !- Field 3 + 1; !- Field 4 + +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, !- Field 3 + 0.05, !- Field 4 + For: SummerDesignDay, !- Field 5 + Until: 24:00, !- Field 6 + 0.5, !- Field 7 + For: Allotherdays, !- Field 8 + Until: 04:00, !- Field 9 + 0.05, !- Field 10 + Until: 05:00, !- Field 11 + 0.10, !- Field 12 + Until: 06:00, !- Field 13 + 0.20, !- Field 14 + Until: 07:00, !- Field 15 + 0.40, !- Field 16 + Until: 09:00, !- Field 17 + 0.50, !- Field 18 + Until: 10:00, !- Field 19 + 0.35, !- Field 20 + Until: 16:00, !- Field 21 + 0.15, !- Field 22 + Until: 17:00, !- Field 23 + 0.35, !- Field 24 + Until: 19:00, !- Field 25 + 0.50, !- Field 26 + Until: 21:00, !- Field 27 + 0.40, !- Field 28 + Until: 22:00, !- Field 29 + 0.30, !- Field 30 + Until: 23:00, !- Field 31 + 0.20, !- Field 32 + Until: 24:00, !- Field 33 + 0.10; !- Field 34 + +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 + +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 + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + AC02 Acoustic Ceiling, !- Name + MediumSmooth, !- Roughness + 0.0127, !- Thickness + 0.057, !- Conductivity + 288, !- Density + 1339, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material, + F07 25mm stucco, !- Name + Smooth, !- Roughness + 0.0254, !- Thickness + 0.72, !- Conductivity + 1856, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500; !- Specific Heat + +Material, + F08 Metal roof surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + F12 Asphalt shingles, !- Name + VeryRough, !- Roughness + 0.0032, !- Thickness + 0.04, !- Conductivity + 1120, !- Density + 1260, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + F13 Built-up roofing, !- Name + Rough, !- Roughness + 0.0095, !- Thickness + 0.16, !- Conductivity + 1120, !- Density + 1460, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material, + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness + 0.16, !- Conductivity + 800, !- Density + 1090, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material, + G01 16mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.0159, !- Thickness + 0.16, !- Conductivity + 800, !- Density + 1090; !- Specific Heat + +Material, + G02 16mm plywood, !- Name + Smooth, !- Roughness + 0.0159, !- Thickness + 0.12, !- Conductivity + 544, !- Density + 1210; !- Specific Heat + +Material, + M14 150mm heavyweight concrete roof, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 100mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 200mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 100mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 150mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + 200mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 2.31, !- Conductivity + 2322, !- Density + 832; !- Specific Heat + +Material, + M10 200mm concrete block wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 0.72, !- Conductivity + 800, !- Density + 832; !- Specific Heat + +Material, + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness + 1.326, !- Conductivity + 1842, !- Density + 912; !- Specific Heat + +Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material:NoMass, + Air_Wall_Material, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +Material:NoMass, + Nonres_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 5.30668495131472, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Semiheated_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 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 + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 2.81828208913367, !- Thermal Resistance + 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 + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Res_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Semiheated_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material:NoMass, + Std Opaque Door Panel, !- Name + MediumRough, !- Roughness + 0.123456790123457, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +WindowMaterial:Glazing, + GREEN 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.487, !- Solar Transmittance at Normal Incidence + 0.056, !- Front Side Solar Reflectance at Normal Incidence + 0.056, !- Back Side Solar Reflectance at Normal Incidence + 0.749, !- Visible Transmittance at Normal Incidence + 0.07, !- Front Side Visible Reflectance at Normal Incidence + 0.07, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.24, !- Solar Transmittance at Normal Incidence + 0.16, !- Front Side Solar Reflectance at Normal Incidence + 0.32, !- Back Side Solar Reflectance at Normal Incidence + 0.3, !- Visible Transmittance at Normal Incidence + 0.16, !- Front Side Visible Reflectance at Normal Incidence + 0.29, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.6, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF C CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.2, !- Solar Transmittance at Normal Incidence + 0.16, !- Front Side Solar Reflectance at Normal Incidence + 0.39, !- Back Side Solar Reflectance at Normal Incidence + 0.22, !- Visible Transmittance at Normal Incidence + 0.17, !- Front Side Visible Reflectance at Normal Incidence + 0.35, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.55, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECREF-1 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.099, !- Solar Transmittance at Normal Incidence + 0.219, !- Front Side Solar Reflectance at Normal Incidence + 0.219, !- Back Side Solar Reflectance at Normal Incidence + 0.155, !- Visible Transmittance at Normal Incidence + 0.073, !- Front Side Visible Reflectance at Normal Incidence + 0.073, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.1, !- Solar Transmittance at Normal Incidence + 0.11, !- Front Side Solar Reflectance at Normal Incidence + 0.41, !- Back Side Solar Reflectance at Normal Incidence + 0.13, !- Visible Transmittance at Normal Incidence + 0.1, !- Front Side Visible Reflectance at Normal Incidence + 0.32, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.45, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.775, !- Solar Transmittance at Normal Incidence + 0.071, !- Front Side Solar Reflectance at Normal Incidence + 0.071, !- Back Side Solar Reflectance at Normal Incidence + 0.881, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF D CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.429, !- Solar Transmittance at Normal Incidence + 0.308, !- Front Side Solar Reflectance at Normal Incidence + 0.379, !- Back Side Solar Reflectance at Normal Incidence + 0.334, !- Visible Transmittance at Normal Incidence + 0.453, !- Front Side Visible Reflectance at Normal Incidence + 0.505, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + BLUE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.48, !- Solar Transmittance at Normal Incidence + 0.05, !- Front Side Solar Reflectance at Normal Incidence + 0.05, !- Back Side Solar Reflectance at Normal Incidence + 0.57, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.06, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREY 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.455, !- Solar Transmittance at Normal Incidence + 0.053, !- Front Side Solar Reflectance at Normal Incidence + 0.053, !- Back Side Solar Reflectance at Normal Incidence + 0.431, !- Visible Transmittance at Normal Incidence + 0.052, !- Front Side Visible Reflectance at Normal Incidence + 0.052, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.6, !- Solar Transmittance at Normal Incidence + 0.17, !- Front Side Solar Reflectance at Normal Incidence + 0.22, !- Back Side Solar Reflectance at Normal Incidence + 0.84, !- Visible Transmittance at Normal Incidence + 0.055, !- Front Side Visible Reflectance at Normal Incidence + 0.078, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.626, !- Solar Transmittance at Normal Incidence + 0.061, !- Front Side Solar Reflectance at Normal Incidence + 0.061, !- Back Side Solar Reflectance at Normal Incidence + 0.611, !- Visible Transmittance at Normal Incidence + 0.061, !- Front Side Visible Reflectance at Normal Incidence + 0.061, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.36, !- Solar Transmittance at Normal Incidence + 0.093, !- Front Side Solar Reflectance at Normal Incidence + 0.2, !- Back Side Solar Reflectance at Normal Incidence + 0.5, !- Visible Transmittance at Normal Incidence + 0.035, !- Front Side Visible Reflectance at Normal Incidence + 0.054, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B TINT HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.15, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.33, !- Back Side Solar Reflectance at Normal Incidence + 0.18, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.28, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.6, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF C CLEAR MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.17, !- Solar Transmittance at Normal Incidence + 0.2, !- Front Side Solar Reflectance at Normal Incidence + 0.42, !- Back Side Solar Reflectance at Normal Incidence + 0.19, !- Visible Transmittance at Normal Incidence + 0.21, !- Front Side Visible Reflectance at Normal Incidence + 0.38, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.51, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF D TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.3, !- Solar Transmittance at Normal Incidence + 0.14, !- Front Side Solar Reflectance at Normal Incidence + 0.36, !- Back Side Solar Reflectance at Normal Incidence + 0.25, !- Visible Transmittance at Normal Incidence + 0.18, !- Front Side Visible Reflectance at Normal Incidence + 0.45, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + COATED POLY-77, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00051, !- Thickness + 0.504, !- Solar Transmittance at Normal Incidence + 0.402, !- Front Side Solar Reflectance at Normal Incidence + 0.398, !- Back Side Solar Reflectance at Normal Incidence + 0.766, !- Visible Transmittance at Normal Incidence + 0.147, !- Front Side Visible Reflectance at Normal Incidence + 0.167, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.075, !- Front Side Infrared Hemispherical Emissivity + 0.72, !- Back Side Infrared Hemispherical Emissivity + 0.14; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.26, !- Solar Transmittance at Normal Incidence + 0.14, !- Front Side Solar Reflectance at Normal Incidence + 0.41, !- Back Side Solar Reflectance at Normal Incidence + 0.46, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.04, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.03, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + PYR B CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.68, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.81, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.2, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF B CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.15, !- Solar Transmittance at Normal Incidence + 0.22, !- Front Side Solar Reflectance at Normal Incidence + 0.38, !- Back Side Solar Reflectance at Normal Incidence + 0.2, !- Visible Transmittance at Normal Incidence + 0.23, !- Front Side Visible Reflectance at Normal Incidence + 0.33, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.58, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF A CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.066, !- Solar Transmittance at Normal Incidence + 0.341, !- Front Side Solar Reflectance at Normal Incidence + 0.493, !- Back Side Solar Reflectance at Normal Incidence + 0.08, !- Visible Transmittance at Normal Incidence + 0.41, !- Front Side Visible Reflectance at Normal Incidence + 0.37, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.4, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + GREEN 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.635, !- Solar Transmittance at Normal Incidence + 0.063, !- Front Side Solar Reflectance at Normal Incidence + 0.063, !- Back Side Solar Reflectance at Normal Incidence + 0.822, !- Visible Transmittance at Normal Incidence + 0.075, !- Front Side Visible Reflectance at Normal Incidence + 0.075, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECABS-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.111, !- Solar Transmittance at Normal Incidence + 0.179, !- Front Side Solar Reflectance at Normal Incidence + 0.179, !- Back Side Solar Reflectance at Normal Incidence + 0.128, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + COATED POLY-55, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00051, !- Thickness + 0.32, !- Solar Transmittance at Normal Incidence + 0.582, !- Front Side Solar Reflectance at Normal Incidence + 0.593, !- Back Side Solar Reflectance at Normal Incidence + 0.551, !- Visible Transmittance at Normal Incidence + 0.336, !- Front Side Visible Reflectance at Normal Incidence + 0.375, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.046, !- Front Side Infrared Hemispherical Emissivity + 0.72, !- Back Side Infrared Hemispherical Emissivity + 0.14; !- Conductivity + +WindowMaterial:Glazing, + ECREF-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.099, !- Solar Transmittance at Normal Incidence + 0.219, !- Front Side Solar Reflectance at Normal Incidence + 0.219, !- Back Side Solar Reflectance at Normal Incidence + 0.155, !- Visible Transmittance at Normal Incidence + 0.073, !- Front Side Visible Reflectance at Normal Incidence + 0.073, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 6MM Rev, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.43, !- Solar Transmittance at Normal Incidence + 0.42, !- Front Side Solar Reflectance at Normal Incidence + 0.3, !- Back Side Solar Reflectance at Normal Incidence + 0.77, !- Visible Transmittance at Normal Incidence + 0.06, !- Front Side Visible Reflectance at Normal Incidence + 0.07, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.03, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + BRONZE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.482, !- Solar Transmittance at Normal Incidence + 0.054, !- Front Side Solar Reflectance at Normal Incidence + 0.054, !- Back Side Solar Reflectance at Normal Incidence + 0.534, !- Visible Transmittance at Normal Incidence + 0.057, !- Front Side Visible Reflectance at Normal Incidence + 0.057, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + REF A TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.06, !- Solar Transmittance at Normal Incidence + 0.13, !- Front Side Solar Reflectance at Normal Incidence + 0.42, !- Back Side Solar Reflectance at Normal Incidence + 0.09, !- Visible Transmittance at Normal Incidence + 0.14, !- Front Side Visible Reflectance at Normal Incidence + 0.35, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.47, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Theoretical Glass 297, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.375039, !- Solar Transmittance at Normal Incidence + 0.574961, !- Front Side Solar Reflectance at Normal Incidence + 0.574961, !- Back Side Solar Reflectance at Normal Incidence + 0.529698, !- Visible Transmittance at Normal Incidence + 0.420302, !- Front Side Visible Reflectance at Normal Incidence + 0.420302, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0103561; !- Conductivity + +WindowMaterial:Glazing, + Theoretical Glass 347, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.315861, !- Solar Transmittance at Normal Incidence + 0.634139, !- Front Side Solar Reflectance at Normal Incidence + 0.634139, !- Back Side Solar Reflectance at Normal Incidence + 0.479911, !- Visible Transmittance at Normal Incidence + 0.470089, !- Front Side Visible Reflectance at Normal Incidence + 0.470089, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.010358; !- Conductivity + +WindowMaterial:Glazing, + Glass_12116_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00475, !- Thickness + 0.171874, !- Solar Transmittance at Normal Incidence + 0.1094601, !- Front Side Solar Reflectance at Normal Incidence + 0.2199938, !- Back Side Solar Reflectance at Normal Incidence + 0.322771, !- Visible Transmittance at Normal Incidence + 0.182598, !- Front Side Visible Reflectance at Normal Incidence + 0.081654, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.538265, !- Back Side Infrared Hemispherical Emissivity + 1.000345; !- Conductivity + +WindowMaterial:Glazing, + Glass_102_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003048, !- Thickness + 0.833848, !- Solar Transmittance at Normal Incidence + 0.07476376, !- Front Side Solar Reflectance at Normal Incidence + 0.07485449, !- Back Side Solar Reflectance at Normal Incidence + 0.89926, !- Visible Transmittance at Normal Incidence + 0.082563, !- Front Side Visible Reflectance at Normal Incidence + 0.082564, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + PYR B CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.74, !- Solar Transmittance at Normal Incidence + 0.09, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.82, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.2, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.45, !- Solar Transmittance at Normal Incidence + 0.34, !- Front Side Solar Reflectance at Normal Incidence + 0.37, !- Back Side Solar Reflectance at Normal Incidence + 0.78, !- Visible Transmittance at Normal Incidence + 0.07, !- Front Side Visible Reflectance at Normal Incidence + 0.06, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.03, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + ECABS-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.814, !- Solar Transmittance at Normal Incidence + 0.086, !- Front Side Solar Reflectance at Normal Incidence + 0.086, !- Back Side Solar Reflectance at Normal Incidence + 0.847, !- Visible Transmittance at Normal Incidence + 0.099, !- Front Side Visible Reflectance at Normal Incidence + 0.099, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Glass_2175_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0086, !- Thickness + 0.167758, !- Solar Transmittance at Normal Incidence + 0.2176064, !- Front Side Solar Reflectance at Normal Incidence + 0.4379779, !- Back Side Solar Reflectance at Normal Incidence + 0.416044, !- Visible Transmittance at Normal Incidence + 0.078729, !- Front Side Visible Reflectance at Normal Incidence + 0.10654, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2022F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0039, !- Thickness + 0.355897, !- Solar Transmittance at Normal Incidence + 0.3940945, !- Front Side Solar Reflectance at Normal Incidence + 0.2656452, !- Back Side Solar Reflectance at Normal Incidence + 0.677694, !- Visible Transmittance at Normal Incidence + 0.042734, !- Front Side Visible Reflectance at Normal Incidence + 0.05547, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.046, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2052_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00837, !- Thickness + 0.507767, !- Solar Transmittance at Normal Incidence + 0.05422805, !- Front Side Solar Reflectance at Normal Incidence + 0.05449309, !- Back Side Solar Reflectance at Normal Incidence + 0.586833, !- Visible Transmittance at Normal Incidence + 0.05805, !- Front Side Visible Reflectance at Normal Incidence + 0.058397, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2010F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00221, !- Thickness + 0.434294, !- Solar Transmittance at Normal Incidence + 0.4183747, !- Front Side Solar Reflectance at Normal Incidence + 0.3410654, !- Back Side Solar Reflectance at Normal Incidence + 0.797579, !- Visible Transmittance at Normal Incidence + 0.043577, !- Front Side Visible Reflectance at Normal Incidence + 0.056031, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.042274, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_2027F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.004, !- Thickness + 0.369744, !- Solar Transmittance at Normal Incidence + 0.4700695, !- Front Side Solar Reflectance at Normal Incidence + 0.340935, !- Back Side Solar Reflectance at Normal Incidence + 0.765222, !- Visible Transmittance at Normal Incidence + 0.0546, !- Front Side Visible Reflectance at Normal Incidence + 0.073741, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.03675, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + ECREF-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness + 0.694, !- Solar Transmittance at Normal Incidence + 0.168, !- Front Side Solar Reflectance at Normal Incidence + 0.168, !- Back Side Solar Reflectance at Normal Incidence + 0.818, !- Visible Transmittance at Normal Incidence + 0.11, !- Front Side Visible Reflectance at Normal Incidence + 0.11, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.1, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + PYR A CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.75, !- Solar Transmittance at Normal Incidence + 0.1, !- Front Side Solar Reflectance at Normal Incidence + 0.1, !- Back Side Solar Reflectance at Normal Incidence + 0.85, !- Visible Transmittance at Normal Incidence + 0.12, !- Front Side Visible Reflectance at Normal Incidence + 0.12, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.4, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Glass_4321_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00618, !- Thickness + 0.425947, !- Solar Transmittance at Normal Incidence + 0.0742419, !- Front Side Solar Reflectance at Normal Incidence + 0.09994167, !- Back Side Solar Reflectance at Normal Incidence + 0.559652, !- Visible Transmittance at Normal Incidence + 0.072726, !- Front Side Visible Reflectance at Normal Incidence + 0.094819, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.279, !- Back Side Infrared Hemispherical Emissivity + 0.814; !- Conductivity + +WindowMaterial:Glazing, + Glass_8652_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003059, !- Thickness + 0.343691, !- Solar Transmittance at Normal Incidence + 0.2989869, !- Front Side Solar Reflectance at Normal Incidence + 0.4621051, !- Back Side Solar Reflectance at Normal Incidence + 0.487937, !- Visible Transmittance at Normal Incidence + 0.209449, !- Front Side Visible Reflectance at Normal Incidence + 0.306829, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.39, !- Back Side Infrared Hemispherical Emissivity + 0.962; !- Conductivity + +WindowMaterial:Glazing, + Glass_282_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003251, !- Thickness + 0.352565, !- Solar Transmittance at Normal Incidence + 0.2956174, !- Front Side Solar Reflectance at Normal Incidence + 0.4058073, !- Back Side Solar Reflectance at Normal Incidence + 0.510046, !- Visible Transmittance at Normal Incidence + 0.237458, !- Front Side Visible Reflectance at Normal Incidence + 0.270435, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.37, !- Back Side Infrared Hemispherical Emissivity + 0.94; !- Conductivity + +WindowMaterial:Glazing, + Glass_2531_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00306, !- Thickness + 0.350556, !- Solar Transmittance at Normal Incidence + 0.3198325, !- Front Side Solar Reflectance at Normal Incidence + 0.3617666, !- Back Side Solar Reflectance at Normal Incidence + 0.490923, !- Visible Transmittance at Normal Incidence + 0.25084, !- Front Side Visible Reflectance at Normal Incidence + 0.232929, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.454, !- Back Side Infrared Hemispherical Emissivity + 0.934; !- Conductivity + +WindowMaterial:Glazing, + Glass_2532_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00306, !- Thickness + 0.340824, !- Solar Transmittance at Normal Incidence + 0.2268281, !- Front Side Solar Reflectance at Normal Incidence + 0.2732317, !- Back Side Solar Reflectance at Normal Incidence + 0.543814, !- Visible Transmittance at Normal Incidence + 0.0766, !- Front Side Visible Reflectance at Normal Incidence + 0.079448, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.676, !- Back Side Infrared Hemispherical Emissivity + 0.933; !- Conductivity + +WindowMaterial:Glazing, + Glass_9731_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.01248, !- Thickness + 0.369424, !- Solar Transmittance at Normal Incidence + 0.2079376, !- Front Side Solar Reflectance at Normal Incidence + 0.203399, !- Back Side Solar Reflectance at Normal Incidence + 0.710088, !- Visible Transmittance at Normal Incidence + 0.071115, !- Front Side Visible Reflectance at Normal Incidence + 0.070696, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.815; !- Conductivity + +WindowMaterial:Glazing, + Glass_4313_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00385, !- Thickness + 0.373486, !- Solar Transmittance at Normal Incidence + 0.07114256, !- Front Side Solar Reflectance at Normal Incidence + 0.09944001, !- Back Side Solar Reflectance at Normal Incidence + 0.6013, !- Visible Transmittance at Normal Incidence + 0.077225, !- Front Side Visible Reflectance at Normal Incidence + 0.096992, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.298, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity + +WindowMaterial:Glazing, + Glass_1576_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003058, !- Thickness + 0.167637, !- Solar Transmittance at Normal Incidence + 0.3034693, !- Front Side Solar Reflectance at Normal Incidence + 0.1825558, !- Back Side Solar Reflectance at Normal Incidence + 0.341994, !- Visible Transmittance at Normal Incidence + 0.128888, !- Front Side Visible Reflectance at Normal Incidence + 0.128077, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.868, !- Back Side Infrared Hemispherical Emissivity + 0.846; !- Conductivity + +WindowMaterial:Gas, + AIR 6MM, !- Name + Air, !- Gas Type + 0.0063; !- Thickness + +WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + ARGON 13MM, !- Name + Argon, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0025, !- Name + Air, !- Gas Type + 0.0025; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0032, !- Name + Air, !- Gas Type + 0.0032; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0042, !- Name + Air, !- Gas Type + 0.0042; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0043, !- Name + Air, !- Gas Type + 0.0043; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0018, !- Name + Air, !- Gas Type + 0.0018; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0024, !- Name + Air, !- Gas Type + 0.0024; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0038, !- Name + Air, !- Gas Type + 0.0038; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0127, !- Name + Air, !- Gas Type + 0.0127; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0090, !- Name + Air, !- Gas Type + 0.009; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0070, !- Name + Air, !- Gas Type + 0.007; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0060, !- Name + Air, !- Gas Type + 0.006; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0052, !- Name + Air, !- Gas Type + 0.0052; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0048, !- Name + Air, !- Gas Type + 0.0048; !- Thickness + +WindowMaterial:Gas, + Gap_1_W_0_0046, !- Name + Air, !- Gas Type + 0.0046; !- Thickness + +WindowMaterial:GasMixture, + Gap_9_W_0_0127, !- Name + 0.0127, !- Thickness + 2, !- Number of Gases in Mixture + Air, !- Gas 1 Type + 0.1, !- Gas 1 Fraction + Argon, !- Gas 2 Type + 0.9; !- Gas 2 Fraction + +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 2 + Res_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + +Construction, + semiheated_ext_wall, !- Name + F07 25mm stucco, !- Outside Layer + G01 16mm gypsum board, !- Layer 2 + Semiheated_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + +Construction, + nonres_floor, !- Name + Nonres_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + res_floor, !- Name + Res_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + semiheated_floor, !- Name + Semiheated_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + +Construction, + nonres_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Nonres_Floor_Insulation; !- Layer 3 + +Construction, + res_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Res_Floor_Insulation; !- Layer 3 + +Construction, + semiheated_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Semiheated_Floor_Insulation; !- Layer 3 + +Construction, + Window_U_1.22_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.34, !- Name + REF C CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.22_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.72_SHGC_0.25, !- Name + REF B TINT MID 6MM; !- Outside Layer + +Construction, + Window_U_0.62_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.65_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.62_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.62_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.57_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.52_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.48_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.45, !- Name + REF D CLEAR 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.46_SHGC_0.45, !- Name + GREY 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.43_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.44_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.42_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.34_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.35_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.31, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.43_SHGC_0.29, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.34_SHGC_0.45, !- Name + PYR B CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.56_SHGC_0.35, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.45_SHGC_0.31, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.45, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-77, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 3MM; !- Layer 5 + +Construction, + Window_U_0.38_SHGC_0.26, !- Name + REF B TINT HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.25_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.35_SHGC_0.26, !- Name + REF C CLEAR MID 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.27, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.18, !- Name + REF A TINT MID 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.54_SHGC_0.13, !- Name + REF A CLEAR LO 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.33_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.29_SHGC_0.22, !- Name + BRONZE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +Construction, + Window_U_0.29_SHGC_0.17, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.29_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.23, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.16, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.24_SHGC_0.11, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.19_SHGC_0.20, !- Name + BRONZE 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 13MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +Construction, + Window_U_0.71_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.38_SHGC_0.30, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.36_SHGC_0.35, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.30_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +CONSTRUCTION, + Window_U_0.45_SHGC_0.27, !- Name + Glass_12116_LayerAvg, !- Outside Layer + Air 13MM, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.39_SHGC_0.36, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_1.98_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.98_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.49, !- Name + REF D CLEAR 6MM; !- Outside Layer + +Construction, + Window_U_1.17_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_0.98_SHGC_0.45, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.98_SHGC_0.68, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.88_SHGC_0.16, !- Name + REF A CLEAR LO 6MM; !- Outside Layer + +Construction, + Window_U_0.88_SHGC_0.27, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.52_SHGC_0.22, !- Name + REF B CLEAR LO 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.44_SHGC_0.20, !- Name + REF B TINT HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.39_SHGC_0.38, !- Name + Theoretical Glass 297; !- Outside Layer + +Construction, + Window_U_0.39_SHGC_0.32, !- Name + Theoretical Glass 347; !- Outside Layer + +Construction, + Window_U_0.75_SHGC_0.72, !- Name + PYR B CLEAR 6MM; !- Outside Layer + +Construction, + Window_U_0.67_SHGC_0.77, !- Name + PYR B CLEAR 3MM; !- Outside Layer + +Construction, + Window_U_0.56_SHGC_0.76, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +Construction, + Window_U_0.40_SHGC_0.43, !- Name + LoE SPEC SEL CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +Construction, + Window_U_0.40_SHGC_0.45, !- Name + ECABS-2 BLEACHED 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_0.60_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0025, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0032, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.50_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0042, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.47_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0043, !- Layer 2 + Glass_2010F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.75_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0018, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.65_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0024, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.55_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_0.50_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +Construction, + Window_U_1.16_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_1.08_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +Construction, + Window_U_0.29_SHGC_0.45, !- Name + ECREF-2 BLEACHED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +Construction, + Window_U_1.60_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.05_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.90_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.9_SHGC_0.6, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_0.75_SHGC_0.6, !- Name + GREY 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +Construction, + Window_U_0.85_SHGC_0.78, !- Name + PYR A CLEAR 3MM; !- Outside Layer + +Construction, + Window_U_1.30_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_1.15_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +Construction, + Window_U_1.80_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +Construction, + Window_U_1.70_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +CONSTRUCTION, + Window_U_0.37_SHGC_0.45, !- Name + Glass_4321_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.41_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.40_SHGC_0.4, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.40_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.39_SHGC_0.40, !- Name + Glass_282_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.45_SHGC_0.38, !- Name + Glass_2532_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.44_SHGC_0.40, !- Name + Glass_9731_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.38_SHGC_0.36, !- Name + Glass_2531_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.38_SHGC_0.41, !- Name + Glass_4313_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.51_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0090, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.54_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0070, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.56_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0060, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.59_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0048, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +CONSTRUCTION, + Window_U_0.58_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0052, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +Zone, + G SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Office, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + G Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F2 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 3.0478, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F3 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 6.0957, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F4 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 9.1435, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + M Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 12.1914, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F6 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 15.2393, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F7 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 18.2871, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F8 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 21.3349, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + F9 Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 24.3828, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T SW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T NW Apartment, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T SE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T NE Apartment, !- Name + 0, !- Direction of Relative North + 34.7455, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T N1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T N2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 9.2959, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T S1 Apartment, !- Name + 0, !- Direction of Relative North + 11.5818, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T S2 Apartment, !- Name + 0, !- Direction of Relative North + 23.1637, !- X Origin + 0, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + T Corridor, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 7.6196, !- Y Origin + 27.4307, !- Z Origin + 1, !- Type + 1, !- Multiplier + -9999, !- Ceiling Height + autocalculate, !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor SWA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G SW Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor NWA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G NW Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor SEA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + Office, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor NEA, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G NE Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor N1A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G N1 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor N2A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G N2 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor S1A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G S1 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g GFloor S2A, !- Name + Floor, !- Surface Type + ext_slab_8in_with_carpet, !- Construction Name + G S2 Apartment, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + g Floor C, !- Name + Floor, !- Surface Type + int_slab_ceiling, !- Construction Name + G Corridor, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 46.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- View Factor to Ground + 4, !- Number of Vertices + 11.5818, !- Vertex 1 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.5818, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6763, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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.3273, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.0478, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 3.0478, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 1.6763, !- Vertex 3 Ycoordinate + 3.0478, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.0478; !- Vertex 4 Zcoordinate + +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, !- Vertex 1 Xcoordinate + 1.6763, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 1.6763, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow1, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow11, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow12, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow3, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 1.4476, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 10.133380019685, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 10.133380019685, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow2, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow6, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 6.5, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 6.5, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.785679133858268, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.785679133858268, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow5, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow9, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow10, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow4, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 7.6196, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 10.5, !- Vertex 2 Xcoordinate + 7.6196, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 1.81422244094488, !- Vertex 3 Xcoordinate + 7.6196, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 1.81422244094488, !- Vertex 4 Xcoordinate + 7.6196, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow8, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow7, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- Construction Name + 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 Xcoordinate + 1.1, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 11.5818, !- Vertex 2 Xcoordinate + 1.1, !- Vertex 2 Ycoordinate + 0.9539, !- Vertex 2 Zcoordinate + 11.5818, !- Vertex 3 Xcoordinate + 6.81432086614173, !- Vertex 3 Ycoordinate + 0.9539, !- Vertex 3 Zcoordinate + 11.5818, !- Vertex 4 Xcoordinate + 6.81432086614173, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + GWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F2Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F3Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F4Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + MWindow14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F6Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F7Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F8Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + F9Window14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow13, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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, !- Vertex 1 Xcoordinate + 1.2953, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 1.2953, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0.381, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0.381, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + TWindow14, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.381, !- Vertex 1 Ycoordinate + 2.1731, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.381, !- Vertex 2 Ycoordinate + 0.954, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.2953, !- Vertex 3 Ycoordinate + 0.954, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.2953, !- Vertex 4 Ycoordinate + 2.1731; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + ENTRANCE DOOR, !- Name + Window, !- Surface Type + Window_U_0.41_SHGC_0.38, !- 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.3273, !- Vertex 1 Xcoordinate + 0.0508, !- Vertex 1 Ycoordinate + 2.1335, !- Vertex 1 Zcoordinate + 46.3273, !- Vertex 2 Xcoordinate + 0.0508, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 46.3273, !- Vertex 3 Xcoordinate + 1.6255, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 46.3273, !- Vertex 4 Xcoordinate + 1.6255, !- Vertex 4 Ycoordinate + 2.1335; !- Vertex 4 Zcoordinate + +InternalMass, + G SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G SW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G NW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + Office_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Office, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G NE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G N1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G N2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G S1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + G S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + G S2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + F2 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F2 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F2 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F3 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F3 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F4 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F4 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + M S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + M S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F6 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F6 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F7 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F7 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F8 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F8 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 SW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 NW Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 SE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 NE Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 N1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 N2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 S1 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + F9 S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + F9 S2 Apartment, !- Zone or ZoneList Name + 176.4981; !- Surface Area + +InternalMass, + T SW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T SW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T NW Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T NW Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T SE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T SE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T NE Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T NE Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T N1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T N1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T N2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T N2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T S1 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T S1 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +InternalMass, + T S2 Apartment_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + T S2 Apartment, !- Zone or ZoneList Name + 88.2492727; !- Surface Area + +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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + Activity Schedule; !- Activity Level Schedule Name + +People, + Office People, !- Name + Office, !- Zone or ZoneList Name + OCC_OFF_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 1, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- 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.5, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + Activity Schedule; !- Activity Level Schedule Name + +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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 10.0104363, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 6.45834625, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Office_Lights_plugin, !- Name + Office, !- Zone or ZoneList Name + LTG_OFF_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.0104363, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + M Corridor_Lights_plugin, !- Name + M Corridor, !- Zone or ZoneList Name + LTG_COR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 8.52501672, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse 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 + 2.9062557, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + GeneralLights-plugin, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + 6.67, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + MiscPlug; !- EndUse 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 + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.95, !- Fraction Lost + MiscPlug; !- EndUse 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 + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.95, !- Fraction Lost + MiscPlug; !- EndUse Subcategory + +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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.00056896, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000226844352, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 0.000162551872, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- 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 + , !- Flow per Zone Floor Area + 6.6170048e-05, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 0, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneVentilation:WindandStackOpenArea, + G SW Apartment Sliding Door Ventilation, !- Name + G SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G NW Apartment Sliding Door Ventilation, !- Name + G NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G NE Apartment Sliding Door Ventilation, !- Name + G NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G N1 Apartment Sliding Door Ventilation, !- Name + G N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G N2 Apartment Sliding Door Ventilation, !- Name + G N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G S1 Apartment Sliding Door Ventilation, !- Name + G S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + G S2 Apartment Sliding Door Ventilation, !- Name + G S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M SW Apartment Sliding Door Ventilation, !- Name + M SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M NW Apartment Sliding Door Ventilation, !- Name + M NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M SE Apartment Sliding Door Ventilation, !- Name + M SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M NE Apartment Sliding Door Ventilation, !- Name + M NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M N1 Apartment Sliding Door Ventilation, !- Name + M N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M N2 Apartment Sliding Door Ventilation, !- Name + M N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M S1 Apartment Sliding Door Ventilation, !- Name + M S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + M S2 Apartment Sliding Door Ventilation, !- Name + M S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T SW Apartment Sliding Door Ventilation, !- Name + T SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T NW Apartment Sliding Door Ventilation, !- Name + T NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T SE Apartment Sliding Door Ventilation, !- Name + T SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T NE Apartment Sliding Door Ventilation, !- Name + T NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T N1 Apartment Sliding Door Ventilation, !- Name + T N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T N2 Apartment Sliding Door Ventilation, !- Name + T N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T S1 Apartment Sliding Door Ventilation, !- Name + T S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + T S2 Apartment Sliding Door Ventilation, !- Name + T S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 SW Apartment Sliding Door Ventilation, !- Name + F2 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 NW Apartment Sliding Door Ventilation, !- Name + F2 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 SE Apartment Sliding Door Ventilation, !- Name + F2 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 NE Apartment Sliding Door Ventilation, !- Name + F2 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 N1 Apartment Sliding Door Ventilation, !- Name + F2 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 N2 Apartment Sliding Door Ventilation, !- Name + F2 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 S1 Apartment Sliding Door Ventilation, !- Name + F2 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F2 S2 Apartment Sliding Door Ventilation, !- Name + F2 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 SW Apartment Sliding Door Ventilation, !- Name + F3 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 NW Apartment Sliding Door Ventilation, !- Name + F3 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 SE Apartment Sliding Door Ventilation, !- Name + F3 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 NE Apartment Sliding Door Ventilation, !- Name + F3 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 N1 Apartment Sliding Door Ventilation, !- Name + F3 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 N2 Apartment Sliding Door Ventilation, !- Name + F3 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 S1 Apartment Sliding Door Ventilation, !- Name + F3 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F3 S2 Apartment Sliding Door Ventilation, !- Name + F3 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 SW Apartment Sliding Door Ventilation, !- Name + F4 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 NW Apartment Sliding Door Ventilation, !- Name + F4 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 SE Apartment Sliding Door Ventilation, !- Name + F4 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 NE Apartment Sliding Door Ventilation, !- Name + F4 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 N1 Apartment Sliding Door Ventilation, !- Name + F4 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 N2 Apartment Sliding Door Ventilation, !- Name + F4 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 S1 Apartment Sliding Door Ventilation, !- Name + F4 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F4 S2 Apartment Sliding Door Ventilation, !- Name + F4 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 SW Apartment Sliding Door Ventilation, !- Name + F6 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 NW Apartment Sliding Door Ventilation, !- Name + F6 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 SE Apartment Sliding Door Ventilation, !- Name + F6 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 NE Apartment Sliding Door Ventilation, !- Name + F6 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 N1 Apartment Sliding Door Ventilation, !- Name + F6 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 N2 Apartment Sliding Door Ventilation, !- Name + F6 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 S1 Apartment Sliding Door Ventilation, !- Name + F6 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F6 S2 Apartment Sliding Door Ventilation, !- Name + F6 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 SW Apartment Sliding Door Ventilation, !- Name + F7 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 NW Apartment Sliding Door Ventilation, !- Name + F7 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 SE Apartment Sliding Door Ventilation, !- Name + F7 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 NE Apartment Sliding Door Ventilation, !- Name + F7 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 N1 Apartment Sliding Door Ventilation, !- Name + F7 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 N2 Apartment Sliding Door Ventilation, !- Name + F7 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 S1 Apartment Sliding Door Ventilation, !- Name + F7 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F7 S2 Apartment Sliding Door Ventilation, !- Name + F7 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 SW Apartment Sliding Door Ventilation, !- Name + F8 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 NW Apartment Sliding Door Ventilation, !- Name + F8 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 SE Apartment Sliding Door Ventilation, !- Name + F8 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 NE Apartment Sliding Door Ventilation, !- Name + F8 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 N1 Apartment Sliding Door Ventilation, !- Name + F8 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 N2 Apartment Sliding Door Ventilation, !- Name + F8 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 S1 Apartment Sliding Door Ventilation, !- Name + F8 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F8 S2 Apartment Sliding Door Ventilation, !- Name + F8 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 SW Apartment Sliding Door Ventilation, !- Name + F9 SW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 NW Apartment Sliding Door Ventilation, !- Name + F9 NW Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 SE Apartment Sliding Door Ventilation, !- Name + F9 SE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 NE Apartment Sliding Door Ventilation, !- Name + F9 NE Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 N1 Apartment Sliding Door Ventilation, !- Name + F9 N1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 N2 Apartment Sliding Door Ventilation, !- Name + F9 N2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 0, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 S1 Apartment Sliding Door Ventilation, !- Name + F9 S1 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +ZoneVentilation:WindandStackOpenArea, + F9 S2 Apartment Sliding Door Ventilation, !- Name + F9 S2 Apartment, !- Zone Name + 0.1181, !- Opening Area + Sliding_Doors_Ventilation_Availability_SCH, !- Opening Area Fraction Schedule Name + autocalculate, !- Opening Effectiveness + 180, !- Effective Angle + 15.2393, !- Height Difference + autocalculate, !- Discharge Coefficient for Opening + 18.89, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 25.56, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + 15.56, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26.67, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +Exterior:Lights, + Facade Lighting, !- Name + Exterior_Lgt_ALWAYS_ON, !- Schedule Name + 7504.3, !- Design Level + AstronomicalClock, !- Control Option + General; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ DSOA G SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA Office, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000431773, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA G S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F2 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F3 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F4 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA M S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F6 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F7 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F8 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA F9 S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T SW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T NW Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T SE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T NE Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T N1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T N2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T S1 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +DesignSpecification:OutdoorAir, + SZ DSOA T S2 Apartment, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person + 0.000294083, !- Outdoor Air Flow per Zone Floor Area + ; !- Outdoor Air Flow per Zone + +Sizing:Parameters, + 1.2, !- Heating Sizing Factor + 1.2, !- Cooling Sizing Factor + 4; !- Timesteps in Averaging Window + +Sizing:Zone, + G SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + Office, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + G S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F2 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F3 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F4 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + M S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F6 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F7 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F8 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + F9 S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T SW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T NW Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T SE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T NE Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T N1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T N2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T S1 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:Zone, + T S2 Apartment, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + 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 + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate + , !- Heating Maximum Air Flow per Zone Floor Area + , !- Heating Maximum Air Flow + 0; !- Heating Maximum Air Flow Fraction + +Sizing:System, + AirLoop G SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop Office, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop G S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F2 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F3 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F4 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop M S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F6 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F7 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F8 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop F9 S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T SW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T NW, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T SE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T NE, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T N1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T N2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T S1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:System, + AirLoop T S2, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 14, !- Central Cooling Design Supply Air Temperature + 40, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:Plant, + SHWSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature + 5; !- Loop Design Temperature Difference + +Sizing:Plant, + Single Water Plant Loop, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 30, !- Design Loop Exit Temperature + 11; !- Loop Design Temperature Difference + +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 + AptCoolingSetPoint, !- Control 1 Name + ThermostatSetpoint:SingleHeating, !- Control 2 Object Type + AptHeatingSetPoint, !- Control 2 Name + ThermostatSetpoint:DualSetpoint, !- Control 3 Object Type + Apartment 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 + +ThermostatSetpoint:SingleHeating, + AptHeatingSetPoint, !- Name + HTGSETP_APT_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleHeating, + OffHeatingSetPoint, !- Name + HTGSETP_DESIGN_OFF_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + AptCoolingSetPoint, !- Name + CLGSETP_APT_SCH; !- Setpoint Temperature Schedule Name + +ThermostatSetpoint:SingleCooling, + OffCoolingSetPoint, !- Name + CLGSETP_DESIGN_OFF_SCH; !- 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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +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 + +ZoneHVAC:EquipmentList, + G SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +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 NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + G S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + G S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F2 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F2 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F3 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F3 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F4 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F4 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + M S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + M S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F6 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F6 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F7 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F7 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F8 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F8 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + F9 S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + F9 S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T SW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T SW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T NW Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T NW Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T SE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T SE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T NE Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T NE Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T N1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T N1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T N2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T N2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T S1 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T S1 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + T S2 Apartment Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + AirTerminal:SingleDuct:Uncontrolled, !- Zone Equipment 1 Object Type + T S2 Apartment Direct Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + , !- 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 + +Fan:OnOff, + AirLoop G SW Supply Fan, !- Name + All On, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 622.5, !- Pressure Rise + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + autosize, !- Maximum Flow Rate + 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 + +Coil:Heating:Electric, + Heat Pump DX Supp Heating Coil AirLoop G SW, !- Name + All On, !- Availability Schedule Name + 1, !- Efficiency + autosize, !- Nominal Capacity + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + Heating Coil Air Outlet Node AirLoop T S2, !- Air Inlet Node Name + AirLoop T S2 Supply Air Outlet; !- Air Outlet Node Name + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Cooling Capacity + 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 + 0; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity + +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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + autosize, !- Rated Water Flow Rate + autosize, !- Gross Rated Heating Capacity + 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 + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop G S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + G S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + G S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + G S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + G S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F2 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F2 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F2 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F2 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F2 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F3 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F3 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F3 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F3 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F3 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F4 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F4 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F4 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F4 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F4 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop M S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + M S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + M S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + M S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + M S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F6 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F6 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F6 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F6 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F6 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F7 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F7 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F7 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F7 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F7 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F8 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F8 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F8 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F8 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F8 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 SW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 SW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 SW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 SW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 SW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 NW OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 NW Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 NW Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 NW Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 NW Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 SE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 SE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 SE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 SE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 SE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop F9 S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + F9 S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + F9 S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + F9 S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + F9 S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T NE OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T NE Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T NE Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T NE Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T NE Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T N1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T N1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T N1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T N1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T N1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T N2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T N2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T N2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T N2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T N2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T S1 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T S1 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T S1 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T S1 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T S1 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +HeatExchanger:AirToAir:SensibleAndLatent, + AirLoop T S2 OA Heat Recovery, !- Name + All On, !- Availability Schedule Name + AUTOSIZE, !- Nominal Supply Air Flow Rate + 0.7, !- Sensible Effectiveness at 100 Heating Air Flow + 0, !- Latent Effectiveness at 100 Heating Air Flow + 0.7, !- Sensible Effectiveness at 75 Heating Air Flow + 0, !- Latent Effectiveness at 75 Heating Air Flow + 0.75, !- Sensible Effectiveness at 100 Cooling Air Flow + 0, !- Latent Effectiveness at 100 Cooling Air Flow + 0.75, !- Sensible Effectiveness at 75 Cooling Air Flow + 0, !- Latent Effectiveness at 75 Cooling Air Flow + T S2 Apartment Outside Air Inlet, !- Supply Air Inlet Node Name + T S2 Apartment Heat Recovery Outlet Node, !- Supply Air Outlet Node Name + T S2 Apartment Relief Air Outlet, !- Exhaust Air Inlet Node Name + T S2 Apartment Heat Recovery Secondary Outlet Node, !- Exhaust Air Outlet Node Name + 68.620847, !- Nominal Electric Power + Yes, !- Supply Air Outlet Temperature Control + Rotary, !- Heat Exchanger Type + ExhaustOnly, !- Frost Control Type + -23.3, !- Threshold Temperature + 0.167, !- Initial Defrost Time Fraction + 1.44; !- Rate of Defrost Time Fraction Increase + +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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- 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 + 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 + 60, !- Heat Pump Time Constant + 0.01, !- Fraction of OnCycle Power Use + 60, !- Heat Pump Fan Delay Time + 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 + , !- Maximum Outdoor DryBulb Temperature for Supplemental Heater Operation + Common OSA Inlet Node, !- Outdoor DryBulb Temperature Sensor Node Name + BlowThrough, !- Fan Placement + SupplyFanSch; !- Supply Air Fan Operating Mode Schedule Name + +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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + ; !- 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + 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 + autosize, !- Maximum Outdoor Air Flow Rate + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit DryBulb Temperature + , !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- 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 + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +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 + +AirLoopHVAC, + AirLoop G SW, !- Name + , !- Controller List Name + AirLoop G SW Availability Manager, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + 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 + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G NW Apartment OA Mixing Box; !- Component 2 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 + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop G S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop G S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + G S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F2 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F2 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F2 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F3 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F3 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F3 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F4 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F4 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F4 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop M S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop M S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + M S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F6 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F6 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F6 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F7 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F7 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F7 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F8 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F8 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F8 S2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 SW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 SW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 SW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 NW OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 NW OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 NW Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 SE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 SE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 SE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 NE OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop F9 S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop F9 S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + F9 S2 Apartment OA Mixing Box; !- Component 2 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 + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T NE OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T NE Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T N1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T N1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T N1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T N2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T N2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T N2 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T S1 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T S1 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T S1 Apartment OA Mixing Box; !- Component 2 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + AirLoop T S2 OA System Equipment, !- Name + HeatExchanger:AirToAir:SensibleAndLatent, !- Component 1 Object Type + AirLoop T S2 OA Heat Recovery, !- Component 1 Name + OutdoorAir:Mixer, !- Component 2 Object Type + T S2 Apartment OA Mixing Box; !- Component 2 Name + +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 + +OutdoorAir:Mixer, + G SW Apartment OA Mixing Box, !- Name + G SW Apartment Mixed Air Outlet, !- Mixed Air Node Name + G SW Apartment Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 Heat Recovery Outlet Node, !- 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 + +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 + +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 + +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 + +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 + +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 + +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, !- Branch 101 Name + WLHP Cooling Plant Branch AirLoop F7 SE, !- Branch 102 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Branch 103 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Branch 104 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Branch 105 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Branch 106 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Branch 107 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Branch 108 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Branch 109 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Branch 110 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Branch 111 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Branch 112 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Branch 113 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Branch 114 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Branch 115 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Branch 116 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Branch 117 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Branch 118 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Branch 119 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Branch 120 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Branch 121 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Branch 122 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Branch 123 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Branch 124 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Branch 125 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Branch 126 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Branch 127 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Branch 128 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Branch 129 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Branch 130 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Branch 131 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Branch 132 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Branch 133 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Branch 134 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Branch 135 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Branch 136 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Branch 137 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Branch 138 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Branch 139 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Branch 140 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Branch 141 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Branch 142 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Branch 143 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Branch 144 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Branch 145 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Branch 146 Name + WLHP Heating Plant Branch AirLoop T SW, !- Branch 147 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Branch 148 Name + WLHP Heating Plant Branch AirLoop T NW, !- Branch 149 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Branch 150 Name + WLHP Heating Plant Branch AirLoop T SE, !- Branch 151 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Branch 152 Name + WLHP Heating Plant Branch AirLoop T NE, !- Branch 153 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Branch 154 Name + WLHP Heating Plant Branch AirLoop T N1, !- Branch 155 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Branch 156 Name + WLHP Heating Plant Branch AirLoop T N2, !- Branch 157 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Branch 158 Name + WLHP Heating Plant Branch AirLoop T S1, !- Branch 159 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Branch 160 Name + WLHP Heating Plant Branch AirLoop T S2, !- Branch 161 Name + Plant Demand Bypass Branch, !- Branch 162 Name + Plant Demand Outlet Branch; !- Branch 163 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 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, !- Outlet Branch 101 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Outlet Branch 102 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Outlet Branch 103 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Outlet Branch 104 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Outlet Branch 105 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Outlet Branch 106 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Outlet Branch 107 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Outlet Branch 108 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Outlet Branch 109 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Outlet Branch 110 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Outlet Branch 111 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Outlet Branch 112 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Outlet Branch 113 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Outlet Branch 114 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Outlet Branch 115 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Outlet Branch 116 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Outlet Branch 117 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Outlet Branch 118 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Outlet Branch 119 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Outlet Branch 120 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Outlet Branch 121 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Outlet Branch 122 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Outlet Branch 123 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Outlet Branch 124 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Outlet Branch 125 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Outlet Branch 126 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Outlet Branch 127 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Outlet Branch 128 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Outlet Branch 129 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Outlet Branch 130 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Outlet Branch 131 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Outlet Branch 132 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Outlet Branch 133 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Outlet Branch 134 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Outlet Branch 135 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Outlet Branch 136 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Outlet Branch 137 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Outlet Branch 138 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Outlet Branch 139 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Outlet Branch 140 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Outlet Branch 141 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Outlet Branch 142 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Outlet Branch 143 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Outlet Branch 144 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Outlet Branch 145 Name + WLHP Heating Plant Branch AirLoop T SW, !- Outlet Branch 146 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Outlet Branch 147 Name + WLHP Heating Plant Branch AirLoop T NW, !- Outlet Branch 148 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Outlet Branch 149 Name + WLHP Heating Plant Branch AirLoop T SE, !- Outlet Branch 150 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Outlet Branch 151 Name + WLHP Heating Plant Branch AirLoop T NE, !- Outlet Branch 152 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Outlet Branch 153 Name + WLHP Heating Plant Branch AirLoop T N1, !- Outlet Branch 154 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Outlet Branch 155 Name + WLHP Heating Plant Branch AirLoop T N2, !- Outlet Branch 156 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Outlet Branch 157 Name + WLHP Heating Plant Branch AirLoop T S1, !- Outlet Branch 158 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Outlet Branch 159 Name + WLHP Heating Plant Branch AirLoop T S2, !- Outlet Branch 160 Name + Plant Demand Bypass Branch; !- Outlet Branch 161 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 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, !- Inlet Branch 101 Name + WLHP Heating Plant Branch AirLoop F7 SE, !- Inlet Branch 102 Name + WLHP Cooling Plant Branch AirLoop F7 NE, !- Inlet Branch 103 Name + WLHP Heating Plant Branch AirLoop F7 NE, !- Inlet Branch 104 Name + WLHP Cooling Plant Branch AirLoop F7 N1, !- Inlet Branch 105 Name + WLHP Heating Plant Branch AirLoop F7 N1, !- Inlet Branch 106 Name + WLHP Cooling Plant Branch AirLoop F7 N2, !- Inlet Branch 107 Name + WLHP Heating Plant Branch AirLoop F7 N2, !- Inlet Branch 108 Name + WLHP Cooling Plant Branch AirLoop F7 S1, !- Inlet Branch 109 Name + WLHP Heating Plant Branch AirLoop F7 S1, !- Inlet Branch 110 Name + WLHP Cooling Plant Branch AirLoop F7 S2, !- Inlet Branch 111 Name + WLHP Heating Plant Branch AirLoop F7 S2, !- Inlet Branch 112 Name + WLHP Cooling Plant Branch AirLoop F8 SW, !- Inlet Branch 113 Name + WLHP Heating Plant Branch AirLoop F8 SW, !- Inlet Branch 114 Name + WLHP Cooling Plant Branch AirLoop F8 NW, !- Inlet Branch 115 Name + WLHP Heating Plant Branch AirLoop F8 NW, !- Inlet Branch 116 Name + WLHP Cooling Plant Branch AirLoop F8 SE, !- Inlet Branch 117 Name + WLHP Heating Plant Branch AirLoop F8 SE, !- Inlet Branch 118 Name + WLHP Cooling Plant Branch AirLoop F8 NE, !- Inlet Branch 119 Name + WLHP Heating Plant Branch AirLoop F8 NE, !- Inlet Branch 120 Name + WLHP Cooling Plant Branch AirLoop F8 N1, !- Inlet Branch 121 Name + WLHP Heating Plant Branch AirLoop F8 N1, !- Inlet Branch 122 Name + WLHP Cooling Plant Branch AirLoop F8 N2, !- Inlet Branch 123 Name + WLHP Heating Plant Branch AirLoop F8 N2, !- Inlet Branch 124 Name + WLHP Cooling Plant Branch AirLoop F8 S1, !- Inlet Branch 125 Name + WLHP Heating Plant Branch AirLoop F8 S1, !- Inlet Branch 126 Name + WLHP Cooling Plant Branch AirLoop F8 S2, !- Inlet Branch 127 Name + WLHP Heating Plant Branch AirLoop F8 S2, !- Inlet Branch 128 Name + WLHP Cooling Plant Branch AirLoop F9 SW, !- Inlet Branch 129 Name + WLHP Heating Plant Branch AirLoop F9 SW, !- Inlet Branch 130 Name + WLHP Cooling Plant Branch AirLoop F9 NW, !- Inlet Branch 131 Name + WLHP Heating Plant Branch AirLoop F9 NW, !- Inlet Branch 132 Name + WLHP Cooling Plant Branch AirLoop F9 SE, !- Inlet Branch 133 Name + WLHP Heating Plant Branch AirLoop F9 SE, !- Inlet Branch 134 Name + WLHP Cooling Plant Branch AirLoop F9 NE, !- Inlet Branch 135 Name + WLHP Heating Plant Branch AirLoop F9 NE, !- Inlet Branch 136 Name + WLHP Cooling Plant Branch AirLoop F9 N1, !- Inlet Branch 137 Name + WLHP Heating Plant Branch AirLoop F9 N1, !- Inlet Branch 138 Name + WLHP Cooling Plant Branch AirLoop F9 N2, !- Inlet Branch 139 Name + WLHP Heating Plant Branch AirLoop F9 N2, !- Inlet Branch 140 Name + WLHP Cooling Plant Branch AirLoop F9 S1, !- Inlet Branch 141 Name + WLHP Heating Plant Branch AirLoop F9 S1, !- Inlet Branch 142 Name + WLHP Cooling Plant Branch AirLoop F9 S2, !- Inlet Branch 143 Name + WLHP Heating Plant Branch AirLoop F9 S2, !- Inlet Branch 144 Name + WLHP Cooling Plant Branch AirLoop T SW, !- Inlet Branch 145 Name + WLHP Heating Plant Branch AirLoop T SW, !- Inlet Branch 146 Name + WLHP Cooling Plant Branch AirLoop T NW, !- Inlet Branch 147 Name + WLHP Heating Plant Branch AirLoop T NW, !- Inlet Branch 148 Name + WLHP Cooling Plant Branch AirLoop T SE, !- Inlet Branch 149 Name + WLHP Heating Plant Branch AirLoop T SE, !- Inlet Branch 150 Name + WLHP Cooling Plant Branch AirLoop T NE, !- Inlet Branch 151 Name + WLHP Heating Plant Branch AirLoop T NE, !- Inlet Branch 152 Name + WLHP Cooling Plant Branch AirLoop T N1, !- Inlet Branch 153 Name + WLHP Heating Plant Branch AirLoop T N1, !- Inlet Branch 154 Name + WLHP Cooling Plant Branch AirLoop T N2, !- Inlet Branch 155 Name + WLHP Heating Plant Branch AirLoop T N2, !- Inlet Branch 156 Name + WLHP Cooling Plant Branch AirLoop T S1, !- Inlet Branch 157 Name + WLHP Heating Plant Branch AirLoop T S1, !- Inlet Branch 158 Name + WLHP Cooling Plant Branch AirLoop T S2, !- Inlet Branch 159 Name + WLHP Heating Plant Branch AirLoop T S2, !- Inlet Branch 160 Name + Plant Demand Bypass Branch; !- Inlet Branch 161 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, + 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 + +NodeList, + G SW Apartment Inlets, !- Name + G SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G NW Apartment Inlets, !- Name + G NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + Office Inlets, !- Name + Office Supply Inlet; !- Node 1 Name + +NodeList, + G NE Apartment Inlets, !- Name + G NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G N1 Apartment Inlets, !- Name + G N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G N2 Apartment Inlets, !- Name + G N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G S1 Apartment Inlets, !- Name + G S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + G S2 Apartment Inlets, !- Name + G S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 SW Apartment Inlets, !- Name + F2 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 NW Apartment Inlets, !- Name + F2 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 SE Apartment Inlets, !- Name + F2 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 NE Apartment Inlets, !- Name + F2 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 N1 Apartment Inlets, !- Name + F2 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 N2 Apartment Inlets, !- Name + F2 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 S1 Apartment Inlets, !- Name + F2 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F2 S2 Apartment Inlets, !- Name + F2 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 SW Apartment Inlets, !- Name + F3 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 NW Apartment Inlets, !- Name + F3 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 SE Apartment Inlets, !- Name + F3 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 NE Apartment Inlets, !- Name + F3 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 N1 Apartment Inlets, !- Name + F3 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 N2 Apartment Inlets, !- Name + F3 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 S1 Apartment Inlets, !- Name + F3 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F3 S2 Apartment Inlets, !- Name + F3 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 SW Apartment Inlets, !- Name + F4 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 NW Apartment Inlets, !- Name + F4 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 SE Apartment Inlets, !- Name + F4 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 NE Apartment Inlets, !- Name + F4 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 N1 Apartment Inlets, !- Name + F4 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 N2 Apartment Inlets, !- Name + F4 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 S1 Apartment Inlets, !- Name + F4 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F4 S2 Apartment Inlets, !- Name + F4 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M SW Apartment Inlets, !- Name + M SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M NW Apartment Inlets, !- Name + M NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M SE Apartment Inlets, !- Name + M SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M NE Apartment Inlets, !- Name + M NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M N1 Apartment Inlets, !- Name + M N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M N2 Apartment Inlets, !- Name + M N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M S1 Apartment Inlets, !- Name + M S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + M S2 Apartment Inlets, !- Name + M S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 SW Apartment Inlets, !- Name + F6 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 NW Apartment Inlets, !- Name + F6 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 SE Apartment Inlets, !- Name + F6 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 NE Apartment Inlets, !- Name + F6 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 N1 Apartment Inlets, !- Name + F6 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 N2 Apartment Inlets, !- Name + F6 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 S1 Apartment Inlets, !- Name + F6 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F6 S2 Apartment Inlets, !- Name + F6 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 SW Apartment Inlets, !- Name + F7 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 NW Apartment Inlets, !- Name + F7 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 SE Apartment Inlets, !- Name + F7 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 NE Apartment Inlets, !- Name + F7 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 N1 Apartment Inlets, !- Name + F7 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 N2 Apartment Inlets, !- Name + F7 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 S1 Apartment Inlets, !- Name + F7 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F7 S2 Apartment Inlets, !- Name + F7 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 SW Apartment Inlets, !- Name + F8 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 NW Apartment Inlets, !- Name + F8 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 SE Apartment Inlets, !- Name + F8 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 NE Apartment Inlets, !- Name + F8 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 N1 Apartment Inlets, !- Name + F8 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 N2 Apartment Inlets, !- Name + F8 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 S1 Apartment Inlets, !- Name + F8 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F8 S2 Apartment Inlets, !- Name + F8 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 SW Apartment Inlets, !- Name + F9 SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 NW Apartment Inlets, !- Name + F9 NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 SE Apartment Inlets, !- Name + F9 SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 NE Apartment Inlets, !- Name + F9 NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 N1 Apartment Inlets, !- Name + F9 N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 N2 Apartment Inlets, !- Name + F9 N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 S1 Apartment Inlets, !- Name + F9 S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + F9 S2 Apartment Inlets, !- Name + F9 S2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T SW Apartment Inlets, !- Name + T SW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T NW Apartment Inlets, !- Name + T NW Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T SE Apartment Inlets, !- Name + T SE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T NE Apartment Inlets, !- Name + T NE Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T N1 Apartment Inlets, !- Name + T N1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T N2 Apartment Inlets, !- Name + T N2 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T S1 Apartment Inlets, !- Name + T S1 Apartment Supply Inlet; !- Node 1 Name + +NodeList, + T S2 Apartment Inlets, !- Name + T S2 Apartment Supply Inlet; !- Node 1 Name + +OutdoorAir:Node, + Central Chiller Condenser Inlet Node, !- Name + -1; !- Height Above Ground + +OutdoorAir:Node, + Common OSA Inlet Node, !- Name + -1; !- Height Above Ground + +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 + +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 + +Pump:ConstantSpeed, + SHWSys1 Pump, !- Name + SHWSys1 Supply Inlet Node, !- Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + autosize, !- Design Flow Rate + 29891, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.3, !- 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 + 179045.1073, !- Design Pump Head + autosize, !- Design Power Consumption + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + +Boiler:HotWater, + Central Boiler, !- Name + NaturalGas, !- Fuel Type + 258468.02, !- Nominal Capacity + 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 + 0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1, !- 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 + ConstantFlow; !- Boiler Flow Mode + +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 + autosize, !- High Fan Speed Fan Power + autocalculate, !- Low Fan Speed Air Flow Rate + , !- Low Fan Speed Air Flow Rate Sizing Factor + autocalculate, !- Low Fan Speed Fan Power + , !- Low Fan Speed Fan Power Sizing Factor + 0.002208, !- Design Spray Water Flow Rate + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + , !- Outdoor Air Inlet Node Name + , !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + , !- High Speed Standard Design Capacity + , !- Low Speed Standard Design Capacity + , !- Low Speed Standard Capacity Sizing Factor + autosize, !- High Fan Speed Ufactor Times Area Value + autocalculate, !- Low Fan Speed Ufactor Times Area Value + , !- Low Fan Speed UFactor Times Area Sizing Factor + autosize, !- Design Water Flow Rate + , !- High Speed User Specified Design Capacity + , !- Low Speed User Specified Design Capacity + , !- Low Speed User Specified Design Capacity Sizing Factor + , !- Design Entering Water Temperature + , !- Design Entering Air Temperature + , !- Design Entering Air Wetbulb Temperature + 1, !- High Speed Sizing Factor + SaturatedExit, !- Evaporation Loss Mode + , !- Evaporation Loss Factor + 0.008, !- Drift Loss Percent + ConcentrationRatio, !- Blowdown Calculation Mode + 3; !- Blowdown Concentration Ratio + +WaterHeater:Mixed, + SHWSys1 Water Heater, !- Name + 2.271247, !- Tank Volume + SHWSys1 Water Heater Setpoint Temperature Schedule, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 82.2222, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + 175842.64, !- Heater Maximum Capacity + , !- Heater Minimum Capacity + , !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + NATURALGAS, !- Heater Fuel Type + 0.802764686, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 8167.94, !- Off Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + 8167.94, !- On Cycle Parasitic Fuel Consumption Rate + 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 + , !- Off Cycle Loss Fraction to Zone + 15.60100708, !- On Cycle Loss Coefficient to Ambient Temperature + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate + , !- 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, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate + AUTOSIZE, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +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 + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + 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 + 10, !- Minimum Loop Temperature + autosize, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + autocalculate, !- Plant Loop Volume + 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 + +PlantEquipmentList, + SHWSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SHWSys1 Water Heater; !- Equipment 1 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 + +PlantEquipmentOperation:CoolingLoad, + WSHPPlant Cool Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + WSHPPlant Cooling Equipment; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + SHWSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + SHWSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + WSHPPlant Heat Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + WSHPPlant Heating Equipment; !- Range 1 Equipment List Name + +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, + 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 + +EnergyManagementSystem:Sensor, + Facility_Int_LTG, !- Name + , !- OutputVariable or OutputMeter Index Key Name + InteriorLights:Electricity; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + BoilerPLR, !- Name + Central Boiler, !- OutputVariable or OutputMeter Index Key Name + Boiler Part Load Ratio; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + OAT, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Drybulb Temperature; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + M_S1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name + M S1 APARTMENT, !- OutputVariable or OutputMeter Index Key Name + Zone Ventilation Standard Density Volume Flow Rate; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + M_N1_Apartment_Sliding_Door_Ventilation_Sensor, !- Name + M N1 APARTMENT, !- OutputVariable or OutputMeter Index Key Name + Zone Ventilation Standard Density Volume Flow Rate; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Actuator, + BoilerCurve, !- Name + Central Boiler Efficiency Curve, !- Actuated Component Unique Name + Curve, !- Actuated Component Type + Curve Result; !- Actuated Component Control Type + +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:Actuator, + S_Apartment_CLGSETP_Vent_CTRL, !- 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_Vent_CTRL, !- 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_Vent_CTRL, !- 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_Vent_CTRL, !- Name + N HTGSETP_APT_SCH, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:ProgramCallingManager, + Transformer_Load_Prog_Manager, !- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + Transformer_Load_Prog; !- Program Name 1 + +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:ProgramCallingManager, + OA_BASED_OPTIMUM_START_EMS_Program Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + OA_BASED_OPTIMUM_START_EMS_Program; !- Program Name 1 + +EnergyManagementSystem:ProgramCallingManager, + Vent_Thermostat_Reset, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Vent_Program_N_Apartments, !- Program Name 1 + Vent_Program_S_Apartments; !- Program Name 2 + +EnergyManagementSystem:Program, + Transformer_Load_Prog, !- Name + SET Wired_LTG = Facility_Int_LTG*0.0015; !- Program Line 1 + +EnergyManagementSystem:Program, + SetBoilerPar, !- Name + SET CapRated = 258468.02, !- Program Line 1 + SET EtRated = 0.8, !- Program Line 2 + SET CapRated = (CapRated *3.412)/1000, !- Program Line 3 + SET SkinLossRate = 0.02, !- Program Line 4 + SET BoilerType = 1, !- Program Line 5 + IF BoilerType == 1, !- Program Line 6 + IF CapRated >10000, !- Program Line 7 + SET PLRx = 0.2, !- Program Line 8 + ELSEIF CapRated >5000, !- Program Line 9 + SET PLRx = 0.25, !- Program Line 10 + ELSEIF CapRated >1000, !- Program Line 11 + SET PLRx = 0.33, !- Program Line 12 + ELSE, !- Program Line 13 + SET BoilerType = 2, !- Program Line 14 + SET PLRx = 0.2, !- Program Line 15 + ENDIF, !- Program Line 16 + ELSE, !- Program Line 17 + SET PLRx = 0.2, !- Program Line 18 + ENDIF, !- Program Line 19 + IF BoilerType == 1, !- Program Line 20 + SET CurveX = 0.975 + 0.305 * PLRx - 0.527 * (PLRx^2) + 0.249 * (PLRx^3), !- Program Line 21 + ELSE, !- Program Line 22 + SET CurveX = 0.907 + 0.320 * PLRx - 0.420 * (PLRx^2) + 0.193 * (PLRx^3), !- Program Line 23 + ENDIF, !- Program Line 24 + SET LoadX = CapRated * PLRx, !- Program Line 25 + SET Etx = CurveX * EtRated, !- Program Line 26 + SET InputEx = LoadX/Etx, !- Program Line 27 + SET SkinEx = CapRated * SkinLossRate, !- Program Line 28 + SET Ecx = (LoadX + SkinEx)/InputEx; !- Program Line 29 + +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), !- Program Line 3 + ELSE, !- Program Line 4 + SET BoilerCurve = 0.907 + 0.320*BoilerPLR - 0.420*(BoilerPLR^2) + 0.193*(BoilerPLR^3), !- Program Line 5 + ENDIF, !- Program Line 6 + ELSE, !- Program Line 7 + IF BoilerPLR == 0, !- Program Line 8 + SET BoilerCurve = NULL, !- Program Line 9 + ELSE, !- Program Line 10 + IF BoilerPLR <0.05, !- Program Line 11 + SET BoilerCurve = (0.05/(0.05 + SkinLossRate)) * (Ecx/EtRated), !- Program Line 12 + ELSE, !- Program Line 13 + SET BoilerCurve = (BoilerPLR/(BoilerPLR + SkinLossRate)) * (Ecx/EtRated), !- Program Line 14 + ENDIF, !- Program Line 15 + ENDIF, !- Program Line 16 + ENDIF; !- Program Line 17 + +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, !- Program Line 3 + ELSEIF DaylightSavings==1 && Hour==6 && DayOfWeek>1 && DayOfWeek<7 && OAT<23.9 && OAT>1.7, !- Program Line 4 + SET CLGSETP_OFF_SCH_Actuator = 29.4, !- Program Line 5 + SET HTGSETP_OFF_SCH_Actuator = 15.6, !- Program Line 6 + ELSE, !- Program Line 7 + SET CLGSETP_SCH_Actuator = NULL, !- Program Line 8 + SET HTGSETP_SCH_Actuator = NULL, !- Program Line 9 + ENDIF; !- Program Line 10 + +EnergyManagementSystem:Program, + Vent_Program_S_Apartments, !- Name + Set Vent_Setback_Flag = 1, !- Program Line 1 + IF (M_S1_Apartment_Sliding_Door_Ventilation_Sensor > 0) && (Vent_Setback_Flag == 1), !- Program Line 2 + SET S_Apartment_CLGSETP_Vent_CTRL = 32.22, !- Program Line 3 + SET S_Apartment_HTGSETP_Vent_CTRL = 12.78, !- Program Line 4 + ELSE, !- Program Line 5 + SET S_Apartment_CLGSETP_Vent_CTRL = null, !- Program Line 6 + SET S_Apartment_HTGSETP_Vent_CTRL = null, !- Program Line 7 + ENDIF; !- Program Line 8 + +EnergyManagementSystem:Program, + Vent_Program_N_Apartments, !- Name + Set Vent_Setback_Flag = 1, !- Program Line 1 + IF (M_N1_Apartment_Sliding_Door_Ventilation_Sensor > 0) && (Vent_Setback_Flag == 1), !- Program Line 2 + SET N_Apartment_CLGSETP_Vent_CTRL = 32.22, !- Program Line 3 + SET N_Apartment_HTGSETP_Vent_CTRL = 12.78, !- Program Line 4 + ELSE, !- Program Line 5 + SET N_Apartment_CLGSETP_Vent_CTRL = null, !- Program Line 6 + SET N_Apartment_HTGSETP_Vent_CTRL = null, !- Program Line 7 + ENDIF; !- Program Line 8 + +EnergyManagementSystem:GlobalVariable, + Wired_LTG; !- Erl Variable 1 Name + +EnergyManagementSystem:GlobalVariable, + BoilerType, !- Erl Variable 1 Name + CapRated, !- Erl Variable 2 Name + EtRated, !- Erl Variable 3 Name + PLRx, !- Erl Variable 4 Name + Ecx, !- Erl Variable 5 Name + SkinLossRate; !- Erl Variable 6 Name + +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 + +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 + +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 + +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: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 + +SetpointManager:MixedAir, + Split GSW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G SW Supply Fan Outlet, !- Fan Outlet Node Name + G SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GNW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G NW Supply Fan Outlet, !- Fan Outlet Node Name + G NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G NE Supply Fan Outlet, !- Fan Outlet Node Name + G NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G N1 Supply Fan Outlet, !- Fan Outlet Node Name + G N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G N2 Supply Fan Outlet, !- Fan Outlet Node Name + G N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G S1 Supply Fan Outlet, !- Fan Outlet Node Name + G S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split GS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + G S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop G S2 Supply Fan Outlet, !- Fan Outlet Node Name + G S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 SW Supply Fan Outlet, !- Fan Outlet Node Name + F2 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 NW Supply Fan Outlet, !- Fan Outlet Node Name + F2 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 SE Supply Fan Outlet, !- Fan Outlet Node Name + F2 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 NE Supply Fan Outlet, !- Fan Outlet Node Name + F2 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F2 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F2 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F2 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F2S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F2 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F2 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F2 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 SW Supply Fan Outlet, !- Fan Outlet Node Name + F3 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 NW Supply Fan Outlet, !- Fan Outlet Node Name + F3 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 SE Supply Fan Outlet, !- Fan Outlet Node Name + F3 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 NE Supply Fan Outlet, !- Fan Outlet Node Name + F3 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F3 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F3 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F3 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F3S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F3 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F3 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F3 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 SW Supply Fan Outlet, !- Fan Outlet Node Name + F4 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 NW Supply Fan Outlet, !- Fan Outlet Node Name + F4 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 SE Supply Fan Outlet, !- Fan Outlet Node Name + F4 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 NE Supply Fan Outlet, !- Fan Outlet Node Name + F4 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F4 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F4 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F4 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F4S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F4 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F4 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F4 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MSW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M SW Supply Fan Outlet, !- Fan Outlet Node Name + M SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MNW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M NW Supply Fan Outlet, !- Fan Outlet Node Name + M NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MSE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M SE Supply Fan Outlet, !- Fan Outlet Node Name + M SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M NE Supply Fan Outlet, !- Fan Outlet Node Name + M NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M N1 Supply Fan Outlet, !- Fan Outlet Node Name + M N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M N2 Supply Fan Outlet, !- Fan Outlet Node Name + M N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M S1 Supply Fan Outlet, !- Fan Outlet Node Name + M S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split MS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + M S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop M S2 Supply Fan Outlet, !- Fan Outlet Node Name + M S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 SW Supply Fan Outlet, !- Fan Outlet Node Name + F6 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 NW Supply Fan Outlet, !- Fan Outlet Node Name + F6 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 SE Supply Fan Outlet, !- Fan Outlet Node Name + F6 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 NE Supply Fan Outlet, !- Fan Outlet Node Name + F6 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F6 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F6 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F6 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F6S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F6 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F6 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F6 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 SW Supply Fan Outlet, !- Fan Outlet Node Name + F7 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 NW Supply Fan Outlet, !- Fan Outlet Node Name + F7 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 SE Supply Fan Outlet, !- Fan Outlet Node Name + F7 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 NE Supply Fan Outlet, !- Fan Outlet Node Name + F7 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F7 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F7 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F7 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F7S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F7 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F7 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F7 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 SW Supply Fan Outlet, !- Fan Outlet Node Name + F8 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 NW Supply Fan Outlet, !- Fan Outlet Node Name + F8 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 SE Supply Fan Outlet, !- Fan Outlet Node Name + F8 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 NE Supply Fan Outlet, !- Fan Outlet Node Name + F8 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F8 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F8 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F8 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F8S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F8 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F8 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F8 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9SW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 SW Supply Fan Outlet, !- Fan Outlet Node Name + F9 SW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9NW Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NW Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 NW Supply Fan Outlet, !- Fan Outlet Node Name + F9 NW Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9SE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 SE Supply Fan Outlet, !- Fan Outlet Node Name + F9 SE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9NE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 NE Supply Fan Outlet, !- Fan Outlet Node Name + F9 NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9N1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 N1 Supply Fan Outlet, !- Fan Outlet Node Name + F9 N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9N2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 N2 Supply Fan Outlet, !- Fan Outlet Node Name + F9 N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9S1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 S1 Supply Fan Outlet, !- Fan Outlet Node Name + F9 S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split F9S2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + F9 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop F9 S2 Supply Fan Outlet, !- Fan Outlet Node Name + F9 S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TNE Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T NE Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T NE Supply Fan Outlet, !- Fan Outlet Node Name + T NE Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TN1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T N1 Supply Fan Outlet, !- Fan Outlet Node Name + T N1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TN2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T N2 Supply Fan Outlet, !- Fan Outlet Node Name + T N2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TS1 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S1 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T S1 Supply Fan Outlet, !- Fan Outlet Node Name + T S1 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + Split TS2 Cooling Coil Air Temp Manager, !- Name + Temperature, !- Control Variable + T S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S2 Apartment Mixed Air Outlet, !- Fan Inlet Node Name + AirLoop T S2 Supply Fan Outlet, !- Fan Outlet Node Name + T S2 Apartment Mixed Air Outlet; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G SW Return Air Inlet, !- Return Air Stream Node Name + G SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G NW Return Air Inlet, !- Return Air Stream Node Name + G NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G NE Return Air Inlet, !- Return Air Stream Node Name + G NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G N1 Return Air Inlet, !- Return Air Stream Node Name + G N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G N2 Return Air Inlet, !- Return Air Stream Node Name + G N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G S1 Return Air Inlet, !- Return Air Stream Node Name + G S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop G S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + G S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + G S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + G S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop G S2 Return Air Inlet, !- Return Air Stream Node Name + G S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 SW Return Air Inlet, !- Return Air Stream Node Name + F2 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 NW Return Air Inlet, !- Return Air Stream Node Name + F2 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 SE Return Air Inlet, !- Return Air Stream Node Name + F2 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 NE Return Air Inlet, !- Return Air Stream Node Name + F2 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 N1 Return Air Inlet, !- Return Air Stream Node Name + F2 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 N2 Return Air Inlet, !- Return Air Stream Node Name + F2 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 S1 Return Air Inlet, !- Return Air Stream Node Name + F2 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F2 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F2 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F2 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F2 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F2 S2 Return Air Inlet, !- Return Air Stream Node Name + F2 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 SW Return Air Inlet, !- Return Air Stream Node Name + F3 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 NW Return Air Inlet, !- Return Air Stream Node Name + F3 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 SE Return Air Inlet, !- Return Air Stream Node Name + F3 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 NE Return Air Inlet, !- Return Air Stream Node Name + F3 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 N1 Return Air Inlet, !- Return Air Stream Node Name + F3 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 N2 Return Air Inlet, !- Return Air Stream Node Name + F3 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 S1 Return Air Inlet, !- Return Air Stream Node Name + F3 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F3 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F3 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F3 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F3 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F3 S2 Return Air Inlet, !- Return Air Stream Node Name + F3 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 SW Return Air Inlet, !- Return Air Stream Node Name + F4 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 NW Return Air Inlet, !- Return Air Stream Node Name + F4 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 SE Return Air Inlet, !- Return Air Stream Node Name + F4 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 NE Return Air Inlet, !- Return Air Stream Node Name + F4 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 N1 Return Air Inlet, !- Return Air Stream Node Name + F4 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 N2 Return Air Inlet, !- Return Air Stream Node Name + F4 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 S1 Return Air Inlet, !- Return Air Stream Node Name + F4 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F4 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F4 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F4 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F4 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F4 S2 Return Air Inlet, !- Return Air Stream Node Name + F4 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M SW Return Air Inlet, !- Return Air Stream Node Name + M SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M NW Return Air Inlet, !- Return Air Stream Node Name + M NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M SE Return Air Inlet, !- Return Air Stream Node Name + M SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M NE Return Air Inlet, !- Return Air Stream Node Name + M NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M N1 Return Air Inlet, !- Return Air Stream Node Name + M N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M N2 Return Air Inlet, !- Return Air Stream Node Name + M N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M S1 Return Air Inlet, !- Return Air Stream Node Name + M S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop M S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + M S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + M S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + M S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop M S2 Return Air Inlet, !- Return Air Stream Node Name + M S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 SW Return Air Inlet, !- Return Air Stream Node Name + F6 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 NW Return Air Inlet, !- Return Air Stream Node Name + F6 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 SE Return Air Inlet, !- Return Air Stream Node Name + F6 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 NE Return Air Inlet, !- Return Air Stream Node Name + F6 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 N1 Return Air Inlet, !- Return Air Stream Node Name + F6 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 N2 Return Air Inlet, !- Return Air Stream Node Name + F6 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 S1 Return Air Inlet, !- Return Air Stream Node Name + F6 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F6 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F6 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F6 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F6 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F6 S2 Return Air Inlet, !- Return Air Stream Node Name + F6 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 SW Return Air Inlet, !- Return Air Stream Node Name + F7 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 NW Return Air Inlet, !- Return Air Stream Node Name + F7 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 SE Return Air Inlet, !- Return Air Stream Node Name + F7 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 NE Return Air Inlet, !- Return Air Stream Node Name + F7 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 N1 Return Air Inlet, !- Return Air Stream Node Name + F7 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 N2 Return Air Inlet, !- Return Air Stream Node Name + F7 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 S1 Return Air Inlet, !- Return Air Stream Node Name + F7 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F7 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F7 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F7 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F7 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F7 S2 Return Air Inlet, !- Return Air Stream Node Name + F7 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 SW Return Air Inlet, !- Return Air Stream Node Name + F8 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 NW Return Air Inlet, !- Return Air Stream Node Name + F8 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 SE Return Air Inlet, !- Return Air Stream Node Name + F8 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 NE Return Air Inlet, !- Return Air Stream Node Name + F8 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 N1 Return Air Inlet, !- Return Air Stream Node Name + F8 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 N2 Return Air Inlet, !- Return Air Stream Node Name + F8 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 S1 Return Air Inlet, !- Return Air Stream Node Name + F8 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F8 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F8 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F8 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F8 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F8 S2 Return Air Inlet, !- Return Air Stream Node Name + F8 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 SW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 SW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 SW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 SW Return Air Inlet, !- Return Air Stream Node Name + F9 SW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 NW Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 NW Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NW Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 NW Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 NW Return Air Inlet, !- Return Air Stream Node Name + F9 NW Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 SE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 SE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 SE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 SE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 SE Return Air Inlet, !- Return Air Stream Node Name + F9 SE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 NE Return Air Inlet, !- Return Air Stream Node Name + F9 NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 N1 Return Air Inlet, !- Return Air Stream Node Name + F9 N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 N2 Return Air Inlet, !- Return Air Stream Node Name + F9 N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 S1 Return Air Inlet, !- Return Air Stream Node Name + F9 S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop F9 S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + F9 S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + F9 S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + F9 S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop F9 S2 Return Air Inlet, !- Return Air Stream Node Name + F9 S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T NE Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T NE Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T NE Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T NE Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T NE Return Air Inlet, !- Return Air Stream Node Name + T NE Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T N1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T N1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T N1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T N1 Return Air Inlet, !- Return Air Stream Node Name + T N1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T N2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T N2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T N2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T N2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T N2 Return Air Inlet, !- Return Air Stream Node Name + T N2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T S1 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T S1 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S1 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T S1 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T S1 Return Air Inlet, !- Return Air Stream Node Name + T S1 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:OutdoorAirPretreat, + AirLoop T S2 Heat Exhchanger Supply Air Temp Manager, !- Name + Temperature, !- Control Variable + -99, !- Minimum Setpoint Temperature + 99, !- Maximum Setpoint Temperature + 0.00001, !- Minimum Setpoint Humidity Ratio + 1.0, !- Maximum Setpoint Humidity Ratio + T S2 Apartment Mixed Air Outlet, !- Reference Setpoint Node Name + T S2 Apartment Mixed Air Outlet, !- Mixed Air Stream Node Name + T S2 Apartment Outside Air Inlet, !- Outdoor Air Stream Node Name + AirLoop T S2 Return Air Inlet, !- Return Air Stream Node Name + T S2 Apartment Heat Recovery Outlet Node; !- Setpoint Node or NodeList Name + +ElectricLoadCenter:Transformer, + Transformer 1, !- Name + Always_On, !- Availability Schedule Name + PowerInFromGrid, !- Transformer Usage + , !- Zone Name + , !- Radiative Fraction + 75000, !- Rated Capacity + 3, !- Phase + Aluminum, !- Conductor Material + 150, !- Full Load Temperature Rise + 0.1, !- Fraction of Eddy Current Losses + NominalEfficiency, !- Performance Input Method + , !- Rated No Load Loss + , !- Rated Load Loss + 0.986, !- Nameplate Efficiency + 0.35, !- Per Unit Load for Nameplate Efficiency + 75, !- Reference Temperature for Nameplate Efficiency + , !- 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 + +WaterUse:Equipment, + G SW Apartment sub cat, !- Name + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + sub cat, !- EndUse Subcategory + 3.659231e-06, !- Peak Flow Rate + 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 + +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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + 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 UFactor Times Area + T S2 Apartment sub cat; !- Water Use Equipment 1 Name + +Curve:Quadratic, + HPACCOOLPLFFPLR, !- Name + 0.75, !- Coefficient1 Constant + 0.25, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + Central Boiler Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 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 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Biquadratic, + ChillerCentEIRFT, !- Name + 0.9339, !- Coefficient1 Constant + -0.0582, !- Coefficient2 x + 0.0045, !- Coefficient3 x2 + 0.0024, !- Coefficient4 y + 0.0005, !- Coefficient5 y2 + -0.0012, !- Coefficient6 xy + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +Curve:Biquadratic, + ChillerCentCapFT, !- Name + 0.2579, !- Coefficient1 Constant + 0.0389, !- Coefficient2 x + -0.0002, !- Coefficient3 x2 + 0.0469, !- Coefficient4 y + -0.0009, !- Coefficient5 y2 + -0.0003, !- Coefficient6 xy + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +Output:VariableDictionary, + IDF; !- Key Field + +Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + +Output:Table:Monthly, + Monthly Indoor Temp, !- Name + 2, !- Digits After Decimal + Zone Mean Air Temperature, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + Components of Peak Electrical Demand, !- Name + 3, !- Digits After Decimal + Electricity:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity, !- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity, !- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + +Output:Table:Monthly, + Components of Peak Gas Demand, !- Name + 3, !- Digits After Decimal + Gas:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Gas:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + Gas:HVAC, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Gas, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + MiscPlugGas:InteriorEquipment:Gas, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Gas:Plant, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + WaterSystems:Gas, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + Water Heater:WaterSystems:Gas, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Heating:Gas, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 9 + +OutputControl:Table:Style, + Comma, !- Column Separator + None; !- Unit Conversion + +Output:Meter:MeterFileOnly, + Electricity:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + ElectricityNet:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + Gas:Facility, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + InteriorLights:Electricity, !- Key Name + Hourly; !- Reporting Frequency + +Output:Meter:MeterFileOnly, + InteriorEquipment:Electricity, !- Key Name + Hourly; !- Reporting Frequency + +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 \ No newline at end of file diff --git a/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0.idf b/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0.idf new file mode 100644 index 000000000..4e7e6dfb0 --- /dev/null +++ b/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0.idf @@ -0,0 +1,10128 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +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 + +Building, + Ref Bldg Large Office New2004_v1.3_5.0, !- Name + 0, !- North Axis + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.2, !- Temperature Convergence Tolerance Value + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +ShadowCalculation, + 7, !- Calculation Method + 15000; !- Calculation Frequency + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit + +ZoneAirHeatBalanceAlgorithm, + AnalyticalSolution; !- Algorithm + +Timestep, + 6; !- Number of Timesteps per Hour + +ConvergenceLimits, + 2, !- Minimum System Timestep + 25; !- Maximum HVAC Iterations + +Site:Location, + USA IL-CHICAGO-OHARE, !- Name + 41.77, !- Latitude + -87.75, !- Longitude + -6, !- Time Zone + 190; !- Elevation + +SizingPeriod:DesignDay, + CHICAGO Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20.6, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + , !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20.6, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 99063, !- Barometric Pressure + 4.9, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.2, !- Maximum DryBulb Temperature + 10.7, !- Daily DryBulb Temperature Range + , !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 25.5, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 99063, !- Barometric Pressure + 5.3, !- Wind Speed + 230, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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 + 1; !- Sky Clearness + +RunPeriod, + RUNPERIOD 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- Begin Year + 31, !- End Month + Sunday, !- End Day of Month + No, !- End Year + No, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + Yes, !- Apply Weekend Holiday Rule + 1.0000; !- Use Weather File Rain Indicators + +RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +Site:GroundTemperature:BuildingSurface, + 19.527, !- January Ground Temperature + 19.502, !- February Ground Temperature + 19.536, !- March Ground Temperature + 19.598, !- April Ground Temperature + 20.002, !- May Ground Temperature + 21.64, !- June Ground Temperature + 22.225, !- July Ground Temperature + 22.375, !- August Ground Temperature + 21.449, !- September Ground Temperature + 20.121, !- October Ground Temperature + 19.802, !- November Ground Temperature + 19.633; !- December Ground Temperature + +Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature + 28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +ScheduleTypeLimits, + Any Number; !- Name + +ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + Temperature, !- Name + -60.0, !- Lower Limit Value + 200.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + On/Off, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + Control Type, !- Name + 0.0, !- Lower Limit Value + 4.0, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + Humidity, !- Name + 10.0, !- Lower Limit Value + 90.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + Number; !- Name + +Schedule:Compact, + ALWAYS_ON, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 04:00, !- Field 3 + 0.05, !- Field 4 + Until: 05:00, !- Field 5 + 0.10, !- Field 6 + Until: 06:00, !- Field 7 + 0.20, !- Field 8 + Until: 07:00, !- Field 9 + 0.40, !- Field 10 + Until: 09:00, !- Field 11 + 0.50, !- Field 12 + Until: 10:00, !- Field 13 + 0.35, !- Field 14 + Until: 16:00, !- Field 15 + 0.15, !- Field 16 + Until: 17:00, !- Field 17 + 0.35, !- Field 18 + Until: 19:00, !- Field 19 + 0.50, !- Field 20 + Until: 21:00, !- Field 21 + 0.40, !- Field 22 + Until: 22:00, !- Field 23 + 0.30, !- Field 24 + Until: 23:00, !- Field 25 + 0.20, !- Field 26 + Until: 24:00, !- Field 27 + 0.10; !- Field 28 + +Schedule:Compact, + INFIL_QUARTER_ON_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 1.0, !- Field 4 + Until: 22:00, !- Field 5 + 0.25, !- Field 6 + Until: 24:00, !- Field 7 + 1.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00, !- Field 10 + 1.0, !- Field 11 + Until: 18:00, !- Field 12 + 0.25, !- Field 13 + Until: 24:00, !- Field 14 + 1.0, !- Field 15 + For: Sunday Holidays AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 1.0; !- Field 18 + +Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.05, !- Field 8 + For: Weekdays, !- Field 9 + Until: 06:00, !- Field 10 + 0.0, !- Field 11 + Until: 07:00, !- Field 12 + 0.1, !- Field 13 + Until: 08:00, !- Field 14 + 0.2, !- Field 15 + Until: 12:00, !- Field 16 + 0.95, !- Field 17 + Until: 13:00, !- Field 18 + 0.5, !- Field 19 + Until: 17:00, !- Field 20 + 0.95, !- Field 21 + Until: 18:00, !- Field 22 + 0.7, !- Field 23 + Until: 20:00, !- Field 24 + 0.4, !- Field 25 + Until: 22:00, !- Field 26 + 0.1, !- Field 27 + Until: 24:00, !- Field 28 + 0.05, !- Field 29 + For: Saturday, !- Field 30 + Until: 06:00, !- Field 31 + 0.0, !- Field 32 + Until: 08:00, !- Field 33 + 0.1, !- Field 34 + Until: 14:00, !- Field 35 + 0.5, !- Field 36 + Until: 17:00, !- Field 37 + 0.1, !- Field 38 + Until: 24:00, !- Field 39 + 0.0, !- Field 40 + For: AllOtherDays, !- Field 41 + Until: 24:00, !- Field 42 + 0.0; !- Field 43 + +Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 05:00, !- Field 3 + 0.05, !- Field 4 + Until: 07:00, !- Field 5 + 0.1, !- Field 6 + Until: 08:00, !- Field 7 + 0.3, !- Field 8 + Until: 17:00, !- Field 9 + 0.9, !- Field 10 + Until: 18:00, !- Field 11 + 0.7, !- Field 12 + Until: 20:00, !- Field 13 + 0.5, !- Field 14 + Until: 22:00, !- Field 15 + 0.3, !- Field 16 + Until: 23:00, !- Field 17 + 0.1, !- Field 18 + Until: 24:00, !- Field 19 + 0.05, !- Field 20 + For: Saturday, !- Field 21 + Until: 06:00, !- Field 22 + 0.05, !- Field 23 + Until: 08:00, !- Field 24 + 0.1, !- Field 25 + Until: 14:00, !- Field 26 + 0.5, !- Field 27 + Until: 17:00, !- Field 28 + 0.15, !- Field 29 + Until: 24:00, !- Field 30 + 0.05, !- Field 31 + For: SummerDesignDay, !- Field 32 + Until: 24:00, !- Field 33 + 1.0, !- Field 34 + For: WinterDesignDay, !- Field 35 + Until: 24:00, !- Field 36 + 0.0, !- Field 37 + For: AllOtherDays, !- Field 38 + Until: 24:00, !- Field 39 + 0.05; !- Field 40 + +Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00, !- Field 3 + 0.40, !- Field 4 + Until: 12:00, !- Field 5 + 0.90, !- Field 6 + Until: 13:00, !- Field 7 + 0.80, !- Field 8 + Until: 17:00, !- Field 9 + 0.90, !- Field 10 + Until: 18:00, !- Field 11 + 0.80, !- Field 12 + Until: 20:00, !- Field 13 + 0.60, !- Field 14 + Until: 22:00, !- Field 15 + 0.50, !- Field 16 + Until: 24:00, !- Field 17 + 0.40, !- Field 18 + For: Saturday, !- Field 19 + Until: 06:00, !- Field 20 + 0.30, !- Field 21 + Until: 08:00, !- Field 22 + 0.4, !- Field 23 + Until: 14:00, !- Field 24 + 0.5, !- Field 25 + Until: 17:00, !- Field 26 + 0.35, !- Field 27 + Until: 24:00, !- Field 28 + 0.30, !- Field 29 + For: SummerDesignDay, !- Field 30 + Until: 24:00, !- Field 31 + 1.0, !- Field 32 + For: WinterDesignDay, !- Field 33 + Until: 24:00, !- Field 34 + 0.0, !- Field 35 + For: AllOtherDays, !- Field 36 + Until: 24:00, !- Field 37 + 0.30; !- Field 38 + +Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 120; !- Field 4 + +Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.0; !- Field 4 + +Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0, !- Field 4 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00, !- Field 7 + 0.5, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, !- Field 11 + 1.0; !- Field 12 + +Schedule:Compact, + CLGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 26.7, !- Field 4 + Until: 22:00, !- Field 5 + 24.0, !- Field 6 + Until: 24:00, !- Field 7 + 26.7, !- Field 8 + For: Saturday, !- Field 9 + Until: 06:00, !- Field 10 + 26.7, !- Field 11 + Until: 18:00, !- Field 12 + 24.0, !- Field 13 + Until: 24:00, !- Field 14 + 26.7, !- Field 15 + For WinterDesignDay, !- Field 16 + Until: 24:00, !- Field 17 + 26.7, !- Field 18 + For: AllOtherDays, !- Field 19 + Until: 24:00, !- Field 20 + 26.7; !- Field 21 + +Schedule:Compact, + HTGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 06:00, !- Field 3 + 15.6, !- Field 4 + Until: 22:00, !- Field 5 + 21.0, !- Field 6 + Until: 24:00, !- Field 7 + 15.6, !- Field 8 + For SummerDesignDay, !- Field 9 + Until: 24:00, !- Field 10 + 15.6, !- Field 11 + For: Saturday, !- Field 12 + Until: 06:00, !- Field 13 + 15.6, !- Field 14 + Until: 18:00, !- Field 15 + 21.0, !- Field 16 + Until: 24:00, !- Field 17 + 15.6, !- Field 18 + For: WinterDesignDay, !- Field 19 + Until: 24:00, !- Field 20 + 21.0, !- Field 21 + For: AllOtherDays, !- Field 22 + Until: 24:00, !- Field 23 + 15.6; !- Field 24 + +Schedule:Compact, + Seasonal-Reset-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 12.8; !- Field 4 + +Schedule:Compact, + MinOA_MotorizedDamper_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 07:00, !- Field 10 + 0.0, !- Field 11 + Until: 18:00, !- Field 12 + 1.0, !- Field 13 + Until: 24:00, !- Field 14 + 0.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 0.0; !- Field 18 + +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, !- Field 3 + 4; !- Field 4 + +Schedule:Compact, + HVACOperationSchd, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00, !- Field 10 + 0.0, !- Field 11 + Until: 18:00, !- Field 12 + 1.0, !- Field 13 + Until: 24:00, !- Field 14 + 0.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 0.0; !- Field 18 + +Schedule:Compact, + CW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 6.7; !- Field 4 + +Schedule:Compact, + HW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 82.2; !- Field 4 + +Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 05:00, !- Field 3 + 0.05, !- Field 4 + Until: 06:00, !- Field 5 + 0.08, !- Field 6 + Until: 07:00, !- Field 7 + 0.07, !- Field 8 + Until: 08:00, !- Field 9 + 0.19, !- Field 10 + Until: 09:00, !- Field 11 + 0.35, !- Field 12 + Until: 10:00, !- Field 13 + 0.38, !- Field 14 + Until: 11:00, !- Field 15 + 0.39, !- Field 16 + Until: 12:00, !- Field 17 + 0.47, !- Field 18 + Until: 13:00, !- Field 19 + 0.57, !- Field 20 + Until: 14:00, !- Field 21 + 0.54, !- Field 22 + Until: 15:00, !- Field 23 + 0.34, !- Field 24 + Until: 16:00, !- Field 25 + 0.33, !- Field 26 + Until: 17:00, !- Field 27 + 0.44, !- Field 28 + Until: 18:00, !- Field 29 + 0.26, !- Field 30 + Until: 19:00, !- Field 31 + 0.21, !- Field 32 + Until: 20:00, !- Field 33 + 0.15, !- Field 34 + Until: 21:00, !- Field 35 + 0.17, !- Field 36 + Until: 22:00, !- Field 37 + 0.08, !- Field 38 + Until: 24:00, !- Field 39 + 0.05, !- Field 40 + For: Saturday WinterDesignDay, !- Field 41 + Until: 05:00, !- Field 42 + 0.05, !- Field 43 + Until: 06:00, !- Field 44 + 0.08, !- Field 45 + Until: 07:00, !- Field 46 + 0.07, !- Field 47 + Until: 08:00, !- Field 48 + 0.11, !- Field 49 + Until: 09:00, !- Field 50 + 0.15, !- Field 51 + Until: 10:00, !- Field 52 + 0.21, !- Field 53 + Until: 11:00, !- Field 54 + 0.19, !- Field 55 + Until: 12:00, !- Field 56 + 0.23, !- Field 57 + Until: 13:00, !- Field 58 + 0.20, !- Field 59 + Until: 14:00, !- Field 60 + 0.19, !- Field 61 + Until: 15:00, !- Field 62 + 0.15, !- Field 63 + Until: 16:00, !- Field 64 + 0.13, !- Field 65 + Until: 17:00, !- Field 66 + 0.14, !- Field 67 + Until: 21:00, !- Field 68 + 0.07, !- Field 69 + Until: 22:00, !- Field 70 + 0.09, !- Field 71 + Until: 24:00, !- Field 72 + 0.05, !- Field 73 + For: AllOtherDays, !- Field 74 + Until: 05:00, !- Field 75 + 0.04, !- Field 76 + Until: 06:00, !- Field 77 + 0.07, !- Field 78 + Until: 11:00, !- Field 79 + 0.04, !- Field 80 + Until: 13:00, !- Field 81 + 0.06, !- Field 82 + Until: 14:00, !- Field 83 + 0.09, !- Field 84 + Until: 15:00, !- Field 85 + 0.06, !- Field 86 + Until: 21:00, !- Field 87 + 0.04, !- Field 88 + Until: 22:00, !- Field 89 + 0.07, !- Field 90 + Until: 24:00, !- Field 91 + 0.04; !- Field 92 + +Schedule:Compact, + Water Equipment Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.05; !- Field 4 + +Schedule:Compact, + Water Equipment Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + Water Equipment Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 43.3; !- Field 4 + +Schedule:Compact, + Water Equipment Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 43.3; !- Field 4 + +Schedule:Compact, + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Schedule:Compact, + SWHSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Material, + Mass NonRes Wall Insulation, !- Name + MediumRough, !- Roughness + 0.0495494599433393, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + IEAD NonRes Roof Insulation, !- Name + MediumRough, !- Roughness + 0.127338688569477, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + UGWall NonRes Insulation, !- Name + MediumRough, !- Roughness + 0.0001, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Wood Siding, !- Name + MediumSmooth, !- Roughness + 0.01, !- Thickness + 0.11, !- Conductivity + 544.62, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + +Material, + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness + 0.16, !- Conductivity + 784.9, !- Density + 830, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +Material, + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness + 0.6918, !- Conductivity + 1858, !- Density + 837, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +Material, + 8IN CONCRETE HW, !- Name + Rough, !- Roughness + 0.2032, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Metal Siding, !- Name + Smooth, !- Roughness + 0.0015, !- Thickness + 44.96, !- Conductivity + 7688.86, !- Density + 410, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.2, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material, + HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness + 0.16, !- Conductivity + 1121.29, !- Density + 1460, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness + 45.006, !- Conductivity + 7680, !- Density + 418.4, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + +Material, + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness + 45.006, !- Conductivity + 7680, !- Density + 418.4, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + +Material, + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Std AC02, !- Name + MediumSmooth, !- Roughness + 0.0127, !- Thickness + 0.057, !- Conductivity + 288, !- Density + 1339, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material:NoMass, + MAT-AIR-WALL, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +WindowMaterial:SimpleGlazingSystem, + NonRes Fixed Assembly Window, !- Name + 3.23646, !- UFactor + 0.39; !- Solar Heat Gain Coefficient + +Construction, + Mass Non-res Ext Wall, !- Name + 1IN Stucco, !- Outside Layer + 8IN Concrete HW, !- Layer 2 + Mass NonRes Wall Insulation, !- Layer 3 + 1/2IN Gypsum; !- Layer 4 + +Construction, + IEAD Non-res Roof, !- Name + Roof Membrane, !- Outside Layer + IEAD NonRes Roof Insulation, !- Layer 2 + Metal Decking; !- Layer 3 + +Construction, + ext-slab, !- Name + HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + +Construction, + int-walls, !- Name + 1/2IN Gypsum, !- Outside Layer + 1/2IN Gypsum; !- Layer 2 + +Construction, + INT-FLOOR-TOPSIDE, !- Name + MAT-CC05 4 HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + +Construction, + INT-FLOOR-UNDERSIDE, !- Name + CP02 CARPET PAD, !- Outside Layer + MAT-CC05 4 HW CONCRETE; !- Layer 2 + +Construction, + Underground Wall Non-res, !- Name + 8IN Concrete HW, !- Outside Layer + UGWall NonRes Insulation; !- Layer 2 + +Construction, + Window Non-res Fixed, !- Name + NonRes Fixed Assembly Window; !- Outside Layer + +Construction, + DropCeiling, !- Name + Std AC02; !- Outside Layer + +Construction, + AIR-WALL, !- Name + MAT-AIR-WALL; !- Outside Layer + +Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + +GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +Zone, + Basement, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0.04, !- Y Origin + 0.2, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_bottom, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_mid, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_top, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + GroundFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +Zone, + MidFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + TopFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +BuildingSurface:Detailed, + Basement_Ceiling_1, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_2, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_3, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_4, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_5, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + -2.439, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + -2.439; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_East, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_North, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_South, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_West, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Building_Roof, !- Name + Roof, !- Surface Type + IEAD Non-res Roof, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 47.5584, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 47.5584, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Ceiling, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 3.9632, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 3.9632, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 23.7792, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 23.7792, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +InternalMass, + Basement Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Basement, !- Zone or ZoneList Name + 7126.212; !- Surface Area + +InternalMass, + Core_bottom Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_bottom, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Core_mid Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_mid, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Core_top Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_top, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_top_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_top_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_top_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_top_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +People, + Basement People, !- Name + Basement, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 37.16, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_bottom People, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_mid People, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_top People, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_1 People, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_2 People, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_3 People, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_4 People, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_1 People, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_2 People, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_3 People, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_4 People, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_1 People, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_2 People, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_3 People, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_4 People, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +Lights, + Basement_Lights, !- Name + Basement, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_bottom_Lights, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_mid_Lights, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_top_Lights, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_1_Lights, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_2_Lights, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_3_Lights, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_4_Lights, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_1_Lights, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_2_Lights, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_3_Lights, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_4_Lights, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_1_Lights, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_2_Lights, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_3_Lights, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_4_Lights, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +ElectricEquipment, + Basement_PlugMisc_Equip, !- Name + Basement, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_bottom_PlugMisc_Equip, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_mid_PlugMisc_Equip, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_top_PlugMisc_Equip, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_1_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_2_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_3_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_4_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_1_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_2_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_3_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_4_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_1_PlugMisc_Equip, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_2_PlugMisc_Equip, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_3_PlugMisc_Equip, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_4_PlugMisc_Equip, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ZoneInfiltration:DesignFlowRate, + GroundFloor_Plenum_Infiltration, !- Name + GroundFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + MidFloor_Plenum_Infiltration, !- Name + MidFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_1_Infiltration, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_2_Infiltration, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_3_Infiltration, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_4_Infiltration, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_1_Infiltration, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_2_Infiltration, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_3_Infiltration, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_4_Infiltration, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_1_Infiltration, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_2_Infiltration, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_3_Infiltration, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_4_Infiltration, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + TopFloor_Plenum_Infiltration, !- Name + TopFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +Exterior:Lights, + Exterior Facade Lighting, !- Name + ALWAYS_ON, !- Schedule Name + 51262, !- Design Level + AstronomicalClock, !- Control Option + Exterior Facade Lighting; !- EndUse Subcategory + +Exterior:FuelEquipment, + Elevators, !- Name + Electricity, !- Fuel Use Type + BLDG_ELEVATORS, !- Schedule Name + 244443.956043956, !- Design Level + Elevators; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ DSOA Basement, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_bottom, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_mid, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_top, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +Sizing:Parameters, + 1.33, !- Heating Sizing Factor + 1.33, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + +Sizing:Zone, + Basement, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Basement, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_bottom, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_bottom, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_mid, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_mid, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_top, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_top, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:System, + VAV_1, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_2, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_3, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_5, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:Plant, + CoolSys1, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 6.67, !- Design Loop Exit Temperature + 6.67; !- Loop Design Temperature Difference + +Sizing:Plant, + HeatSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82.2, !- Design Loop Exit Temperature + 11.1; !- Loop Design Temperature Difference + +Sizing:Plant, + TowerWaterSys, !- Plant or Condenser Loop Name + CONDENSER, !- Loop Type + 29.4, !- Design Loop Exit Temperature + 5.6; !- Loop Design Temperature Difference + +Sizing:Plant, + SWHSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature + 5; !- Loop Design Temperature Difference + +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, + Core_bottom Thermostat, !- Name + Core_bottom, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_bottom DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Core_mid Thermostat, !- Name + Core_mid, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_mid DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Core_top Thermostat, !- Name + Core_top, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_top DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_1 Thermostat, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_2 Thermostat, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_3 Thermostat, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_4 Thermostat, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_4 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_1 Thermostat, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_2 Thermostat, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_3 Thermostat, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_4 Thermostat, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_4 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_1 Thermostat, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_2 Thermostat, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_3 Thermostat, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_4 Thermostat, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_4 DualSPSched; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + Basement DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_bottom DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_mid DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_top DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +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 Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- 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 + 0.0, !- Minimum Hot Water or Steam Flow Rate + Basement VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_bottom VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_bottom VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_bottom VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_mid VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_mid VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_mid VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_mid VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_top VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_top VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_top VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_top VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +ZoneHVAC:AirDistributionUnit, + Basement VAV Box, !- Name + Basement VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Basement VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_bottom VAV Box, !- Name + Core_bottom VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_bottom VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_mid VAV Box, !- Name + Core_mid VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_mid VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_top VAV Box, !- Name + Core_top VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_top VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_1 VAV Box, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_2 VAV Box, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_3 VAV Box, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_4 VAV Box, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_4 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_1 VAV Box, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_2 VAV Box, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_3 VAV Box, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_4 VAV Box, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_4 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_1 VAV Box, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_2 VAV Box, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_3 VAV Box, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_4 VAV Box, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_4 VAV Box Component; !- Air Terminal Name + +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 Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_bottom, !- Zone Name + Core_bottom Equipment, !- Zone Conditioning Equipment List Name + Core_bottom Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_bottom Air Node, !- Zone Air Node Name + Core_bottom Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_mid, !- Zone Name + Core_mid Equipment, !- Zone Conditioning Equipment List Name + Core_mid Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_mid Air Node, !- Zone Air Node Name + Core_mid Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_top, !- Zone Name + Core_top Equipment, !- Zone Conditioning Equipment List Name + Core_top Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_top Air Node, !- Zone Air Node Name + Core_top Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_1, !- Zone Name + Perimeter_bot_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_2, !- Zone Name + Perimeter_bot_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_3, !- Zone Name + Perimeter_bot_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_4, !- Zone Name + Perimeter_bot_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_1, !- Zone Name + Perimeter_mid_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_2, !- Zone Name + Perimeter_mid_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_3, !- Zone Name + Perimeter_mid_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_4, !- Zone Name + Perimeter_mid_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_1, !- Zone Name + Perimeter_top_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_2, !- Zone Name + Perimeter_top_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_3, !- Zone Name + Perimeter_top_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_4, !- Zone Name + Perimeter_top_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +Fan:VariableVolume, + VAV_1_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6045, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.93, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.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 + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_2_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6175, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.95, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.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 + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_3_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6045, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.93, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.0, !- Fan Power Coefficient 5 + VAV_3_HeatC-VAV_3_FanNode, !- Air Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_5_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.5915, !- Fan Total Efficiency + 1109.648, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.91, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.0, !- Fan Power Coefficient 5 + VAV_5_HeatC-VAV_5_FanNode, !- Air Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- EndUse Subcategory + +Coil:Cooling:Water, + VAV_3_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + VAV_3_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_3_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Air Inlet Node Name + VAV_3_CoolC-VAV_3_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 + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + 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_1_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + 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_5_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + VAV_5_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_5_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Air Inlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +Coil:Heating:Water, + Basement VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_bottom VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_bottom VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_bottom VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_bottom VAV Box Damper Node, !- Air Inlet Node Name + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_mid VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_mid VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_mid VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_mid VAV Box Damper Node, !- Air Inlet Node Name + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_top VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_top VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_top VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_top VAV Box Damper Node, !- Air Inlet Node Name + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_3_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + VAV_3_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_3_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- Air Inlet Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_5_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + VAV_5_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_5_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode, !- Air Inlet Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_3_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_3_CoolC-VAV_3_HeatCNode, !- Sensor Node Name + VAV_3_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_3_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_3_HeatC-VAV_3_FanNode, !- Sensor Node Name + VAV_3_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_5_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_5_CoolC-VAV_5_HeatCNode, !- Sensor Node Name + VAV_5_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_5_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_5_HeatC-VAV_5_FanNode, !- Sensor Node Name + VAV_5_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +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 + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +Controller:OutdoorAir, + VAV_3_OA_Controller, !- Name + VAV_3_OARelief Node, !- Relief Air Outlet Node Name + VAV_3 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Mixed Air Node Name + VAV_3_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +Controller:OutdoorAir, + VAV_5_OA_Controller, !- Name + VAV_5_OARelief Node, !- Relief Air Outlet Node Name + VAV_5 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Mixed Air Node Name + VAV_5_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +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_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_3_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_3_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_3_HeatC_Controller; !- Controller 2 Name + +AirLoopHVAC:ControllerList, + VAV_3_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_3_OA_Controller; !- Controller 1 Name + +AirLoopHVAC:ControllerList, + VAV_5_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_5_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_5_HeatC_Controller; !- Controller 2 Name + +AirLoopHVAC:ControllerList, + VAV_5_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_5_OA_Controller; !- Controller 1 Name + +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 + 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_2, !- Name + VAV_2_Controllers, !- Controller List Name + VAV_2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + 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_3, !- Name + VAV_3_Controllers, !- Controller List Name + VAV_3 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + VAV_3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +AirLoopHVAC, + VAV_5, !- Name + VAV_5_Controllers, !- Controller List Name + VAV_5 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + VAV_5 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_5 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_5 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_5 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_1_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_1_OAMixing Box; !- Component 1 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_3_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_3_OAMixing Box; !- Component 1 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_5_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_5_OAMixing Box; !- Component 1 Name + +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_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_3_OA, !- Name + VAV_3_OA_Controllers, !- Controller List Name + VAV_3_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_3 Availability Manager List; !- Availability Manager List Name + +AirLoopHVAC:OutdoorAirSystem, + VAV_5_OA, !- Name + VAV_5_OA_Controllers, !- Controller List Name + VAV_5_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_5 Availability Manager List; !- Availability Manager List Name + +OutdoorAir:Mixer, + VAV_1_OAMixing Box, !- Name + VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name + VAV_1_OAInlet Node, !- 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_2_OAMixing Box, !- Name + VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name + VAV_2_OAInlet Node, !- 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_3_OAMixing Box, !- Name + VAV_3_OA-VAV_3_CoolCNode, !- Mixed Air Node Name + VAV_3_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_3_OARelief Node, !- Relief Air Stream Node Name + VAV_3 Supply Equipment Inlet Node; !- Return Air Stream Node Name + +OutdoorAir:Mixer, + VAV_5_OAMixing Box, !- Name + VAV_5_OA-VAV_5_CoolCNode, !- Mixed Air Node Name + VAV_5_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_5_OARelief Node, !- Relief Air Stream Node Name + VAV_5 Supply Equipment Inlet Node; !- Return Air Stream Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_1 Supply Air Splitter, !- Name + VAV_1 Zone Equipment Inlet Node, !- Inlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_2 Supply Air Splitter, !- Name + VAV_2 Zone Equipment Inlet Node, !- Inlet Node Name + Core_mid VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_3 Supply Air Splitter, !- Name + VAV_3 Zone Equipment Inlet Node, !- Inlet Node Name + Core_top VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_5 Supply Air Splitter, !- Name + VAV_5 Zone Equipment Inlet Node, !- Inlet Node Name + Basement VAV Box Inlet Node Name; !- Outlet 1 Node Name + +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_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_3, !- Name + VAV_3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + VAV_3 Supply Air Splitter; !- Component 1 Name + +AirLoopHVAC:SupplyPath, + VAV_5, !- Name + VAV_5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + VAV_5 Supply Air Splitter; !- Component 1 Name + +AirLoopHVAC:ZoneMixer, + VAV_1 Return Air Mixer, !- Name + VAV_1 Zone Equipment Outlet Node, !- Outlet Node Name + GROUNDFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_2 Return Air Mixer, !- Name + VAV_2 Zone Equipment Outlet Node, !- Outlet Node Name + MIDFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_3 Return Air Mixer, !- Name + VAV_3 Zone Equipment Outlet Node, !- Outlet Node Name + TOPFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_5 Return Air Mixer, !- Name + VAV_5 Zone Equipment Outlet Node, !- Outlet Node Name + Basement Return Air Node Name; !- Inlet 1 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_2 Return Plenum, !- Name + MidFloor_Plenum, !- Zone Name + MIDFLOOR_PLENUMPlenumNode, !- Zone Node Name + MIDFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_mid Return Air Node Name, !- Inlet 1 Node Name + Perimeter_mid_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_mid_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_mid_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_1 Return Plenum, !- Name + GroundFloor_Plenum, !- Zone Name + GROUNDFLOOR_PLENUMPlenumNode, !- Zone Node Name + GROUNDFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_bottom Return Air Node Name, !- Inlet 1 Node Name + Perimeter_bot_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_bot_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_bot_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_3 Return Plenum, !- Name + TopFloor_Plenum, !- Zone Name + TOPFLOOR_PLENUMPlenumNode, !- Zone Node Name + TOPFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_top Return Air Node Name, !- Inlet 1 Node Name + Perimeter_top_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_top_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_top_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPath, + VAV_1 Return Air Path, !- Name + VAV_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_1 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_1 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_2 Return Air Path, !- Name + VAV_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_2 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_2 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_3 Return Air Path, !- Name + VAV_3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_3 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_3 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_5 Return Air Path, !- Name + VAV_5 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_5 Return Air Mixer; !- Component 1 Name + +Branch, + VAV_1 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_1_OA, !- Component 1 Inlet Node Name + VAV_1 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_1_CoolC, !- Component 2 Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode, !- Component 3 Object Type + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_1_HeatC, !- Component 4 Object Type + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 4 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_1_Fan, !- Component 5 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 5 Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_2 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_2_OA, !- Component 1 Inlet Node Name + VAV_2 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_2_CoolC, !- Component 2 Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode, !- Component 3 Object Type + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_2_HeatC, !- Component 4 Object Type + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 4 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_2_Fan, !- Component 5 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 5 Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_3 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_3_OA, !- Component 1 Inlet Node Name + VAV_3 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_3_CoolC, !- Component 2 Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Component 3 Object Type + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_3_HeatC, !- Component 4 Object Type + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 4 Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_3_Fan, !- Component 5 Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 5 Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_5 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_5_OA, !- Component 1 Inlet Node Name + VAV_5 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_5_CoolC, !- Component 2 Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Component 3 Object Type + VAV_5_CoolC-VAV_5_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_5_HeatC, !- Component 4 Object Type + VAV_5_CoolC-VAV_5_HeatCNode, !- Component 4 Name + VAV_5_HeatC-VAV_5_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_5_Fan, !- Component 5 Name + VAV_5_HeatC-VAV_5_FanNode, !- Component 5 Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + CoolSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + CoolSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Demand Inlet Pipe-CoolSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_5_CoolC, !- Component 1 Inlet Node Name + VAV_5_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_5_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_1_CoolC, !- Component 1 Inlet Node Name + VAV_1_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_1_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_2_CoolC, !- Component 1 Inlet Node Name + VAV_2_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_2_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_3_CoolC, !- Component 1 Inlet Node Name + VAV_3_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_3_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + CoolSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 1, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNode 1, !- Component 1 Outlet Node Name + CoolSys1 Supply Equipment Outlet Node 1, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 2, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNode 2, !- Component 1 Outlet Node Name + CoolSys1 Supply Equipment Outlet Node 2, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + CoolSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + CoolSys1 Pump, !- Component 1 Inlet Node Name + CoolSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + CoolSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + HeatSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Basement VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Basement VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Basement VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 10, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 11, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 12, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 13, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 14, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 15, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 16, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 17, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_5_HeatC, !- Component 1 Inlet Node Name + VAV_5_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_5_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 18, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_1_HeatC, !- Component 1 Inlet Node Name + VAV_1_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_1_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 19, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_2_HeatC, !- Component 1 Inlet Node Name + VAV_2_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_2_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_bottom VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_bottom VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_bottom VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 20, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_3_HeatC, !- Component 1 Inlet Node Name + VAV_3_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_3_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_mid VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_mid VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_mid VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_top VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_top VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_top VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 9, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + HeatSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Boiler:HotWater, !- Component 1 Name + HeatSys1 Boiler, !- Component 1 Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Component 1 Outlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + HeatSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + HeatSys1 Pump, !- Component 1 Inlet Node Name + HeatSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + HeatSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Bypass Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + TowerWaterSys Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Inlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 1, !- Component 1 Inlet Node Name + CoolSys1 Chiller Water Inlet Node 1, !- Component 1 Outlet Node Name + CoolSys1 Chiller Water Outlet Node 1, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 2, !- Component 1 Inlet Node Name + CoolSys1 Chiller Water Inlet Node 2, !- Component 1 Outlet Node Name + CoolSys1 Chiller Water Outlet Node 2, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Component 1 Outlet Node Name + TowerWaterSys Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + CoolingTower:SingleSpeed, !- Component 1 Name + TowerWaterSys CoolTower, !- Component 1 Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNode, !- Component 1 Outlet Node Name + TowerWaterSys Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + TowerWaterSys Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:ConstantSpeed, !- Component 1 Name + TowerWaterSys Pump, !- Component 1 Inlet Node Name + TowerWaterSys Supply Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Supply Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Component 1 Outlet Node Name + TowerWaterSys Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + SWHSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_bottom Water Equipment, !- Component 1 Inlet Node Name + Core_bottom Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_bottom Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_mid Water Equipment, !- Component 1 Inlet Node Name + Core_mid Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_mid Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_top Water Equipment, !- Component 1 Inlet Node Name + Core_top Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_top Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + SWHSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterHeater:Mixed, !- Component 1 Name + SWHSys1 Water Heater, !- Component 1 Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Component 1 Outlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + SWHSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + SWHSys1 Pump, !- Component 1 Inlet Node Name + SWHSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + SWHSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +BranchList, + VAV_1 Air Loop Branches, !- Name + VAV_1 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_3 Air Loop Branches, !- Name + VAV_3 Air Loop Main Branch; !- Branch 1 Name + +BranchList, + VAV_5 Air Loop Branches, !- Name + VAV_5 Air Loop Main Branch; !- Branch 1 Name + +BranchList, + CoolSys1 Demand 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 Bypass Branch, !- Branch 6 Name + CoolSys1 Demand Outlet Branch; !- Branch 7 Name + +BranchList, + CoolSys1 Supply 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, + 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 Bypass Branch, !- Branch 22 Name + HeatSys1 Demand Outlet Branch; !- Branch 23 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, + 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 Bypass Branch, !- Branch 4 Name + TowerWaterSys Demand Outlet Branch; !- Branch 5 Name + +BranchList, + TowerWaterSys Supply Branches, !- Name + TowerWaterSys Supply Inlet Branch, !- Branch 1 Name + TowerWaterSys Supply Equipment Branch, !- Branch 2 Name + TowerWaterSys Supply Equipment Bypass Branch, !- Branch 3 Name + TowerWaterSys Supply Outlet Branch; !- Branch 4 Name + +BranchList, + SWHSys1 Demand Branches, !- Name + SWHSys1 Demand Inlet Branch, !- Branch 1 Name + SWHSys1 Demand Load Branch 1, !- Branch 2 Name + SWHSys1 Demand Load Branch 2, !- Branch 3 Name + SWHSys1 Demand Load Branch 3, !- Branch 4 Name + SWHSys1 Demand Bypass Branch, !- Branch 5 Name + SWHSys1 Demand Outlet Branch; !- Branch 6 Name + +BranchList, + SWHSys1 Supply Branches, !- Name + SWHSys1 Supply Inlet Branch, !- Branch 1 Name + SWHSys1 Supply Equipment Branch, !- Branch 2 Name + SWHSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SWHSys1 Supply Outlet Branch; !- Branch 4 Name + +Connector:Splitter, + CoolSys1 Demand 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 Bypass Branch; !- Outlet Branch 5 Name + +Connector:Splitter, + CoolSys1 Supply 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, + 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 Bypass Branch; !- Outlet Branch 21 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, + 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 Bypass Branch; !- Outlet Branch 3 Name + +Connector:Splitter, + TowerWaterSys Supply Splitter, !- Name + TowerWaterSys Supply Inlet Branch, !- Inlet Branch Name + TowerWaterSys Supply Equipment Branch, !- Outlet Branch 1 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + +Connector:Splitter, + SWHSys1 Demand Splitter, !- Name + SWHSys1 Demand Inlet Branch, !- Inlet Branch Name + SWHSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Outlet Branch 4 Name + +Connector:Splitter, + SWHSys1 Supply Splitter, !- Name + SWHSys1 Supply Inlet Branch, !- Inlet Branch Name + SWHSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + +Connector:Mixer, + CoolSys1 Demand 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 Bypass Branch; !- Inlet Branch 5 Name + +Connector:Mixer, + CoolSys1 Supply 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, + 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 Bypass Branch; !- Inlet Branch 21 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, + 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 Bypass Branch; !- Inlet Branch 3 Name + +Connector:Mixer, + TowerWaterSys Supply Mixer, !- Name + TowerWaterSys Supply Outlet Branch, !- Outlet Branch Name + TowerWaterSys Supply Equipment Branch, !- Inlet Branch 1 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + +Connector:Mixer, + SWHSys1 Demand Mixer, !- Name + SWHSys1 Demand Outlet Branch, !- Outlet Branch Name + SWHSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Inlet Branch 4 Name + +Connector:Mixer, + SWHSys1 Supply Mixer, !- Name + SWHSys1 Supply Outlet Branch, !- Outlet Branch Name + SWHSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + +ConnectorList, + CoolSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Demand Mixer; !- Connector 2 Name + +ConnectorList, + CoolSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 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, + 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, + 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, + 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, + SWHSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Demand Mixer; !- Connector 2 Name + +ConnectorList, + SWHSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Supply Mixer; !- Connector 2 Name + +NodeList, + Basement Inlet Nodes, !- Name + Basement VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_bottom Inlet Nodes, !- Name + Core_bottom VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_mid Inlet Nodes, !- Name + Core_mid VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_top Inlet Nodes, !- Name + Core_top VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_1 Inlet Nodes, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_2 Inlet Nodes, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_3 Inlet Nodes, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_4 Inlet Nodes, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_1 Inlet Nodes, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_2 Inlet Nodes, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_3 Inlet Nodes, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_4 Inlet Nodes, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_1 Inlet Nodes, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_2 Inlet Nodes, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_3 Inlet Nodes, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_4 Inlet Nodes, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + VAV_1_OANode List, !- Name + VAV_1_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_2_OANode List, !- Name + VAV_2_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_3_OANode List, !- Name + VAV_3_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_5_OANode List, !- Name + VAV_5_OAInlet Node; !- Node 1 Name + +OutdoorAir:Node, + TowerWaterSys CoolTower OA ref Node; !- Name + +OutdoorAir:NodeList, + VAV_1_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_2_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_3_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_5_OANode List; !- Node or NodeList Name 1 + +Pipe:Adiabatic, + CoolSys1 Demand Bypass Pipe, !- Name + CoolSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + CoolSys1 Demand Inlet Pipe, !- Name + CoolSys1 Demand Inlet Node, !- Inlet Node Name + CoolSys1 Demand Inlet Pipe-CoolSys1 Demand Mixer; !- 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, + 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, + 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 Inlet Pipe, !- Name + HeatSys1 Demand Inlet Node, !- Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- 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, + 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, + 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 Inlet Pipe, !- Name + TowerWaterSys Demand Inlet Node, !- Inlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- 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, + 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, + SWHSys1 Demand Bypass Pipe, !- Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Demand Inlet Pipe, !- Name + SWHSys1 Demand Inlet Node, !- Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Demand Outlet Pipe, !- Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Inlet Node Name + SWHSys1 Demand Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Supply Equipment Bypass Pipe, !- Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Supply Outlet Pipe, !- Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Inlet Node Name + SWHSys1 Supply Outlet Node; !- Outlet Node Name + +Pump:VariableSpeed, + CoolSys1 Pump, !- Name + CoolSys1 Supply Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + 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 + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.875, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + Intermittent; !- Pump Control Type + +Pump:VariableSpeed, + SWHSys1 Pump, !- Name + SWHSys1 Supply Inlet Node, !- Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.85, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + Intermittent; !- Pump Control Type + +Pump:ConstantSpeed, + TowerWaterSys Pump, !- Name + TowerWaterSys Supply Inlet Node, !- Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.87, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + +Boiler:HotWater, + HeatSys1 Boiler, !- Name + NATURALGAS, !- Fuel Type + AUTOSIZE, !- Nominal Capacity + 0.78, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + , !- Normalized Boiler Efficiency Curve Name + 82.2, !- Design Water Flow Rate + AUTOSIZE, !- Minimum Part Load Ratio + 0, !- Maximum Part Load Ratio + 1.2, !- Optimum Part Load Ratio + 1, !- Boiler Water Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Boiler Water Outlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Water Outlet Upper Temperature Limit + 95, !- Boiler Flow Mode + VariableFlow, !- Parasitic Electric Load + 0, !- Sizing Factor + 1; !- EndUse Subcategory + +Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller 1, !- Name + AUTOSIZE, !- Reference Capacity + 5.5, !- Reference COP + 6.67, !- Reference Leaving Chilled Water Temperature + 35, !- Reference Leaving Condenser Water Temperature + AutoSize, !- Reference Chilled Water Flow Rate + AutoSize, !- Reference Condenser Water Flow Rate + WC Screw Default 90.1-2004 Cap_fT, !- Cooling Capacity Function of Temperature Curve Name + WC Screw Default 90.1-2004 EIR_fT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type + 0.1, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 0.2, !- Optimum Part Load Ratio + CoolSys1 Pump-CoolSys1 ChillerNode 1, !- Minimum Unloading Ratio + CoolSys1 Supply Equipment Outlet Node 1, !- Chilled Water Inlet Node Name + CoolSys1 Chiller Water Inlet Node 1, !- Chilled Water Outlet Node Name + CoolSys1 Chiller Water Outlet Node 1, !- Condenser Inlet Node Name + 1, !- Condenser Outlet Node Name + 2, !- Fraction of Compressor Electric Consumption Rejected by Condenser + VariableFlow, !- Leaving Chilled Water Lower Temperature Limit + , !- Chiller Flow Mode Type + , !- Design Heat Recovery Water Flow Rate + , !- Heat Recovery Inlet Node Name + 0.4; !- Heat Recovery Outlet Node Name + +Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller 2, !- Name + AUTOSIZE, !- Reference Capacity + 5.5, !- Reference COP + 6.67, !- Reference Leaving Chilled Water Temperature + 35, !- Reference Leaving Condenser Water Temperature + AutoSize, !- Reference Chilled Water Flow Rate + AutoSize, !- Reference Condenser Water Flow Rate + WC Screw Default 90.1-2004 Cap_fT, !- Cooling Capacity Function of Temperature Curve Name + WC Screw Default 90.1-2004 EIR_fT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type + 0.1, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 0.2, !- Optimum Part Load Ratio + CoolSys1 Pump-CoolSys1 ChillerNode 2, !- Minimum Unloading Ratio + CoolSys1 Supply Equipment Outlet Node 2, !- Chilled Water Inlet Node Name + CoolSys1 Chiller Water Inlet Node 2, !- Chilled Water Outlet Node Name + CoolSys1 Chiller Water Outlet Node 2, !- Condenser Inlet Node Name + 1, !- Condenser Outlet Node Name + 2, !- Fraction of Compressor Electric Consumption Rejected by Condenser + VariableFlow, !- Leaving Chilled Water Lower Temperature Limit + , !- Chiller Flow Mode Type + , !- Design Heat Recovery Water Flow Rate + , !- Heat Recovery Inlet Node Name + 0.4; !- Heat Recovery Outlet Node Name + +CoolingTower:SingleSpeed, + TowerWaterSys CoolTower, !- Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNode, !- Water Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node, !- Water Outlet Node Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Fan Power + AUTOSIZE, !- Design UFactor Times Area Value + AUTOSIZE, !- Free Convection Regime Air Flow Rate + AUTOSIZE, !- Free Convection Regime Air Flow Rate Sizing Factor + UFactorTimesAreaAndDesignWaterFlowRate, !- Free Convection Regime UFactor Times Area Value + , !- Free Convection UFactor Times Area Value Sizing Factor + , !- Performance Input Method + , !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + , !- Nominal Capacity + , !- Free Convection Capacity + SaturatedExit, !- Free Convection Nominal Capacity Sizing Factor + , !- Design Inlet Air DryBulb Temperature + 0.008, !- Design Inlet Air WetBulb Temperature + ConcentrationRatio, !- Design Approach Temperature + 3, !- Design Range Temperature + , !- Basin Heater Capacity + , !- Basin Heater Setpoint Temperature + TowerWaterSys CoolTower OA ref Node, !- Basin Heater Operating Schedule Name + FanCycling, !- Evaporation Loss Mode + , !- Evaporation Loss Factor + , !- Drift Loss Percent + , !- Blowdown Calculation Mode + , !- Blowdown Concentration Ratio + 1; !- Blowdown Makeup Water Usage Schedule Name + +WaterHeater:Mixed, + SWHSys1 Water Heater, !- Name + 0.7571, !- Tank Volume + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 82.2222, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + 845000, !- Heater Maximum Capacity + , !- Heater Minimum Capacity + , !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + NATURALGAS, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 20, !- Off Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + SCHEDULE, !- Ambient Temperature Indicator + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Ambient Temperature Schedule Name + , !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6, !- Off Cycle Loss Coefficient to Ambient Temperature + , !- Off Cycle Loss Fraction to Zone + 6, !- On Cycle Loss Coefficient to Ambient Temperature + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Use Side Inlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate + AUTOSIZE, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +PlantLoop, + CoolSys1, !- 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 + 1.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + CoolSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + CoolSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + CoolSys1 Supply Branches, !- Plant Side Branch List Name + CoolSys1 Supply 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 Branches, !- Demand Side Branch List Name + CoolSys1 Demand Connectors, !- Demand Side Connector List Name + Uniform; !- 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 + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + 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, + SWHSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + SWHSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SWHSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + SWHSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SWHSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SWHSys1 Supply Branches, !- Plant Side Branch List Name + SWHSys1 Supply Connectors, !- Plant Side Connector List Name + SWHSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SWHSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SWHSys1 Demand Branches, !- Demand Side Branch List Name + SWHSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +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 + 5.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Condenser Loop Volume + 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 + Sequential; !- Load Distribution Scheme + +PlantEquipmentList, + CoolSys1 Equipment List, !- Name + Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type + CoolSys1 Chiller 1, !- Equipment 1 Name + Chiller:Electric:ReformulatedEIR, !- Equipment 2 Object Type + CoolSys1 Chiller 2; !- Equipment 2 Name + +PlantEquipmentList, + HeatSys1 Equipment List, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + HeatSys1 Boiler; !- Equipment 1 Name + +PlantEquipmentList, + SWHSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SWHSys1 Water Heater; !- Equipment 1 Name + +CondenserEquipmentList, + TowerWaterSys Equipment List, !- Name + CoolingTower:SingleSpeed, !- Equipment 1 Object Type + TowerWaterSys CoolTower; !- Equipment 1 Name + +PlantEquipmentOperation:CoolingLoad, + CoolSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 100000000000000, !- Load Range 1 Upper Limit + CoolSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:CoolingLoad, + TowerWaterSys Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000, !- Load Range 1 Upper Limit + TowerWaterSys Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + HeatSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + HeatSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + SWHSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + SWHSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperationSchemes, + CoolSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + CoolSys1 Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- 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 + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +PlantEquipmentOperationSchemes, + SWHSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SWHSys1 Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +CondenserEquipmentOperationSchemes, + TowerWaterSys Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + TowerWaterSys Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +AvailabilityManager:NightCycle, + VAV_1 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_2 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_3 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_5 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManagerAssignmentList, + VAV_1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_1 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_3 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_3 Availability Manager; !- Availability Manager 1 Name + +AvailabilityManagerAssignmentList, + VAV_5 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_5 Availability Manager; !- Availability Manager 1 Name + +SetpointManager:Scheduled, + VAV_1 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_2 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_3 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_5 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +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 + +SetpointManager:Scheduled, + CoolSys1 Chiller 1 Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Equipment Outlet Node 1; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + CoolSys1 Chiller 2 Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Equipment Outlet Node 2; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + CoolSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + HeatSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW-Loop-Temp-Schedule, !- Schedule Name + HeatSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + SWHSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SWHSys1-Loop-Temp-Schedule, !- Schedule Name + SWHSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +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_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_3_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_3_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_HeatC-VAV_3_FanNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_3_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_HeatC-VAV_5_FanNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode; !- Setpoint Node or NodeList Name + +SetpointManager:FollowOutdoorAirTemperature, + TowerWaterSys, !- Name + Temperature, !- Control Variable + OutdoorAirWetBulb, !- Reference Temperature Type + 0, !- Offset Temperature Difference + 80, !- Maximum Setpoint Temperature + 5, !- Minimum Setpoint Temperature + TowerWaterSys Supply Outlet Node; !- Setpoint Node or NodeList Name + +WaterUse:Equipment, + Core_bottom Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_bottom, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + Core_mid Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_mid, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + Core_top Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_top, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Connections, + Core_bottom Water Equipment, !- Name + Core_bottom Water Equipment Water Inlet Node, !- Inlet Node Name + Core_bottom Water Equipment 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 UFactor Times Area + Core_bottom Water Equipment; !- Water Use Equipment 1 Name + +WaterUse:Connections, + Core_mid Water Equipment, !- Name + Core_mid Water Equipment Water Inlet Node, !- Inlet Node Name + Core_mid Water Equipment 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 UFactor Times Area + Core_mid Water Equipment; !- Water Use Equipment 1 Name + +WaterUse:Connections, + Core_top Water Equipment, !- Name + Core_top Water Equipment Water Inlet Node, !- Inlet Node Name + Core_top Water Equipment 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 UFactor Times Area + Core_top Water Equipment; !- Water Use Equipment 1 Name + +Curve:Bicubic, + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Name + -0.2737954, !- Coefficient1 Constant + 0.02822257, !- Coefficient2 x + -8.097657e-05, !- Coefficient3 x2 + 0.9612284, !- Coefficient4 y + 0.3029741, !- Coefficient5 y2 + -0.02421933, !- Coefficient6 xy + 0, !- Coefficient7 x3 + -0.03885224, !- Coefficient8 y3 + 0, !- Coefficient9 x2y + 0, !- Coefficient10 xy2 + 18.54, !- Minimum Value of x + 31.63, !- Maximum Value of x + 0.2, !- Minimum Value of y + 1.02; !- Maximum Value of y + +Curve:Biquadratic, + WC Screw Default 90.1-2004 Cap_fT, !- Name + 0.906115, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x2 + -0.0009709, !- Coefficient4 y + -9.05e-05, !- Coefficient5 y2 + 0.0002527, !- Coefficient6 xy + 0, !- Minimum Value of x + 20, !- Maximum Value of x + 0, !- Minimum Value of y + 50; !- Maximum Value of y + +Curve:Biquadratic, + WC Screw Default 90.1-2004 EIR_fT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + -0.0009519, !- Coefficient3 x2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y2 + -0.0007059, !- Coefficient6 xy + 0, !- Minimum Value of x + 20, !- Maximum Value of x + 0, !- Minimum Value of y + 50; !- Maximum Value of y + +UtilityCost:Tariff, + PSI_LLF_LowLoadFactorService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + HalfHour, !- Demand Window Length + 15.00, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + +UtilityCost:Tariff, + PSI_CS_CommercialElectricService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 9.40, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + +UtilityCost:Tariff, + IN_EIAMonthlyRateGas, !- Name + Gas:Facility, !- Output Meter Name + MCF, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 0.0, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Gas; !- Group Name + +UtilityCost:Qualify, + MinDemand75kw, !- Utility Cost Qualify Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + TotalDemand, !- Variable Name + Minimum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 12.0; !- Number of Months + +UtilityCost:Qualify, + MaxDemand75kw, !- Utility Cost Qualify Name + PSI_CS_CommercialElectricService, !- Tariff Name + TotalDemand, !- Variable Name + Maximum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 1.0; !- Number of Months + +UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000370; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000031; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000216; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000833; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000021; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000034; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000203; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000807; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MonthlyRateGasCharge, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + IN_MonthlyGasRates; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofEightPercent, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.108222, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.087021, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.078420, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.058320; !- Block 4 Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualDemandBaseCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + TotalDemand, !- Block Size Multiplier Value or Variable Name + 190, !- Block Size 1 Value or Variable Name + 0.0, !- Block 1 Cost per Unit Value or Variable Name + 110, !- Block Size 2 Value or Variable Name + 0.051773, !- Block 2 Cost per Unit Value or Variable Name + remaining, !- Block Size 3 Value or Variable Name + 0.046965; !- Block 3 Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.082409, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.072873, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.061696, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.041179; !- Block 4 Cost per Unit Value or Variable Name + +UtilityCost:Variable, + IN_MonthlyGasRates, !- Name + IN_EIAMonthlyRateGas, !- Tariff Name + Currency, !- Variable Type + 8.22, !- January Value + 7.51, !- February Value + 8.97, !- March Value + 9.01, !- April Value + 9.16, !- May Value + 10.44, !- June Value + 10.32, !- July Value + 10.13, !- August Value + 9.2, !- September Value + 8.18, !- October Value + 7.83, !- November Value + 7.63; !- December Value + +Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + +OutputControl:Table:Style, + Comma, !- Column Separator + None; !- Unit Conversion + +OutputControl:ReportingTolerances, + 0.556, !- Tolerance for Time Heating Setpoint Not Met + 0.556; !- Tolerance for Time Cooling Setpoint Not Met + +Output:Variable, + *, !- Key Value + Air System Total Heating Energy, !- Variable Name + hourly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Air System Total Cooling Energy, !- Variable Name + hourly; !- Reporting Frequency + +Output:Meter, + Electricity:Facility, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorLights:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + ExteriorLights:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorEquipment:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + ExteriorEquipment:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Fans:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Pumps:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + HeatRejection:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Humidifier:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Refrigeration:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Gas:Facility, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorEquipment:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + HeatRejection:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:DistrictHeating, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:DistrictCooling, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +EnvironmentalImpactFactors, + 0.663, !- District Heating Efficiency + 4.18, !- District Cooling COP + 0.585, !- Steam Conversion Efficiency + 80.7272, !- Total Carbon Equivalent Emission Factor From N2O + 6.2727, !- Total Carbon Equivalent Emission Factor From CH4 + 0.2727; !- Total Carbon Equivalent Emission Factor From CO2 + +FuelFactors, + Electricity, !- Existing Fuel Resource Name + kg, !- Units of Measure + , !- Energy per Unit Factor + 3.546, !- Source Energy Factor + , !- Source Energy Schedule Name + 341.7, !- CO2 Emission Factor + , !- CO2 Emission Factor Schedule Name + 0.1186, !- CO Emission Factor + , !- CO Emission Factor Schedule Name + 0.7472, !- CH4 Emission Factor + , !- CH4 Emission Factor Schedule Name + 0.6222, !- NOx Emission Factor + , !- NOx Emission Factor Schedule Name + 0.008028, !- N2O Emission Factor + , !- N2O Emission Factor Schedule Name + 1.872, !- SO2 Emission Factor + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor + , !- PM Emission Factor Schedule Name + 0.01739, !- PM10 Emission Factor + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM25 Emission Factor + , !- PM25 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor + , !- NH3 Emission Factor Schedule Name + 0.01019, !- NMVOC Emission Factor + , !- NMVOC Emission Factor Schedule Name + 5.639e-06, !- Hg Emission Factor + , !- Hg Emission Factor Schedule Name + 2.778e-05, !- Pb Emission Factor + , !- Pb Emission Factor Schedule Name + 0.4309556, !- Water Emission Factor + , !- Water Emission Factor Schedule Name + 0.0, !- Nuclear High Level Emission Factor + , !- Nuclear High Level Emission Factor Schedule Name + 0.0; !- Nuclear Low Level Emission Factor + +FuelFactors, + NaturalGas, !- Existing Fuel Resource Name + m3, !- Units of Measure + 37631000.0, !- Energy per Unit Factor + 1.092, !- Source Energy Factor + , !- Source Energy Schedule Name + 52.1, !- CO2 Emission Factor + , !- CO2 Emission Factor Schedule Name + 0.0399, !- CO Emission Factor + , !- CO Emission Factor Schedule Name + 0.00106, !- CH4 Emission Factor + , !- CH4 Emission Factor Schedule Name + 0.0473, !- NOx Emission Factor + , !- NOx Emission Factor Schedule Name + 0.00106, !- N2O Emission Factor + , !- N2O Emission Factor Schedule Name + 0.000268, !- SO2 Emission Factor + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor + , !- PM Emission Factor Schedule Name + 0.00359, !- PM10 Emission Factor + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM25 Emission Factor + , !- PM25 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor + , !- NH3 Emission Factor Schedule Name + 0.00261, !- NMVOC Emission Factor + , !- NMVOC Emission Factor Schedule Name + 1.11e-07, !- Hg Emission Factor + , !- Hg Emission Factor Schedule Name + 2.13e-07, !- Pb Emission Factor + , !- Pb Emission Factor Schedule Name + 0.0, !- Water Emission Factor + , !- Water Emission Factor Schedule Name + 0.0, !- Nuclear High Level Emission Factor + , !- Nuclear High Level Emission Factor Schedule Name + 0.0; !- Nuclear Low Level Emission Factor \ No newline at end of file diff --git a/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0V9-2-0.idf b/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0V9-2-0.idf new file mode 100644 index 000000000..4e7e6dfb0 --- /dev/null +++ b/tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHAREV9-2-0V9-2-0.idf @@ -0,0 +1,10128 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +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 + +Building, + Ref Bldg Large Office New2004_v1.3_5.0, !- Name + 0, !- North Axis + City, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.2, !- Temperature Convergence Tolerance Value + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +ShadowCalculation, + 7, !- Calculation Method + 15000; !- Calculation Frequency + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit + +ZoneAirHeatBalanceAlgorithm, + AnalyticalSolution; !- Algorithm + +Timestep, + 6; !- Number of Timesteps per Hour + +ConvergenceLimits, + 2, !- Minimum System Timestep + 25; !- Maximum HVAC Iterations + +Site:Location, + USA IL-CHICAGO-OHARE, !- Name + 41.77, !- Latitude + -87.75, !- Longitude + -6, !- Time Zone + 190; !- Elevation + +SizingPeriod:DesignDay, + CHICAGO Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20.6, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + , !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20.6, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 99063, !- Barometric Pressure + 4.9, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.2, !- Maximum DryBulb Temperature + 10.7, !- Daily DryBulb Temperature Range + , !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 25.5, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 99063, !- Barometric Pressure + 5.3, !- Wind Speed + 230, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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 + 1; !- Sky Clearness + +RunPeriod, + RUNPERIOD 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- Begin Year + 31, !- End Month + Sunday, !- End Day of Month + No, !- End Year + No, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + Yes, !- Apply Weekend Holiday Rule + 1.0000; !- Use Weather File Rain Indicators + +RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November, !- Start Date + 1.0, !- Duration + Holiday; !- Special Day Type + +RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +Site:GroundTemperature:BuildingSurface, + 19.527, !- January Ground Temperature + 19.502, !- February Ground Temperature + 19.536, !- March Ground Temperature + 19.598, !- April Ground Temperature + 20.002, !- May Ground Temperature + 21.64, !- June Ground Temperature + 22.225, !- July Ground Temperature + 22.375, !- August Ground Temperature + 21.449, !- September Ground Temperature + 20.121, !- October Ground Temperature + 19.802, !- November Ground Temperature + 19.633; !- December Ground Temperature + +Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature + 28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +ScheduleTypeLimits, + Any Number; !- Name + +ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + Temperature, !- Name + -60.0, !- Lower Limit Value + 200.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + On/Off, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + Control Type, !- Name + 0.0, !- Lower Limit Value + 4.0, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + Humidity, !- Name + 10.0, !- Lower Limit Value + 90.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + +ScheduleTypeLimits, + Number; !- Name + +Schedule:Compact, + ALWAYS_ON, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 04:00, !- Field 3 + 0.05, !- Field 4 + Until: 05:00, !- Field 5 + 0.10, !- Field 6 + Until: 06:00, !- Field 7 + 0.20, !- Field 8 + Until: 07:00, !- Field 9 + 0.40, !- Field 10 + Until: 09:00, !- Field 11 + 0.50, !- Field 12 + Until: 10:00, !- Field 13 + 0.35, !- Field 14 + Until: 16:00, !- Field 15 + 0.15, !- Field 16 + Until: 17:00, !- Field 17 + 0.35, !- Field 18 + Until: 19:00, !- Field 19 + 0.50, !- Field 20 + Until: 21:00, !- Field 21 + 0.40, !- Field 22 + Until: 22:00, !- Field 23 + 0.30, !- Field 24 + Until: 23:00, !- Field 25 + 0.20, !- Field 26 + Until: 24:00, !- Field 27 + 0.10; !- Field 28 + +Schedule:Compact, + INFIL_QUARTER_ON_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 1.0, !- Field 4 + Until: 22:00, !- Field 5 + 0.25, !- Field 6 + Until: 24:00, !- Field 7 + 1.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00, !- Field 10 + 1.0, !- Field 11 + Until: 18:00, !- Field 12 + 0.25, !- Field 13 + Until: 24:00, !- Field 14 + 1.0, !- Field 15 + For: Sunday Holidays AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 1.0; !- Field 18 + +Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.05, !- Field 8 + For: Weekdays, !- Field 9 + Until: 06:00, !- Field 10 + 0.0, !- Field 11 + Until: 07:00, !- Field 12 + 0.1, !- Field 13 + Until: 08:00, !- Field 14 + 0.2, !- Field 15 + Until: 12:00, !- Field 16 + 0.95, !- Field 17 + Until: 13:00, !- Field 18 + 0.5, !- Field 19 + Until: 17:00, !- Field 20 + 0.95, !- Field 21 + Until: 18:00, !- Field 22 + 0.7, !- Field 23 + Until: 20:00, !- Field 24 + 0.4, !- Field 25 + Until: 22:00, !- Field 26 + 0.1, !- Field 27 + Until: 24:00, !- Field 28 + 0.05, !- Field 29 + For: Saturday, !- Field 30 + Until: 06:00, !- Field 31 + 0.0, !- Field 32 + Until: 08:00, !- Field 33 + 0.1, !- Field 34 + Until: 14:00, !- Field 35 + 0.5, !- Field 36 + Until: 17:00, !- Field 37 + 0.1, !- Field 38 + Until: 24:00, !- Field 39 + 0.0, !- Field 40 + For: AllOtherDays, !- Field 41 + Until: 24:00, !- Field 42 + 0.0; !- Field 43 + +Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 05:00, !- Field 3 + 0.05, !- Field 4 + Until: 07:00, !- Field 5 + 0.1, !- Field 6 + Until: 08:00, !- Field 7 + 0.3, !- Field 8 + Until: 17:00, !- Field 9 + 0.9, !- Field 10 + Until: 18:00, !- Field 11 + 0.7, !- Field 12 + Until: 20:00, !- Field 13 + 0.5, !- Field 14 + Until: 22:00, !- Field 15 + 0.3, !- Field 16 + Until: 23:00, !- Field 17 + 0.1, !- Field 18 + Until: 24:00, !- Field 19 + 0.05, !- Field 20 + For: Saturday, !- Field 21 + Until: 06:00, !- Field 22 + 0.05, !- Field 23 + Until: 08:00, !- Field 24 + 0.1, !- Field 25 + Until: 14:00, !- Field 26 + 0.5, !- Field 27 + Until: 17:00, !- Field 28 + 0.15, !- Field 29 + Until: 24:00, !- Field 30 + 0.05, !- Field 31 + For: SummerDesignDay, !- Field 32 + Until: 24:00, !- Field 33 + 1.0, !- Field 34 + For: WinterDesignDay, !- Field 35 + Until: 24:00, !- Field 36 + 0.0, !- Field 37 + For: AllOtherDays, !- Field 38 + Until: 24:00, !- Field 39 + 0.05; !- Field 40 + +Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00, !- Field 3 + 0.40, !- Field 4 + Until: 12:00, !- Field 5 + 0.90, !- Field 6 + Until: 13:00, !- Field 7 + 0.80, !- Field 8 + Until: 17:00, !- Field 9 + 0.90, !- Field 10 + Until: 18:00, !- Field 11 + 0.80, !- Field 12 + Until: 20:00, !- Field 13 + 0.60, !- Field 14 + Until: 22:00, !- Field 15 + 0.50, !- Field 16 + Until: 24:00, !- Field 17 + 0.40, !- Field 18 + For: Saturday, !- Field 19 + Until: 06:00, !- Field 20 + 0.30, !- Field 21 + Until: 08:00, !- Field 22 + 0.4, !- Field 23 + Until: 14:00, !- Field 24 + 0.5, !- Field 25 + Until: 17:00, !- Field 26 + 0.35, !- Field 27 + Until: 24:00, !- Field 28 + 0.30, !- Field 29 + For: SummerDesignDay, !- Field 30 + Until: 24:00, !- Field 31 + 1.0, !- Field 32 + For: WinterDesignDay, !- Field 33 + Until: 24:00, !- Field 34 + 0.0, !- Field 35 + For: AllOtherDays, !- Field 36 + Until: 24:00, !- Field 37 + 0.30; !- Field 38 + +Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 120; !- Field 4 + +Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.0; !- Field 4 + +Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1.0, !- Field 4 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00, !- Field 7 + 0.5, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, !- Field 11 + 1.0; !- Field 12 + +Schedule:Compact, + CLGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 26.7, !- Field 4 + Until: 22:00, !- Field 5 + 24.0, !- Field 6 + Until: 24:00, !- Field 7 + 26.7, !- Field 8 + For: Saturday, !- Field 9 + Until: 06:00, !- Field 10 + 26.7, !- Field 11 + Until: 18:00, !- Field 12 + 24.0, !- Field 13 + Until: 24:00, !- Field 14 + 26.7, !- Field 15 + For WinterDesignDay, !- Field 16 + Until: 24:00, !- Field 17 + 26.7, !- Field 18 + For: AllOtherDays, !- Field 19 + Until: 24:00, !- Field 20 + 26.7; !- Field 21 + +Schedule:Compact, + HTGSETP_SCH, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 06:00, !- Field 3 + 15.6, !- Field 4 + Until: 22:00, !- Field 5 + 21.0, !- Field 6 + Until: 24:00, !- Field 7 + 15.6, !- Field 8 + For SummerDesignDay, !- Field 9 + Until: 24:00, !- Field 10 + 15.6, !- Field 11 + For: Saturday, !- Field 12 + Until: 06:00, !- Field 13 + 15.6, !- Field 14 + Until: 18:00, !- Field 15 + 21.0, !- Field 16 + Until: 24:00, !- Field 17 + 15.6, !- Field 18 + For: WinterDesignDay, !- Field 19 + Until: 24:00, !- Field 20 + 21.0, !- Field 21 + For: AllOtherDays, !- Field 22 + Until: 24:00, !- Field 23 + 15.6; !- Field 24 + +Schedule:Compact, + Seasonal-Reset-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 12.8; !- Field 4 + +Schedule:Compact, + MinOA_MotorizedDamper_Sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 07:00, !- Field 10 + 0.0, !- Field 11 + Until: 18:00, !- Field 12 + 1.0, !- Field 13 + Until: 24:00, !- Field 14 + 0.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 0.0; !- Field 18 + +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, !- Field 3 + 4; !- Field 4 + +Schedule:Compact, + HVACOperationSchd, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 06:00, !- Field 3 + 0.0, !- Field 4 + Until: 22:00, !- Field 5 + 1.0, !- Field 6 + Until: 24:00, !- Field 7 + 0.0, !- Field 8 + For: Saturday WinterDesignDay, !- Field 9 + Until: 06:00, !- Field 10 + 0.0, !- Field 11 + Until: 18:00, !- Field 12 + 1.0, !- Field 13 + Until: 24:00, !- Field 14 + 0.0, !- Field 15 + For: AllOtherDays, !- Field 16 + Until: 24:00, !- Field 17 + 0.0; !- Field 18 + +Schedule:Compact, + CW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 6.7; !- Field 4 + +Schedule:Compact, + HW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 82.2; !- Field 4 + +Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 05:00, !- Field 3 + 0.05, !- Field 4 + Until: 06:00, !- Field 5 + 0.08, !- Field 6 + Until: 07:00, !- Field 7 + 0.07, !- Field 8 + Until: 08:00, !- Field 9 + 0.19, !- Field 10 + Until: 09:00, !- Field 11 + 0.35, !- Field 12 + Until: 10:00, !- Field 13 + 0.38, !- Field 14 + Until: 11:00, !- Field 15 + 0.39, !- Field 16 + Until: 12:00, !- Field 17 + 0.47, !- Field 18 + Until: 13:00, !- Field 19 + 0.57, !- Field 20 + Until: 14:00, !- Field 21 + 0.54, !- Field 22 + Until: 15:00, !- Field 23 + 0.34, !- Field 24 + Until: 16:00, !- Field 25 + 0.33, !- Field 26 + Until: 17:00, !- Field 27 + 0.44, !- Field 28 + Until: 18:00, !- Field 29 + 0.26, !- Field 30 + Until: 19:00, !- Field 31 + 0.21, !- Field 32 + Until: 20:00, !- Field 33 + 0.15, !- Field 34 + Until: 21:00, !- Field 35 + 0.17, !- Field 36 + Until: 22:00, !- Field 37 + 0.08, !- Field 38 + Until: 24:00, !- Field 39 + 0.05, !- Field 40 + For: Saturday WinterDesignDay, !- Field 41 + Until: 05:00, !- Field 42 + 0.05, !- Field 43 + Until: 06:00, !- Field 44 + 0.08, !- Field 45 + Until: 07:00, !- Field 46 + 0.07, !- Field 47 + Until: 08:00, !- Field 48 + 0.11, !- Field 49 + Until: 09:00, !- Field 50 + 0.15, !- Field 51 + Until: 10:00, !- Field 52 + 0.21, !- Field 53 + Until: 11:00, !- Field 54 + 0.19, !- Field 55 + Until: 12:00, !- Field 56 + 0.23, !- Field 57 + Until: 13:00, !- Field 58 + 0.20, !- Field 59 + Until: 14:00, !- Field 60 + 0.19, !- Field 61 + Until: 15:00, !- Field 62 + 0.15, !- Field 63 + Until: 16:00, !- Field 64 + 0.13, !- Field 65 + Until: 17:00, !- Field 66 + 0.14, !- Field 67 + Until: 21:00, !- Field 68 + 0.07, !- Field 69 + Until: 22:00, !- Field 70 + 0.09, !- Field 71 + Until: 24:00, !- Field 72 + 0.05, !- Field 73 + For: AllOtherDays, !- Field 74 + Until: 05:00, !- Field 75 + 0.04, !- Field 76 + Until: 06:00, !- Field 77 + 0.07, !- Field 78 + Until: 11:00, !- Field 79 + 0.04, !- Field 80 + Until: 13:00, !- Field 81 + 0.06, !- Field 82 + Until: 14:00, !- Field 83 + 0.09, !- Field 84 + Until: 15:00, !- Field 85 + 0.06, !- Field 86 + Until: 21:00, !- Field 87 + 0.04, !- Field 88 + Until: 22:00, !- Field 89 + 0.07, !- Field 90 + Until: 24:00, !- Field 91 + 0.04; !- Field 92 + +Schedule:Compact, + Water Equipment Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.05; !- Field 4 + +Schedule:Compact, + Water Equipment Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0.2; !- Field 4 + +Schedule:Compact, + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.0; !- Field 4 + +Schedule:Compact, + Water Equipment Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 43.3; !- Field 4 + +Schedule:Compact, + Water Equipment Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 43.3; !- Field 4 + +Schedule:Compact, + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Schedule:Compact, + SWHSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 60.0; !- Field 4 + +Material, + Mass NonRes Wall Insulation, !- Name + MediumRough, !- Roughness + 0.0495494599433393, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + IEAD NonRes Roof Insulation, !- Name + MediumRough, !- Roughness + 0.127338688569477, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + UGWall NonRes Insulation, !- Name + MediumRough, !- Roughness + 0.0001, !- Thickness + 0.049, !- Conductivity + 265, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Wood Siding, !- Name + MediumSmooth, !- Roughness + 0.01, !- Thickness + 0.11, !- Conductivity + 544.62, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + +Material, + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness + 0.16, !- Conductivity + 784.9, !- Density + 830, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +Material, + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness + 0.6918, !- Conductivity + 1858, !- Density + 837, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +Material, + 8IN CONCRETE HW, !- Name + Rough, !- Roughness + 0.2032, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Metal Siding, !- Name + Smooth, !- Roughness + 0.0015, !- Thickness + 44.96, !- Conductivity + 7688.86, !- Density + 410, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.2, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material, + HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness + 0.16, !- Conductivity + 1121.29, !- Density + 1460, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness + 45.006, !- Conductivity + 7680, !- Density + 418.4, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + +Material, + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness + 45.006, !- Conductivity + 7680, !- Density + 418.4, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + +Material, + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness + 1.311, !- Conductivity + 2240, !- Density + 836.8, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Std AC02, !- Name + MediumSmooth, !- Roughness + 0.0127, !- Thickness + 0.057, !- Conductivity + 288, !- Density + 1339, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.2; !- Visible Absorptance + +Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material:NoMass, + MAT-AIR-WALL, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + +WindowMaterial:SimpleGlazingSystem, + NonRes Fixed Assembly Window, !- Name + 3.23646, !- UFactor + 0.39; !- Solar Heat Gain Coefficient + +Construction, + Mass Non-res Ext Wall, !- Name + 1IN Stucco, !- Outside Layer + 8IN Concrete HW, !- Layer 2 + Mass NonRes Wall Insulation, !- Layer 3 + 1/2IN Gypsum; !- Layer 4 + +Construction, + IEAD Non-res Roof, !- Name + Roof Membrane, !- Outside Layer + IEAD NonRes Roof Insulation, !- Layer 2 + Metal Decking; !- Layer 3 + +Construction, + ext-slab, !- Name + HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + +Construction, + int-walls, !- Name + 1/2IN Gypsum, !- Outside Layer + 1/2IN Gypsum; !- Layer 2 + +Construction, + INT-FLOOR-TOPSIDE, !- Name + MAT-CC05 4 HW CONCRETE, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + +Construction, + INT-FLOOR-UNDERSIDE, !- Name + CP02 CARPET PAD, !- Outside Layer + MAT-CC05 4 HW CONCRETE; !- Layer 2 + +Construction, + Underground Wall Non-res, !- Name + 8IN Concrete HW, !- Outside Layer + UGWall NonRes Insulation; !- Layer 2 + +Construction, + Window Non-res Fixed, !- Name + NonRes Fixed Assembly Window; !- Outside Layer + +Construction, + DropCeiling, !- Name + Std AC02; !- Outside Layer + +Construction, + AIR-WALL, !- Name + MAT-AIR-WALL; !- Outside Layer + +Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + +GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +Zone, + Basement, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0.04, !- Y Origin + 0.2, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_bottom, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_mid, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Core_top, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + GroundFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +Zone, + MidFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_bot_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_mid_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 10, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_2, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_3, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + Perimeter_top_ZN_4, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +Zone, + TopFloor_Plenum, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1, !- Multiplier + , !- Ceiling Height + , !- Volume + autocalculate, !- Floor Area + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +BuildingSurface:Detailed, + Basement_Ceiling_1, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_2, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_3, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_4, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Ceiling_5, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Basement, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Floor, !- Name + Floor, !- Surface Type + ext-slab, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + -2.439, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + -2.439; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_East, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_North, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_South, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Basement_Wall_West, !- Name + Wall, !- Surface Type + Underground Wall Non-res, !- Construction Name + Basement, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + -2.439, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + -2.439, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Building_Roof, !- Name + Roof, !- Surface Type + IEAD Non-res Roof, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 47.5584, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 47.5584, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_bot_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_bottom, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_mid_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_mid, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core_top_ZN_5_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Core_top, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Ceiling, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 3.9632, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 3.9632, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + GroundFloor_Plenum_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + GroundFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 3.9632, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 3.9632; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Ceiling, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 23.7792, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 23.7792, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + MidFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + MidFloor_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + MidFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 23.7792, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 23.7792; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + GroundFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 2.744, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.744, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Basement_Ceiling_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_bot_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_bot_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_bot_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_bot_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_bot_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 2.744, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.744; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + MidFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 22.56, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 22.56, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 19.816, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 19.816; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_mid_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_mid_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_mid_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_mid_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_mid_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 22.56, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 19.816, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 19.816, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 22.56; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_1_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_1, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_South, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_2_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_2, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_East, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 68.534, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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 + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_3_Wall_West, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_3, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Wall_North, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Ceiling, !- Name + Ceiling, !- Surface Type + DropCeiling, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + TopFloor_Plenum_Floor_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Floor, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 43.5952, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 43.5952; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_East, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 4.5732, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_North, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 4.5732, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_South, !- Name + Wall, !- Surface Type + int-walls, !- Construction Name + Perimeter_top_ZN_4, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Wall_West, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perimeter_top_ZN_4_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + Perimeter_top_ZN_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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 43.5952, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 43.5952, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_1, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 68.534, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_2, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_2_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 4.5732, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_3, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_3_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 44.165, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_4, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Perimeter_top_ZN_4_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 4.5732, !- Vertex 3 Xcoordinate + 44.165, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Floor_5, !- Name + Floor, !- Surface Type + DropCeiling, !- Construction Name + TopFloor_Plenum, !- Zone Name + Surface, !- Outside Boundary Condition + Core_top_ZN_5_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 4.5732, !- Vertex 1 Xcoordinate + 44.165, !- Vertex 1 Ycoordinate + 46.3392, !- Vertex 1 Zcoordinate + 68.534, !- Vertex 2 Xcoordinate + 44.165, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 68.534, !- Vertex 3 Xcoordinate + 4.5732, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 4.5732, !- Vertex 4 Xcoordinate + 4.5732, !- Vertex 4 Ycoordinate + 46.3392; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_East, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_North, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 73.1072, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 73.1072, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_South, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 73.1072, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 73.1072, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 48.7381, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 48.7381, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + TopFloor_Plenum_Wall_West, !- Name + Wall, !- Surface Type + Mass Non-res Ext Wall, !- Construction Name + TopFloor_Plenum, !- Zone 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, !- Vertex 1 Xcoordinate + 48.7381, !- Vertex 1 Ycoordinate + 47.5584, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 48.7381, !- Vertex 2 Ycoordinate + 46.3392, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 46.3392, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 47.5584; !- Vertex 4 Zcoordinate + +InternalMass, + Basement Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Basement, !- Zone or ZoneList Name + 7126.212; !- Surface Area + +InternalMass, + Core_bottom Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_bottom, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Core_mid Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_mid, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Core_top Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Core_top, !- Zone or ZoneList Name + 5064.6464; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_bot_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_mid_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_top_ZN_1 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + 626.8394; !- Surface Area + +InternalMass, + Perimeter_top_ZN_2 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +InternalMass, + Perimeter_top_ZN_3 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + 626.8257; !- Surface Area + +InternalMass, + Perimeter_top_ZN_4 Internal Mass, !- Name + InteriorFurnishings, !- Construction Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + 403.9503; !- Surface Area + +People, + Basement People, !- Name + Basement, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 37.16, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_bottom People, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_mid People, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Core_top People, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_1 People, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_2 People, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_3 People, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_bot_ZN_4 People, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_1 People, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_2 People, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_3 People, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_mid_ZN_4 People, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_1 People, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_2 People, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_3 People, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +People, + Perimeter_top_ZN_4 People, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area + 18.58, !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + CLOTHING_SCH, !- Clothing Insulation Calculation Method + AIR_VELO_SCH, !- Clothing Insulation Calculation Method Schedule Name + FANGER; !- Clothing Insulation Schedule Name + +Lights, + Basement_Lights, !- Name + Basement, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_bottom_Lights, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_mid_Lights, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Core_top_Lights, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_1_Lights, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_2_Lights, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_3_Lights, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_bot_ZN_4_Lights, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_1_Lights, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_2_Lights, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_3_Lights, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_mid_ZN_4_Lights, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_1_Lights, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_2_Lights, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_3_Lights, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +Lights, + Perimeter_top_ZN_4_Lights, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.7, !- Fraction Radiant + 0.2, !- Fraction Visible + 1, !- Fraction Replaceable + General, !- EndUse Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +ElectricEquipment, + Basement_PlugMisc_Equip, !- Name + Basement, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_bottom_PlugMisc_Equip, !- Name + Core_bottom, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_mid_PlugMisc_Equip, !- Name + Core_mid, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Core_top_PlugMisc_Equip, !- Name + Core_top, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_1_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_2_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_3_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_bot_ZN_4_PlugMisc_Equip, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_1_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_2_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_3_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_mid_ZN_4_PlugMisc_Equip, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_1_PlugMisc_Equip, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_2_PlugMisc_Equip, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_3_PlugMisc_Equip, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ElectricEquipment, + Perimeter_top_ZN_4_PlugMisc_Equip, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 10.76, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0, !- Fraction Lost + General; !- EndUse Subcategory + +ZoneInfiltration:DesignFlowRate, + GroundFloor_Plenum_Infiltration, !- Name + GroundFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + MidFloor_Plenum_Infiltration, !- Name + MidFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_1_Infiltration, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_2_Infiltration, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_3_Infiltration, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_bot_ZN_4_Infiltration, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_1_Infiltration, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_2_Infiltration, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_3_Infiltration, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_mid_ZN_4_Infiltration, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_1_Infiltration, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_2_Infiltration, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_3_Infiltration, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + Perimeter_top_ZN_4_Infiltration, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + TopFloor_Plenum_Infiltration, !- Name + TopFloor_Plenum, !- Zone or ZoneList Name + INFIL_QUARTER_ON_SCH, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + 0.000302, !- Flow per Exterior Surface Area + , !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +Exterior:Lights, + Exterior Facade Lighting, !- Name + ALWAYS_ON, !- Schedule Name + 51262, !- Design Level + AstronomicalClock, !- Control Option + Exterior Facade Lighting; !- EndUse Subcategory + +Exterior:FuelEquipment, + Elevators, !- Name + Electricity, !- Fuel Use Type + BLDG_ELEVATORS, !- Schedule Name + 244443.956043956, !- Design Level + Elevators; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ DSOA Basement, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_bottom, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_mid, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Core_top, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_bot_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_mid_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_1, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_2, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_3, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +DesignSpecification:OutdoorAir, + SZ DSOA Perimeter_top_ZN_4, !- Name + Flow/Person, !- Outdoor Air Method + 0.0125; !- Outdoor Air Flow per Person + +Sizing:Parameters, + 1.33, !- Heating Sizing Factor + 1.33, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + +Sizing:Zone, + Basement, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Basement, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_bottom, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_bottom, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_mid, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_mid, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Core_top, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Core_top, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_bot_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_mid_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_2, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_3, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_3, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:Zone, + Perimeter_top_ZN_4, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ DSOA Perimeter_top_ZN_4, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + , !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay; !- Heating Design Air Flow Method + +Sizing:System, + VAV_1, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_2, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_3, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:System, + VAV_5, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 12.8, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12.8, !- Central Cooling Design Supply Air Temperature + 16.7, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + DesignDay, !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + ZoneSum, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + , !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction + , !- Cooling Design Capacity Method + , !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + , !- Heating Design Capacity Method + , !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + ; !- Central Cooling Capacity Control Method + +Sizing:Plant, + CoolSys1, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 6.67, !- Design Loop Exit Temperature + 6.67; !- Loop Design Temperature Difference + +Sizing:Plant, + HeatSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82.2, !- Design Loop Exit Temperature + 11.1; !- Loop Design Temperature Difference + +Sizing:Plant, + TowerWaterSys, !- Plant or Condenser Loop Name + CONDENSER, !- Loop Type + 29.4, !- Design Loop Exit Temperature + 5.6; !- Loop Design Temperature Difference + +Sizing:Plant, + SWHSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60, !- Design Loop Exit Temperature + 5; !- Loop Design Temperature Difference + +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, + Core_bottom Thermostat, !- Name + Core_bottom, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_bottom DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Core_mid Thermostat, !- Name + Core_mid, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_mid DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Core_top Thermostat, !- Name + Core_top, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Core_top DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_1 Thermostat, !- Name + Perimeter_bot_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_2 Thermostat, !- Name + Perimeter_bot_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_3 Thermostat, !- Name + Perimeter_bot_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_bot_ZN_4 Thermostat, !- Name + Perimeter_bot_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_bot_ZN_4 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_1 Thermostat, !- Name + Perimeter_mid_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_2 Thermostat, !- Name + Perimeter_mid_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_3 Thermostat, !- Name + Perimeter_mid_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_mid_ZN_4 Thermostat, !- Name + Perimeter_mid_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_mid_ZN_4 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_1 Thermostat, !- Name + Perimeter_top_ZN_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_1 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_2 Thermostat, !- Name + Perimeter_top_ZN_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_2 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_3 Thermostat, !- Name + Perimeter_top_ZN_3, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_3 DualSPSched; !- Control 1 Name + +ZoneControl:Thermostat, + Perimeter_top_ZN_4 Thermostat, !- Name + Perimeter_top_ZN_4, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Perimeter_top_ZN_4 DualSPSched; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + Basement DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_bottom DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_mid DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Core_top DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_bot_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_mid_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_1 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_2 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_3 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Perimeter_top_ZN_4 DualSPSched, !- Name + HTGSETP_SCH, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH; !- Cooling Setpoint Temperature Schedule Name + +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 Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- 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 + 0.0, !- Minimum Hot Water or Steam Flow Rate + Basement VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_bottom VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_bottom VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_bottom VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_mid VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_mid VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_mid VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_mid VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Core_top VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Core_top VAV Box Damper Node, !- Damper Air Outlet Node Name + Core_top VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Core_top VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_bot_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_mid_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_3 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_3 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +AirTerminal:SingleDuct:VAV:Reheat, + Perimeter_top_ZN_4 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Perimeter_top_ZN_4 VAV Box Damper Node, !- Damper Air Outlet Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate + 0.0, !- Minimum Hot Water or Steam Flow Rate + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + NORMAL, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat + ; !- Maximum Flow Fraction During Reheat + +ZoneHVAC:AirDistributionUnit, + Basement VAV Box, !- Name + Basement VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Basement VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_bottom VAV Box, !- Name + Core_bottom VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_bottom VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_mid VAV Box, !- Name + Core_mid VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_mid VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Core_top VAV Box, !- Name + Core_top VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Core_top VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_1 VAV Box, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_2 VAV Box, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_3 VAV Box, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_bot_ZN_4 VAV Box, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_bot_ZN_4 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_1 VAV Box, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_2 VAV Box, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_3 VAV Box, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_mid_ZN_4 VAV Box, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_mid_ZN_4 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_1 VAV Box, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_1 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_2 VAV Box, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_2 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_3 VAV Box, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_3 VAV Box Component; !- Air Terminal Name + +ZoneHVAC:AirDistributionUnit, + Perimeter_top_ZN_4 VAV Box, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Perimeter_top_ZN_4 VAV Box Component; !- Air Terminal Name + +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 Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_bottom, !- Zone Name + Core_bottom Equipment, !- Zone Conditioning Equipment List Name + Core_bottom Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_bottom Air Node, !- Zone Air Node Name + Core_bottom Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_mid, !- Zone Name + Core_mid Equipment, !- Zone Conditioning Equipment List Name + Core_mid Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_mid Air Node, !- Zone Air Node Name + Core_mid Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core_top, !- Zone Name + Core_top Equipment, !- Zone Conditioning Equipment List Name + Core_top Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Core_top Air Node, !- Zone Air Node Name + Core_top Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_1, !- Zone Name + Perimeter_bot_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_2, !- Zone Name + Perimeter_bot_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_3, !- Zone Name + Perimeter_bot_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_bot_ZN_4, !- Zone Name + Perimeter_bot_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_bot_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_bot_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_1, !- Zone Name + Perimeter_mid_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_2, !- Zone Name + Perimeter_mid_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_3, !- Zone Name + Perimeter_mid_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_mid_ZN_4, !- Zone Name + Perimeter_mid_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_mid_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_mid_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_1, !- Zone Name + Perimeter_top_ZN_1 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_1 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_2, !- Zone Name + Perimeter_top_ZN_2 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_2 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_3, !- Zone Name + Perimeter_top_ZN_3 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_3 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_3 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_3 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Perimeter_top_ZN_4, !- Zone Name + Perimeter_top_ZN_4 Equipment, !- Zone Conditioning Equipment List Name + Perimeter_top_ZN_4 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Perimeter_top_ZN_4 Air Node, !- Zone Air Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +Fan:VariableVolume, + VAV_1_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6045, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.93, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.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 + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_2_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6175, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.95, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.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 + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_3_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6045, !- Fan Total Efficiency + 1017.592, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.93, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.0, !- Fan Power Coefficient 5 + VAV_3_HeatC-VAV_3_FanNode, !- Air Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- EndUse Subcategory + +Fan:VariableVolume, + VAV_5_Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.5915, !- Fan Total Efficiency + 1109.648, !- Pressure Rise + AUTOSIZE, !- Maximum Flow Rate + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + , !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate + 0.91, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0.0, !- Fan Power Coefficient 5 + VAV_5_HeatC-VAV_5_FanNode, !- Air Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- EndUse Subcategory + +Coil:Cooling:Water, + VAV_3_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + VAV_3_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_3_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Air Inlet Node Name + VAV_3_CoolC-VAV_3_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 + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + 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_1_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + 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_5_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Inlet Water Temperature + AUTOSIZE, !- Design Inlet Air Temperature + AUTOSIZE, !- Design Outlet Air Temperature + AUTOSIZE, !- Design Inlet Air Humidity Ratio + AUTOSIZE, !- Design Outlet Air Humidity Ratio + VAV_5_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_5_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Air Inlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +Coil:Heating:Water, + Basement VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_bottom VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_bottom VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_bottom VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_bottom VAV Box Damper Node, !- Air Inlet Node Name + Core_bottom VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_mid VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_mid VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_mid VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_mid VAV Box Damper Node, !- Air Inlet Node Name + Core_mid VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Core_top VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Core_top VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Core_top VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Core_top VAV Box Damper Node, !- Air Inlet Node Name + Core_top VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_1 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_2 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_3 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Perimeter_top_ZN_4 VAV Box Damper Node, !- Air Inlet Node Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + 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 + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_3_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + VAV_3_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_3_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode, !- Air Inlet Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +Coil:Heating:Water, + VAV_5_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- UFactor Times Area Value + AUTOSIZE, !- Maximum Water Flow Rate + VAV_5_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_5_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode, !- Air Inlet Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity + 82.2, !- Rated Inlet Water Temperature + 16.6, !- Rated Inlet Air Temperature + 71.1, !- Rated Outlet Water Temperature + 32.2, !- Rated Outlet Air Temperature + ; !- Rated Ratio for Air and Water Convection + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_3_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_3_CoolC-VAV_3_HeatCNode, !- Sensor Node Name + VAV_3_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_3_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_3_HeatC-VAV_3_FanNode, !- Sensor Node Name + VAV_3_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_5_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_5_CoolC-VAV_5_HeatCNode, !- Sensor Node Name + VAV_5_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +Controller:WaterCoil, + VAV_5_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_5_HeatC-VAV_5_FanNode, !- Sensor Node Name + VAV_5_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance + AUTOSIZE, !- Maximum Actuated Flow + 0; !- Minimum Actuated Flow + +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 + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +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 + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +Controller:OutdoorAir, + VAV_3_OA_Controller, !- Name + VAV_3_OARelief Node, !- Relief Air Outlet Node Name + VAV_3 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Mixed Air Node Name + VAV_3_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +Controller:OutdoorAir, + VAV_5_OA_Controller, !- Name + VAV_5_OARelief Node, !- Relief Air Outlet Node Name + VAV_5 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Mixed Air Node Name + VAV_5_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate + AUTOSIZE, !- Maximum Outdoor Air Flow Rate + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit DryBulb Temperature + 64000, !- Economizer Maximum Limit Enthalpy + , !- Economizer Maximum Limit Dewpoint Temperature + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit DryBulb Temperature + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched; !- Minimum Outdoor Air Schedule Name + +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_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_3_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_3_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_3_HeatC_Controller; !- Controller 2 Name + +AirLoopHVAC:ControllerList, + VAV_3_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_3_OA_Controller; !- Controller 1 Name + +AirLoopHVAC:ControllerList, + VAV_5_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_5_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_5_HeatC_Controller; !- Controller 2 Name + +AirLoopHVAC:ControllerList, + VAV_5_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_5_OA_Controller; !- Controller 1 Name + +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 + 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_2, !- Name + VAV_2_Controllers, !- Controller List Name + VAV_2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + 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_3, !- Name + VAV_3_Controllers, !- Controller List Name + VAV_3 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + VAV_3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +AirLoopHVAC, + VAV_5, !- Name + VAV_5_Controllers, !- Controller List Name + VAV_5 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate + VAV_5 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_5 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_5 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_5 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_1_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_1_OAMixing Box; !- Component 1 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_3_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_3_OAMixing Box; !- Component 1 Name + +AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_5_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_5_OAMixing Box; !- Component 1 Name + +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_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_3_OA, !- Name + VAV_3_OA_Controllers, !- Controller List Name + VAV_3_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_3 Availability Manager List; !- Availability Manager List Name + +AirLoopHVAC:OutdoorAirSystem, + VAV_5_OA, !- Name + VAV_5_OA_Controllers, !- Controller List Name + VAV_5_OA_Equipment, !- Outdoor Air Equipment List Name + VAV_5 Availability Manager List; !- Availability Manager List Name + +OutdoorAir:Mixer, + VAV_1_OAMixing Box, !- Name + VAV_1_OA-VAV_1_CoolCNode, !- Mixed Air Node Name + VAV_1_OAInlet Node, !- 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_2_OAMixing Box, !- Name + VAV_2_OA-VAV_2_CoolCNode, !- Mixed Air Node Name + VAV_2_OAInlet Node, !- 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_3_OAMixing Box, !- Name + VAV_3_OA-VAV_3_CoolCNode, !- Mixed Air Node Name + VAV_3_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_3_OARelief Node, !- Relief Air Stream Node Name + VAV_3 Supply Equipment Inlet Node; !- Return Air Stream Node Name + +OutdoorAir:Mixer, + VAV_5_OAMixing Box, !- Name + VAV_5_OA-VAV_5_CoolCNode, !- Mixed Air Node Name + VAV_5_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_5_OARelief Node, !- Relief Air Stream Node Name + VAV_5 Supply Equipment Inlet Node; !- Return Air Stream Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_1 Supply Air Splitter, !- Name + VAV_1 Zone Equipment Inlet Node, !- Inlet Node Name + Core_bottom VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_bot_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_bot_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_bot_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_bot_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_2 Supply Air Splitter, !- Name + VAV_2 Zone Equipment Inlet Node, !- Inlet Node Name + Core_mid VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_mid_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_mid_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_mid_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_mid_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_3 Supply Air Splitter, !- Name + VAV_3 Zone Equipment Inlet Node, !- Inlet Node Name + Core_top VAV Box Inlet Node Name, !- Outlet 1 Node Name + Perimeter_top_ZN_3 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Perimeter_top_ZN_2 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Perimeter_top_ZN_1 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Perimeter_top_ZN_4 VAV Box Inlet Node Name; !- Outlet 5 Node Name + +AirLoopHVAC:ZoneSplitter, + VAV_5 Supply Air Splitter, !- Name + VAV_5 Zone Equipment Inlet Node, !- Inlet Node Name + Basement VAV Box Inlet Node Name; !- Outlet 1 Node Name + +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_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_3, !- Name + VAV_3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + VAV_3 Supply Air Splitter; !- Component 1 Name + +AirLoopHVAC:SupplyPath, + VAV_5, !- Name + VAV_5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + VAV_5 Supply Air Splitter; !- Component 1 Name + +AirLoopHVAC:ZoneMixer, + VAV_1 Return Air Mixer, !- Name + VAV_1 Zone Equipment Outlet Node, !- Outlet Node Name + GROUNDFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_2 Return Air Mixer, !- Name + VAV_2 Zone Equipment Outlet Node, !- Outlet Node Name + MIDFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_3 Return Air Mixer, !- Name + VAV_3 Zone Equipment Outlet Node, !- Outlet Node Name + TOPFLOOR_PLENUMPlenumOutletNode; !- Inlet 1 Node Name + +AirLoopHVAC:ZoneMixer, + VAV_5 Return Air Mixer, !- Name + VAV_5 Zone Equipment Outlet Node, !- Outlet Node Name + Basement Return Air Node Name; !- Inlet 1 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_2 Return Plenum, !- Name + MidFloor_Plenum, !- Zone Name + MIDFLOOR_PLENUMPlenumNode, !- Zone Node Name + MIDFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_mid Return Air Node Name, !- Inlet 1 Node Name + Perimeter_mid_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_mid_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_mid_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_mid_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_1 Return Plenum, !- Name + GroundFloor_Plenum, !- Zone Name + GROUNDFLOOR_PLENUMPlenumNode, !- Zone Node Name + GROUNDFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_bottom Return Air Node Name, !- Inlet 1 Node Name + Perimeter_bot_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_bot_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_bot_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_bot_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPlenum, + VAV_3 Return Plenum, !- Name + TopFloor_Plenum, !- Zone Name + TOPFLOOR_PLENUMPlenumNode, !- Zone Node Name + TOPFLOOR_PLENUMPlenumOutletNode, !- Outlet Node Name + , !- Induced Air Outlet Node or NodeList Name + Core_top Return Air Node Name, !- Inlet 1 Node Name + Perimeter_top_ZN_3 Return Air Node Name, !- Inlet 2 Node Name + Perimeter_top_ZN_2 Return Air Node Name, !- Inlet 3 Node Name + Perimeter_top_ZN_1 Return Air Node Name, !- Inlet 4 Node Name + Perimeter_top_ZN_4 Return Air Node Name; !- Inlet 5 Node Name + +AirLoopHVAC:ReturnPath, + VAV_1 Return Air Path, !- Name + VAV_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_1 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_1 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_2 Return Air Path, !- Name + VAV_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_2 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_2 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_3 Return Air Path, !- Name + VAV_3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ReturnPlenum, !- Component 1 Object Type + VAV_3 Return Plenum, !- Component 1 Name + AirLoopHVAC:ZoneMixer, !- Component 2 Object Type + VAV_3 Return Air Mixer; !- Component 2 Name + +AirLoopHVAC:ReturnPath, + VAV_5 Return Air Path, !- Name + VAV_5 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_5 Return Air Mixer; !- Component 1 Name + +Branch, + VAV_1 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_1_OA, !- Component 1 Inlet Node Name + VAV_1 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_1_CoolC, !- Component 2 Outlet Node Name + VAV_1_OA-VAV_1_CoolCNode, !- Component 3 Object Type + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_1_HeatC, !- Component 4 Object Type + VAV_1_CoolC-VAV_1_HeatCNode, !- Component 4 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_1_Fan, !- Component 5 Name + VAV_1_HeatC-VAV_1_FanNode, !- Component 5 Inlet Node Name + VAV_1 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_2 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_2_OA, !- Component 1 Inlet Node Name + VAV_2 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_2_CoolC, !- Component 2 Outlet Node Name + VAV_2_OA-VAV_2_CoolCNode, !- Component 3 Object Type + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_2_HeatC, !- Component 4 Object Type + VAV_2_CoolC-VAV_2_HeatCNode, !- Component 4 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_2_Fan, !- Component 5 Name + VAV_2_HeatC-VAV_2_FanNode, !- Component 5 Inlet Node Name + VAV_2 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_3 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_3_OA, !- Component 1 Inlet Node Name + VAV_3 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_3_CoolC, !- Component 2 Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode, !- Component 3 Object Type + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_3_HeatC, !- Component 4 Object Type + VAV_3_CoolC-VAV_3_HeatCNode, !- Component 4 Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_3_Fan, !- Component 5 Name + VAV_3_HeatC-VAV_3_FanNode, !- Component 5 Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + VAV_5 Air Loop Main Branch, !- Name + AUTOSIZE, !- Pressure Drop Curve Name + , !- Component 1 Object Type + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Name + VAV_5_OA, !- Component 1 Inlet Node Name + VAV_5 Supply Equipment Inlet Node, !- Component 1 Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Component 2 Object Type + Passive, !- Component 2 Name + Coil:Cooling:Water, !- Component 2 Inlet Node Name + VAV_5_CoolC, !- Component 2 Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode, !- Component 3 Object Type + VAV_5_CoolC-VAV_5_HeatCNode, !- Component 3 Name + Passive, !- Component 3 Inlet Node Name + Coil:Heating:Water, !- Component 3 Outlet Node Name + VAV_5_HeatC, !- Component 4 Object Type + VAV_5_CoolC-VAV_5_HeatCNode, !- Component 4 Name + VAV_5_HeatC-VAV_5_FanNode, !- Component 4 Inlet Node Name + Passive, !- Component 4 Outlet Node Name + Fan:VariableVolume, !- Component 5 Object Type + VAV_5_Fan, !- Component 5 Name + VAV_5_HeatC-VAV_5_FanNode, !- Component 5 Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Component 5 Outlet Node Name + Active; !- Component 6 Object Type + +Branch, + CoolSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + CoolSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Demand Inlet Pipe-CoolSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_5_CoolC, !- Component 1 Inlet Node Name + VAV_5_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_5_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_1_CoolC, !- Component 1 Inlet Node Name + VAV_1_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_1_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_2_CoolC, !- Component 1 Inlet Node Name + VAV_2_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_2_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Cooling:Water, !- Component 1 Name + VAV_3_CoolC, !- Component 1 Inlet Node Name + VAV_3_CoolCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_3_CoolCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + CoolSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 1, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNode 1, !- Component 1 Outlet Node Name + CoolSys1 Supply Equipment Outlet Node 1, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 2, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNode 2, !- Component 1 Outlet Node Name + CoolSys1 Supply Equipment Outlet Node 2, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + CoolSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + CoolSys1 Pump, !- Component 1 Inlet Node Name + CoolSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + CoolSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + CoolSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + CoolSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + HeatSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Basement VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Basement VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Basement VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 10, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 11, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 12, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 13, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 14, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 15, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 16, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_top_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_top_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 17, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_5_HeatC, !- Component 1 Inlet Node Name + VAV_5_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_5_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 18, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_1_HeatC, !- Component 1 Inlet Node Name + VAV_1_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_1_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 19, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_2_HeatC, !- Component 1 Inlet Node Name + VAV_2_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_2_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_bottom VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_bottom VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_bottom VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 20, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + VAV_3_HeatC, !- Component 1 Inlet Node Name + VAV_3_HeatCDemand Inlet Node, !- Component 1 Outlet Node Name + VAV_3_HeatCDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_mid VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_mid VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_mid VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Core_top VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Core_top VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Core_top VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_2 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_2 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_1 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_1 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_bot_ZN_4 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_bot_ZN_4 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Load Branch 9, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Coil:Heating:Water, !- Component 1 Name + Perimeter_mid_ZN_3 VAV Box Reheat Coil, !- Component 1 Inlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Outlet Node Name + Perimeter_mid_ZN_3 VAV Box Reheat CoilDemand Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + HeatSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + HeatSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Boiler:HotWater, !- Component 1 Name + HeatSys1 Boiler, !- Component 1 Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Component 1 Outlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + HeatSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + HeatSys1 Pump, !- Component 1 Inlet Node Name + HeatSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + HeatSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + HeatSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + HeatSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Bypass Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + TowerWaterSys Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Inlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 1, !- Component 1 Inlet Node Name + CoolSys1 Chiller Water Inlet Node 1, !- Component 1 Outlet Node Name + CoolSys1 Chiller Water Outlet Node 1, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Chiller:Electric:ReformulatedEIR, !- Component 1 Name + CoolSys1 Chiller 2, !- Component 1 Inlet Node Name + CoolSys1 Chiller Water Inlet Node 2, !- Component 1 Outlet Node Name + CoolSys1 Chiller Water Outlet Node 2, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Demand Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Demand Mixer-TowerWaterSys Demand Outlet Pipe, !- Component 1 Outlet Node Name + TowerWaterSys Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + TowerWaterSys Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + CoolingTower:SingleSpeed, !- Component 1 Name + TowerWaterSys CoolTower, !- Component 1 Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNode, !- Component 1 Outlet Node Name + TowerWaterSys Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + TowerWaterSys Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:ConstantSpeed, !- Component 1 Name + TowerWaterSys Pump, !- Component 1 Inlet Node Name + TowerWaterSys Supply Inlet Node, !- Component 1 Outlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + TowerWaterSys Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + TowerWaterSys Supply Outlet Pipe, !- Component 1 Inlet Node Name + TowerWaterSys Supply Mixer-TowerWaterSys Supply Outlet Pipe, !- Component 1 Outlet Node Name + TowerWaterSys Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Bypass Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + SWHSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Inlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_bottom Water Equipment, !- Component 1 Inlet Node Name + Core_bottom Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_bottom Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_mid Water Equipment, !- Component 1 Inlet Node Name + Core_mid Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_mid Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterUse:Connections, !- Component 1 Name + Core_top Water Equipment, !- Component 1 Inlet Node Name + Core_top Water Equipment Water Inlet Node, !- Component 1 Outlet Node Name + Core_top Water Equipment Water Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Component 1 Outlet Node Name + SWHSys1 Demand Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +Branch, + SWHSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + WaterHeater:Mixed, !- Component 1 Name + SWHSys1 Water Heater, !- Component 1 Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Component 1 Outlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Supply Equipment Bypass Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node, !- Component 2 Object Type + Bypass; !- Component 2 Name + +Branch, + SWHSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pump:VariableSpeed, !- Component 1 Name + SWHSys1 Pump, !- Component 1 Inlet Node Name + SWHSys1 Supply Inlet Node, !- Component 1 Outlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Component 2 Object Type + Active; !- Component 2 Name + +Branch, + SWHSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + , !- Component 1 Object Type + Pipe:Adiabatic, !- Component 1 Name + SWHSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Component 1 Outlet Node Name + SWHSys1 Supply Outlet Node, !- Component 2 Object Type + Passive; !- Component 2 Name + +BranchList, + VAV_1 Air Loop Branches, !- Name + VAV_1 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_3 Air Loop Branches, !- Name + VAV_3 Air Loop Main Branch; !- Branch 1 Name + +BranchList, + VAV_5 Air Loop Branches, !- Name + VAV_5 Air Loop Main Branch; !- Branch 1 Name + +BranchList, + CoolSys1 Demand 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 Bypass Branch, !- Branch 6 Name + CoolSys1 Demand Outlet Branch; !- Branch 7 Name + +BranchList, + CoolSys1 Supply 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, + 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 Bypass Branch, !- Branch 22 Name + HeatSys1 Demand Outlet Branch; !- Branch 23 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, + 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 Bypass Branch, !- Branch 4 Name + TowerWaterSys Demand Outlet Branch; !- Branch 5 Name + +BranchList, + TowerWaterSys Supply Branches, !- Name + TowerWaterSys Supply Inlet Branch, !- Branch 1 Name + TowerWaterSys Supply Equipment Branch, !- Branch 2 Name + TowerWaterSys Supply Equipment Bypass Branch, !- Branch 3 Name + TowerWaterSys Supply Outlet Branch; !- Branch 4 Name + +BranchList, + SWHSys1 Demand Branches, !- Name + SWHSys1 Demand Inlet Branch, !- Branch 1 Name + SWHSys1 Demand Load Branch 1, !- Branch 2 Name + SWHSys1 Demand Load Branch 2, !- Branch 3 Name + SWHSys1 Demand Load Branch 3, !- Branch 4 Name + SWHSys1 Demand Bypass Branch, !- Branch 5 Name + SWHSys1 Demand Outlet Branch; !- Branch 6 Name + +BranchList, + SWHSys1 Supply Branches, !- Name + SWHSys1 Supply Inlet Branch, !- Branch 1 Name + SWHSys1 Supply Equipment Branch, !- Branch 2 Name + SWHSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SWHSys1 Supply Outlet Branch; !- Branch 4 Name + +Connector:Splitter, + CoolSys1 Demand 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 Bypass Branch; !- Outlet Branch 5 Name + +Connector:Splitter, + CoolSys1 Supply 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, + 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 Bypass Branch; !- Outlet Branch 21 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, + 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 Bypass Branch; !- Outlet Branch 3 Name + +Connector:Splitter, + TowerWaterSys Supply Splitter, !- Name + TowerWaterSys Supply Inlet Branch, !- Inlet Branch Name + TowerWaterSys Supply Equipment Branch, !- Outlet Branch 1 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + +Connector:Splitter, + SWHSys1 Demand Splitter, !- Name + SWHSys1 Demand Inlet Branch, !- Inlet Branch Name + SWHSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Outlet Branch 4 Name + +Connector:Splitter, + SWHSys1 Supply Splitter, !- Name + SWHSys1 Supply Inlet Branch, !- Inlet Branch Name + SWHSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + +Connector:Mixer, + CoolSys1 Demand 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 Bypass Branch; !- Inlet Branch 5 Name + +Connector:Mixer, + CoolSys1 Supply 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, + 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 Bypass Branch; !- Inlet Branch 21 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, + 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 Bypass Branch; !- Inlet Branch 3 Name + +Connector:Mixer, + TowerWaterSys Supply Mixer, !- Name + TowerWaterSys Supply Outlet Branch, !- Outlet Branch Name + TowerWaterSys Supply Equipment Branch, !- Inlet Branch 1 Name + TowerWaterSys Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + +Connector:Mixer, + SWHSys1 Demand Mixer, !- Name + SWHSys1 Demand Outlet Branch, !- Outlet Branch Name + SWHSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SWHSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + SWHSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + SWHSys1 Demand Bypass Branch; !- Inlet Branch 4 Name + +Connector:Mixer, + SWHSys1 Supply Mixer, !- Name + SWHSys1 Supply Outlet Branch, !- Outlet Branch Name + SWHSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SWHSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + +ConnectorList, + CoolSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Demand Mixer; !- Connector 2 Name + +ConnectorList, + CoolSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 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, + 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, + 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, + 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, + SWHSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Demand Mixer; !- Connector 2 Name + +ConnectorList, + SWHSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SWHSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SWHSys1 Supply Mixer; !- Connector 2 Name + +NodeList, + Basement Inlet Nodes, !- Name + Basement VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_bottom Inlet Nodes, !- Name + Core_bottom VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_mid Inlet Nodes, !- Name + Core_mid VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Core_top Inlet Nodes, !- Name + Core_top VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_1 Inlet Nodes, !- Name + Perimeter_bot_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_2 Inlet Nodes, !- Name + Perimeter_bot_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_3 Inlet Nodes, !- Name + Perimeter_bot_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_bot_ZN_4 Inlet Nodes, !- Name + Perimeter_bot_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_1 Inlet Nodes, !- Name + Perimeter_mid_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_2 Inlet Nodes, !- Name + Perimeter_mid_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_3 Inlet Nodes, !- Name + Perimeter_mid_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_mid_ZN_4 Inlet Nodes, !- Name + Perimeter_mid_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_1 Inlet Nodes, !- Name + Perimeter_top_ZN_1 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_2 Inlet Nodes, !- Name + Perimeter_top_ZN_2 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_3 Inlet Nodes, !- Name + Perimeter_top_ZN_3 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + Perimeter_top_ZN_4 Inlet Nodes, !- Name + Perimeter_top_ZN_4 VAV Box Outlet Node Name; !- Node 1 Name + +NodeList, + VAV_1_OANode List, !- Name + VAV_1_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_2_OANode List, !- Name + VAV_2_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_3_OANode List, !- Name + VAV_3_OAInlet Node; !- Node 1 Name + +NodeList, + VAV_5_OANode List, !- Name + VAV_5_OAInlet Node; !- Node 1 Name + +OutdoorAir:Node, + TowerWaterSys CoolTower OA ref Node; !- Name + +OutdoorAir:NodeList, + VAV_1_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_2_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_3_OANode List; !- Node or NodeList Name 1 + +OutdoorAir:NodeList, + VAV_5_OANode List; !- Node or NodeList Name 1 + +Pipe:Adiabatic, + CoolSys1 Demand Bypass Pipe, !- Name + CoolSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + CoolSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + CoolSys1 Demand Inlet Pipe, !- Name + CoolSys1 Demand Inlet Node, !- Inlet Node Name + CoolSys1 Demand Inlet Pipe-CoolSys1 Demand Mixer; !- 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, + 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, + 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 Inlet Pipe, !- Name + HeatSys1 Demand Inlet Node, !- Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- 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, + 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, + 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 Inlet Pipe, !- Name + TowerWaterSys Demand Inlet Node, !- Inlet Node Name + TowerWaterSys Demand Inlet Pipe-TowerWaterSys Demand Mixer; !- 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, + 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, + SWHSys1 Demand Bypass Pipe, !- Name + SWHSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SWHSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Demand Inlet Pipe, !- Name + SWHSys1 Demand Inlet Node, !- Inlet Node Name + SWHSys1 Demand Inlet Pipe-SWHSys1 Demand Mixer; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Demand Outlet Pipe, !- Name + SWHSys1 Demand Mixer-SWHSys1 Demand Outlet Pipe, !- Inlet Node Name + SWHSys1 Demand Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Supply Equipment Bypass Pipe, !- Name + SWHSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SWHSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + +Pipe:Adiabatic, + SWHSys1 Supply Outlet Pipe, !- Name + SWHSys1 Supply Mixer-SWHSys1 Supply Outlet Pipe, !- Inlet Node Name + SWHSys1 Supply Outlet Node; !- Outlet Node Name + +Pump:VariableSpeed, + CoolSys1 Pump, !- Name + CoolSys1 Supply Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + 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 + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.875, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + Intermittent; !- Pump Control Type + +Pump:VariableSpeed, + SWHSys1 Pump, !- Name + SWHSys1 Supply Inlet Node, !- Inlet Node Name + SWHSys1 Pump-SWHSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.85, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0.0, !- Coefficient 1 of the Part Load Performance Curve + 1.0, !- Coefficient 2 of the Part Load Performance Curve + 0.0, !- Coefficient 3 of the Part Load Performance Curve + 0.0, !- Coefficient 4 of the Part Load Performance Curve + 0.0, !- Design Minimum Flow Rate + Intermittent; !- Pump Control Type + +Pump:ConstantSpeed, + TowerWaterSys Pump, !- Name + TowerWaterSys Supply Inlet Node, !- Inlet Node Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate + 179352.0, !- Design Pump Head + AUTOSIZE, !- Design Power Consumption + 0.87, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + +Boiler:HotWater, + HeatSys1 Boiler, !- Name + NATURALGAS, !- Fuel Type + AUTOSIZE, !- Nominal Capacity + 0.78, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + , !- Normalized Boiler Efficiency Curve Name + 82.2, !- Design Water Flow Rate + AUTOSIZE, !- Minimum Part Load Ratio + 0, !- Maximum Part Load Ratio + 1.2, !- Optimum Part Load Ratio + 1, !- Boiler Water Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Boiler Water Outlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Water Outlet Upper Temperature Limit + 95, !- Boiler Flow Mode + VariableFlow, !- Parasitic Electric Load + 0, !- Sizing Factor + 1; !- EndUse Subcategory + +Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller 1, !- Name + AUTOSIZE, !- Reference Capacity + 5.5, !- Reference COP + 6.67, !- Reference Leaving Chilled Water Temperature + 35, !- Reference Leaving Condenser Water Temperature + AutoSize, !- Reference Chilled Water Flow Rate + AutoSize, !- Reference Condenser Water Flow Rate + WC Screw Default 90.1-2004 Cap_fT, !- Cooling Capacity Function of Temperature Curve Name + WC Screw Default 90.1-2004 EIR_fT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type + 0.1, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 0.2, !- Optimum Part Load Ratio + CoolSys1 Pump-CoolSys1 ChillerNode 1, !- Minimum Unloading Ratio + CoolSys1 Supply Equipment Outlet Node 1, !- Chilled Water Inlet Node Name + CoolSys1 Chiller Water Inlet Node 1, !- Chilled Water Outlet Node Name + CoolSys1 Chiller Water Outlet Node 1, !- Condenser Inlet Node Name + 1, !- Condenser Outlet Node Name + 2, !- Fraction of Compressor Electric Consumption Rejected by Condenser + VariableFlow, !- Leaving Chilled Water Lower Temperature Limit + , !- Chiller Flow Mode Type + , !- Design Heat Recovery Water Flow Rate + , !- Heat Recovery Inlet Node Name + 0.4; !- Heat Recovery Outlet Node Name + +Chiller:Electric:ReformulatedEIR, + CoolSys1 Chiller 2, !- Name + AUTOSIZE, !- Reference Capacity + 5.5, !- Reference COP + 6.67, !- Reference Leaving Chilled Water Temperature + 35, !- Reference Leaving Condenser Water Temperature + AutoSize, !- Reference Chilled Water Flow Rate + AutoSize, !- Reference Condenser Water Flow Rate + WC Screw Default 90.1-2004 Cap_fT, !- Cooling Capacity Function of Temperature Curve Name + WC Screw Default 90.1-2004 EIR_fT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type + 0.1, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 0.2, !- Optimum Part Load Ratio + CoolSys1 Pump-CoolSys1 ChillerNode 2, !- Minimum Unloading Ratio + CoolSys1 Supply Equipment Outlet Node 2, !- Chilled Water Inlet Node Name + CoolSys1 Chiller Water Inlet Node 2, !- Chilled Water Outlet Node Name + CoolSys1 Chiller Water Outlet Node 2, !- Condenser Inlet Node Name + 1, !- Condenser Outlet Node Name + 2, !- Fraction of Compressor Electric Consumption Rejected by Condenser + VariableFlow, !- Leaving Chilled Water Lower Temperature Limit + , !- Chiller Flow Mode Type + , !- Design Heat Recovery Water Flow Rate + , !- Heat Recovery Inlet Node Name + 0.4; !- Heat Recovery Outlet Node Name + +CoolingTower:SingleSpeed, + TowerWaterSys CoolTower, !- Name + TowerWaterSys Pump-TowerWaterSys CoolTowerNode, !- Water Inlet Node Name + TowerWaterSys Supply Equipment Outlet Node, !- Water Outlet Node Name + AUTOSIZE, !- Design Water Flow Rate + AUTOSIZE, !- Design Air Flow Rate + AUTOSIZE, !- Design Fan Power + AUTOSIZE, !- Design UFactor Times Area Value + AUTOSIZE, !- Free Convection Regime Air Flow Rate + AUTOSIZE, !- Free Convection Regime Air Flow Rate Sizing Factor + UFactorTimesAreaAndDesignWaterFlowRate, !- Free Convection Regime UFactor Times Area Value + , !- Free Convection UFactor Times Area Value Sizing Factor + , !- Performance Input Method + , !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + , !- Nominal Capacity + , !- Free Convection Capacity + SaturatedExit, !- Free Convection Nominal Capacity Sizing Factor + , !- Design Inlet Air DryBulb Temperature + 0.008, !- Design Inlet Air WetBulb Temperature + ConcentrationRatio, !- Design Approach Temperature + 3, !- Design Range Temperature + , !- Basin Heater Capacity + , !- Basin Heater Setpoint Temperature + TowerWaterSys CoolTower OA ref Node, !- Basin Heater Operating Schedule Name + FanCycling, !- Evaporation Loss Mode + , !- Evaporation Loss Factor + , !- Drift Loss Percent + , !- Blowdown Calculation Mode + , !- Blowdown Concentration Ratio + 1; !- Blowdown Makeup Water Usage Schedule Name + +WaterHeater:Mixed, + SWHSys1 Water Heater, !- Name + 0.7571, !- Tank Volume + SWHSys1 Water Heater Setpoint Temperature Schedule Name, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 82.2222, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + 845000, !- Heater Maximum Capacity + , !- Heater Minimum Capacity + , !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + NATURALGAS, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 20, !- Off Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + SCHEDULE, !- Ambient Temperature Indicator + SWHSys1 Water Heater Ambient Temperature Schedule Name, !- Ambient Temperature Schedule Name + , !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6, !- Off Cycle Loss Coefficient to Ambient Temperature + , !- Off Cycle Loss Fraction to Zone + 6, !- On Cycle Loss Coefficient to Ambient Temperature + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SWHSys1 Pump-SWHSys1 Water HeaterNode, !- Use Side Inlet Node Name + SWHSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate + AUTOSIZE, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +PlantLoop, + CoolSys1, !- 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 + 1.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + CoolSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + CoolSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + CoolSys1 Supply Branches, !- Plant Side Branch List Name + CoolSys1 Supply 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 Branches, !- Demand Side Branch List Name + CoolSys1 Demand Connectors, !- Demand Side Connector List Name + Uniform; !- 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 + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + 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, + SWHSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + SWHSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SWHSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature + 10.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Plant Loop Volume + SWHSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SWHSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SWHSys1 Supply Branches, !- Plant Side Branch List Name + SWHSys1 Supply Connectors, !- Plant Side Connector List Name + SWHSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SWHSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SWHSys1 Demand Branches, !- Demand Side Branch List Name + SWHSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +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 + 5.0, !- Minimum Loop Temperature + AUTOSIZE, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + AUTOSIZE, !- Condenser Loop Volume + 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 + Sequential; !- Load Distribution Scheme + +PlantEquipmentList, + CoolSys1 Equipment List, !- Name + Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type + CoolSys1 Chiller 1, !- Equipment 1 Name + Chiller:Electric:ReformulatedEIR, !- Equipment 2 Object Type + CoolSys1 Chiller 2; !- Equipment 2 Name + +PlantEquipmentList, + HeatSys1 Equipment List, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + HeatSys1 Boiler; !- Equipment 1 Name + +PlantEquipmentList, + SWHSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SWHSys1 Water Heater; !- Equipment 1 Name + +CondenserEquipmentList, + TowerWaterSys Equipment List, !- Name + CoolingTower:SingleSpeed, !- Equipment 1 Object Type + TowerWaterSys CoolTower; !- Equipment 1 Name + +PlantEquipmentOperation:CoolingLoad, + CoolSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 100000000000000, !- Load Range 1 Upper Limit + CoolSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:CoolingLoad, + TowerWaterSys Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000, !- Load Range 1 Upper Limit + TowerWaterSys Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + HeatSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + HeatSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperation:HeatingLoad, + SWHSys1 Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + SWHSys1 Equipment List; !- Range 1 Equipment List Name + +PlantEquipmentOperationSchemes, + CoolSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + CoolSys1 Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- 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 + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +PlantEquipmentOperationSchemes, + SWHSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SWHSys1 Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +CondenserEquipmentOperationSchemes, + TowerWaterSys Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + TowerWaterSys Operation Scheme, !- Control Scheme 1 Name + ALWAYS_ON; !- Control Scheme 1 Schedule Name + +AvailabilityManager:NightCycle, + VAV_1 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_2 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_3 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManager:NightCycle, + VAV_5 Availability Manager, !- Name + ALWAYS_ON, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance + 1800; !- Cycling Run Time Control Type + +AvailabilityManagerAssignmentList, + VAV_1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_1 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_3 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_3 Availability Manager; !- Availability Manager 1 Name + +AvailabilityManagerAssignmentList, + VAV_5 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_5 Availability Manager; !- Availability Manager 1 Name + +SetpointManager:Scheduled, + VAV_1 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_2 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_3 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + VAV_5 SAT setpoint, !- Name + Temperature, !- Control Variable + Seasonal-Reset-Supply-Air-Temp-Sch, !- Schedule Name + VAV_5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +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 + +SetpointManager:Scheduled, + CoolSys1 Chiller 1 Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Equipment Outlet Node 1; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + CoolSys1 Chiller 2 Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Equipment Outlet Node 2; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + CoolSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + HeatSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW-Loop-Temp-Schedule, !- Schedule Name + HeatSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +SetpointManager:Scheduled, + SWHSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SWHSys1-Loop-Temp-Schedule, !- Schedule Name + SWHSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +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_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_3_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_CoolC-VAV_3_HeatCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_3_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_HeatC-VAV_3_FanNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_3_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_3_HeatC-VAV_3_FanNode, !- Fan Inlet Node Name + VAV_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_3_OA-VAV_3_CoolCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_CoolC-VAV_5_HeatCNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_HeatC-VAV_5_FanNode; !- Setpoint Node or NodeList Name + +SetpointManager:MixedAir, + VAV_5_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_5_HeatC-VAV_5_FanNode, !- Fan Inlet Node Name + VAV_5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_5_OA-VAV_5_CoolCNode; !- Setpoint Node or NodeList Name + +SetpointManager:FollowOutdoorAirTemperature, + TowerWaterSys, !- Name + Temperature, !- Control Variable + OutdoorAirWetBulb, !- Reference Temperature Type + 0, !- Offset Temperature Difference + 80, !- Maximum Setpoint Temperature + 5, !- Minimum Setpoint Temperature + TowerWaterSys Supply Outlet Node; !- Setpoint Node or NodeList Name + +WaterUse:Equipment, + Core_bottom Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_bottom, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + Core_mid Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_mid, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + Core_top Water Equipment, !- Name + , !- EndUse Subcategory + 2.24e-05, !- Peak Flow Rate + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Water Equipment Temp Sched, !- Target Temperature Schedule Name + Water Equipment Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Core_top, !- Zone Name + Water Equipment Sensible fract sched, !- Sensible Fraction Schedule Name + Water Equipment Latent fract sched; !- Latent Fraction Schedule Name + +WaterUse:Connections, + Core_bottom Water Equipment, !- Name + Core_bottom Water Equipment Water Inlet Node, !- Inlet Node Name + Core_bottom Water Equipment 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 UFactor Times Area + Core_bottom Water Equipment; !- Water Use Equipment 1 Name + +WaterUse:Connections, + Core_mid Water Equipment, !- Name + Core_mid Water Equipment Water Inlet Node, !- Inlet Node Name + Core_mid Water Equipment 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 UFactor Times Area + Core_mid Water Equipment; !- Water Use Equipment 1 Name + +WaterUse:Connections, + Core_top Water Equipment, !- Name + Core_top Water Equipment Water Inlet Node, !- Inlet Node Name + Core_top Water Equipment 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 UFactor Times Area + Core_top Water Equipment; !- Water Use Equipment 1 Name + +Curve:Bicubic, + WC Screw GTE 300tons Default 90.1-2004 EIR_fPLR, !- Name + -0.2737954, !- Coefficient1 Constant + 0.02822257, !- Coefficient2 x + -8.097657e-05, !- Coefficient3 x2 + 0.9612284, !- Coefficient4 y + 0.3029741, !- Coefficient5 y2 + -0.02421933, !- Coefficient6 xy + 0, !- Coefficient7 x3 + -0.03885224, !- Coefficient8 y3 + 0, !- Coefficient9 x2y + 0, !- Coefficient10 xy2 + 18.54, !- Minimum Value of x + 31.63, !- Maximum Value of x + 0.2, !- Minimum Value of y + 1.02; !- Maximum Value of y + +Curve:Biquadratic, + WC Screw Default 90.1-2004 Cap_fT, !- Name + 0.906115, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x2 + -0.0009709, !- Coefficient4 y + -9.05e-05, !- Coefficient5 y2 + 0.0002527, !- Coefficient6 xy + 0, !- Minimum Value of x + 20, !- Maximum Value of x + 0, !- Minimum Value of y + 50; !- Maximum Value of y + +Curve:Biquadratic, + WC Screw Default 90.1-2004 EIR_fT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + -0.0009519, !- Coefficient3 x2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y2 + -0.0007059, !- Coefficient6 xy + 0, !- Minimum Value of x + 20, !- Maximum Value of x + 0, !- Minimum Value of y + 50; !- Maximum Value of y + +UtilityCost:Tariff, + PSI_LLF_LowLoadFactorService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + HalfHour, !- Demand Window Length + 15.00, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + +UtilityCost:Tariff, + PSI_CS_CommercialElectricService, !- Name + Electricity:Facility, !- Output Meter Name + kWh, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 9.40, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Elect; !- Group Name + +UtilityCost:Tariff, + IN_EIAMonthlyRateGas, !- Name + Gas:Facility, !- Output Meter Name + MCF, !- Conversion Factor Choice + , !- Energy Conversion Factor + , !- Demand Conversion Factor + , !- Time of Use Period Schedule Name + , !- Season Schedule Name + , !- Month Schedule Name + , !- Demand Window Length + 0.0, !- Monthly Charge or Variable Name + , !- Minimum Monthly Charge or Variable Name + , !- Real Time Pricing Charge Schedule Name + , !- Customer Baseline Load Schedule Name + Comm Gas; !- Group Name + +UtilityCost:Qualify, + MinDemand75kw, !- Utility Cost Qualify Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + TotalDemand, !- Variable Name + Minimum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 12.0; !- Number of Months + +UtilityCost:Qualify, + MaxDemand75kw, !- Utility Cost Qualify Name + PSI_CS_CommercialElectricService, !- Tariff Name + TotalDemand, !- Variable Name + Maximum, !- Qualify Type + 75, !- Threshold Value or Variable Name + Annual, !- Season + Count, !- Threshold Test + 1.0; !- Number of Months + +UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000370; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000031; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000216; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000833; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + FuelCostAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.002028; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + QualPollutionControlAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000536; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + SoxNoxRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.001127; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + DSMRiderAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000021; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + PurchPowerTrackerAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000034; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MidwestISOAdjustEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + -0.000203; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + CleanCoalRiderEnergyCharge, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + 0.000807; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofeightPercent, !- Utility Cost Charge Simple Name + PSI_CS_CommercialElectricService, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + MonthlyRateGasCharge, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + IN_MonthlyGasRates; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Simple, + TaxofEightPercent, !- Utility Cost Charge Simple Name + IN_EIAMonthlyRateGas, !- Tariff Name + SubTotal, !- Source Variable + Annual, !- Season + Taxes, !- Category Variable Name + 0.08; !- Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.108222, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.087021, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.078420, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.058320; !- Block 4 Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualDemandBaseCharge, !- Utility Cost Charge Block Name + PSI_LLF_LowLoadFactorService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + TotalDemand, !- Block Size Multiplier Value or Variable Name + 190, !- Block Size 1 Value or Variable Name + 0.0, !- Block 1 Cost per Unit Value or Variable Name + 110, !- Block Size 2 Value or Variable Name + 0.051773, !- Block 2 Cost per Unit Value or Variable Name + remaining, !- Block Size 3 Value or Variable Name + 0.046965; !- Block 3 Cost per Unit Value or Variable Name + +UtilityCost:Charge:Block, + AnnualEnergyCharge, !- Utility Cost Charge Block Name + PSI_CS_CommercialElectricService, !- Tariff Name + totalEnergy, !- Source Variable + Annual, !- Season + EnergyCharges, !- Category Variable Name + , !- Remaining Into Variable + , !- Block Size Multiplier Value or Variable Name + 300, !- Block Size 1 Value or Variable Name + 0.082409, !- Block 1 Cost per Unit Value or Variable Name + 700, !- Block Size 2 Value or Variable Name + 0.072873, !- Block 2 Cost per Unit Value or Variable Name + 1500, !- Block Size 3 Value or Variable Name + 0.061696, !- Block 3 Cost per Unit Value or Variable Name + remaining, !- Block Size 4 Value or Variable Name + 0.041179; !- Block 4 Cost per Unit Value or Variable Name + +UtilityCost:Variable, + IN_MonthlyGasRates, !- Name + IN_EIAMonthlyRateGas, !- Tariff Name + Currency, !- Variable Type + 8.22, !- January Value + 7.51, !- February Value + 8.97, !- March Value + 9.01, !- April Value + 9.16, !- May Value + 10.44, !- June Value + 10.32, !- July Value + 10.13, !- August Value + 9.2, !- September Value + 8.18, !- October Value + 7.83, !- November Value + 7.63; !- December Value + +Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + +OutputControl:Table:Style, + Comma, !- Column Separator + None; !- Unit Conversion + +OutputControl:ReportingTolerances, + 0.556, !- Tolerance for Time Heating Setpoint Not Met + 0.556; !- Tolerance for Time Cooling Setpoint Not Met + +Output:Variable, + *, !- Key Value + Air System Total Heating Energy, !- Variable Name + hourly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Air System Total Cooling Energy, !- Variable Name + hourly; !- Reporting Frequency + +Output:Meter, + Electricity:Facility, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorLights:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + ExteriorLights:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorEquipment:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + ExteriorEquipment:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Fans:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Pumps:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + HeatRejection:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Humidifier:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Refrigeration:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:Electricity, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Gas:Facility, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + InteriorEquipment:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + HeatRejection:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Heating:DistrictHeating, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:DistrictCooling, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + Cooling:Gas, !- Key Name + hourly; !- Reporting Frequency + +Output:Meter, + WaterSystems:EnergyTransfer, !- Key Name + hourly; !- Reporting Frequency + +EnvironmentalImpactFactors, + 0.663, !- District Heating Efficiency + 4.18, !- District Cooling COP + 0.585, !- Steam Conversion Efficiency + 80.7272, !- Total Carbon Equivalent Emission Factor From N2O + 6.2727, !- Total Carbon Equivalent Emission Factor From CH4 + 0.2727; !- Total Carbon Equivalent Emission Factor From CO2 + +FuelFactors, + Electricity, !- Existing Fuel Resource Name + kg, !- Units of Measure + , !- Energy per Unit Factor + 3.546, !- Source Energy Factor + , !- Source Energy Schedule Name + 341.7, !- CO2 Emission Factor + , !- CO2 Emission Factor Schedule Name + 0.1186, !- CO Emission Factor + , !- CO Emission Factor Schedule Name + 0.7472, !- CH4 Emission Factor + , !- CH4 Emission Factor Schedule Name + 0.6222, !- NOx Emission Factor + , !- NOx Emission Factor Schedule Name + 0.008028, !- N2O Emission Factor + , !- N2O Emission Factor Schedule Name + 1.872, !- SO2 Emission Factor + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor + , !- PM Emission Factor Schedule Name + 0.01739, !- PM10 Emission Factor + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM25 Emission Factor + , !- PM25 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor + , !- NH3 Emission Factor Schedule Name + 0.01019, !- NMVOC Emission Factor + , !- NMVOC Emission Factor Schedule Name + 5.639e-06, !- Hg Emission Factor + , !- Hg Emission Factor Schedule Name + 2.778e-05, !- Pb Emission Factor + , !- Pb Emission Factor Schedule Name + 0.4309556, !- Water Emission Factor + , !- Water Emission Factor Schedule Name + 0.0, !- Nuclear High Level Emission Factor + , !- Nuclear High Level Emission Factor Schedule Name + 0.0; !- Nuclear Low Level Emission Factor + +FuelFactors, + NaturalGas, !- Existing Fuel Resource Name + m3, !- Units of Measure + 37631000.0, !- Energy per Unit Factor + 1.092, !- Source Energy Factor + , !- Source Energy Schedule Name + 52.1, !- CO2 Emission Factor + , !- CO2 Emission Factor Schedule Name + 0.0399, !- CO Emission Factor + , !- CO Emission Factor Schedule Name + 0.00106, !- CH4 Emission Factor + , !- CH4 Emission Factor Schedule Name + 0.0473, !- NOx Emission Factor + , !- NOx Emission Factor Schedule Name + 0.00106, !- N2O Emission Factor + , !- N2O Emission Factor Schedule Name + 0.000268, !- SO2 Emission Factor + , !- SO2 Emission Factor Schedule Name + 0.0, !- PM Emission Factor + , !- PM Emission Factor Schedule Name + 0.00359, !- PM10 Emission Factor + , !- PM10 Emission Factor Schedule Name + 0.0, !- PM25 Emission Factor + , !- PM25 Emission Factor Schedule Name + 0.0, !- NH3 Emission Factor + , !- NH3 Emission Factor Schedule Name + 0.00261, !- NMVOC Emission Factor + , !- NMVOC Emission Factor Schedule Name + 1.11e-07, !- Hg Emission Factor + , !- Hg Emission Factor Schedule Name + 2.13e-07, !- Pb Emission Factor + , !- Pb Emission Factor Schedule Name + 0.0, !- Water Emission Factor + , !- Water Emission Factor Schedule Name + 0.0, !- Nuclear High Level Emission Factor + , !- Nuclear High Level Emission Factor Schedule Name + 0.0; !- Nuclear Low Level Emission Factor \ No newline at end of file diff --git a/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0.idf b/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0.idf new file mode 100644 index 000000000..76725478c --- /dev/null +++ b/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0.idf @@ -0,0 +1,4317 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +Building, + SF+CZ5AWH+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012, !- Name + 0, !- North Axis + Suburbs, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +Timestep, + 4; !- Number of Timesteps per Hour + +Site:Location, + Chicago Ohare Intl Ap_IL_USA Design_Conditions, !- Name + 41.98, !- Latitude + -87.92, !- Longitude + -6, !- Time Zone + 201; !- Elevation + +SizingPeriod:DesignDay, + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98934, !- Barometric Pressure + 4.9, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 33.3, !- Maximum DryBulb Temperature + 10.5, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.7, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98934, !- Barometric Pressure + 5.2, !- Wind Speed + 230, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance taub + 2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance taud + +RunPeriod, + annual, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- Begin Year + 31, !- End Month + UseWeatherFile, !- End Day of Month + Yes, !- End Year + Yes, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + Yes, !- Apply Weekend Holiday Rule + 1; !- Use Weather File Rain Indicators + +Site:WaterMainsTemperature, + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 9.925, !- Annual Average Outdoor Air Temperature + 28.7; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +ScheduleTypeLimits, + any number; !- Name + +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, + fraction, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + Continuous; !- Numeric Type + +Schedule:Day:Hourly, + OccupancyDay, !- Name + Fraction, !- Schedule Type Limits Name + 1, !- Hour 1 + 1, !- Hour 2 + 1, !- Hour 3 + 1, !- Hour 4 + 1, !- Hour 5 + 1, !- Hour 6 + 1, !- Hour 7 + 0.8831, !- Hour 8 + 0.40861, !- Hour 9 + 0.24189, !- Hour 10 + 0.24189, !- Hour 11 + 0.24189, !- Hour 12 + 0.24189, !- Hour 13 + 0.24189, !- Hour 14 + 0.24189, !- Hour 15 + 0.24189, !- Hour 16 + 0.29498, !- Hour 17 + 0.5531, !- Hour 18 + 0.89693, !- Hour 19 + 0.89693, !- Hour 20 + 0.89693, !- Hour 21 + 1, !- Hour 22 + 1, !- Hour 23 + 1; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.0625, !- Hour 1 + 0.0625, !- Hour 2 + 0.0625, !- Hour 3 + 0.0625, !- Hour 4 + 0.1875, !- Hour 5 + 0.390625, !- Hour 6 + 0.4375, !- Hour 7 + 0.390625, !- Hour 8 + 0.171875, !- Hour 9 + 0.1171875, !- Hour 10 + 0.1171875, !- Hour 11 + 0.1171875, !- Hour 12 + 0.1171875, !- Hour 13 + 0.1171875, !- Hour 14 + 0.1171875, !- Hour 15 + 0.203125, !- Hour 16 + 0.4375, !- Hour 17 + 0.609375, !- Hour 18 + 0.8203125, !- Hour 19 + 0.984375, !- Hour 20 + 1, !- Hour 21 + 0.6875, !- Hour 22 + 0.3828125, !- Hour 23 + 0.15625; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting_OccSensors, !- Name + Fraction, !- Schedule Type Limits Name + 0.065170403, !- Hour 1 + 0.065170403, !- Hour 2 + 0.065170403, !- Hour 3 + 0.065170403, !- Hour 4 + 0.195511208, !- Hour 5 + 0.407315016, !- Hour 6 + 0.456192818, !- Hour 7 + 0.407315016, !- Hour 8 + 0.179218607, !- Hour 9 + 0.122194505, !- Hour 10 + 0.122194505, !- Hour 11 + 0.122194505, !- Hour 12 + 0.122194505, !- Hour 13 + 0.122194505, !- Hour 14 + 0.122194505, !- Hour 15 + 0.211803808, !- Hour 16 + 0.456192818, !- Hour 17 + 0.635411425, !- Hour 18 + 0.855361533, !- Hour 19 + 0.947933128, !- Hour 20 + 0.947933128, !- Hour 21 + 0.716874428, !- Hour 22 + 0.399168715, !- Hour 23 + 0.162926006; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting_Garage_OccSensors, !- Name + Fraction, !- Schedule Type Limits Name + 0.048125, !- Hour 1 + 0.048125, !- Hour 2 + 0.048125, !- Hour 3 + 0.048125, !- Hour 4 + 0.144375, !- Hour 5 + 0.30078125, !- Hour 6 + 0.336875, !- Hour 7 + 0.30078125, !- Hour 8 + 0.13234375, !- Hour 9 + 0.090234375, !- Hour 10 + 0.090234375, !- Hour 11 + 0.090234375, !- Hour 12 + 0.090234375, !- Hour 13 + 0.090234375, !- Hour 14 + 0.090234375, !- Hour 15 + 0.15640625, !- Hour 16 + 0.336875, !- Hour 17 + 0.46921875, !- Hour 18 + 0.631640625, !- Hour 19 + 0.7, !- Hour 20 + 0.7, !- Hour 21 + 0.529375, !- Hour 22 + 0.294765625, !- Hour 23 + 0.1203125; !- Hour 24 + +Schedule:Day:Hourly, + ExteriorLightingDay, !- Name + Fraction, !- Schedule Type Limits Name + 1, !- Hour 1 + 1, !- Hour 2 + 1, !- Hour 3 + 1, !- Hour 4 + 1, !- Hour 5 + 1, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 1, !- Hour 21 + 1, !- Hour 22 + 1, !- Hour 23 + 1; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting, !- Name + Fraction, !- Schedule Type Limits Name + 0.06875, !- Hour 1 + 0.06875, !- Hour 2 + 0.06875, !- Hour 3 + 0.06875, !- Hour 4 + 0.20625, !- Hour 5 + 0.4296875, !- Hour 6 + 0.48125, !- Hour 7 + 0.4296875, !- Hour 8 + 0.1890625, !- Hour 9 + 0.12890625, !- Hour 10 + 0.12890625, !- Hour 11 + 0.12890625, !- Hour 12 + 0.12890625, !- Hour 13 + 0.12890625, !- Hour 14 + 0.12890625, !- Hour 15 + 0.2234375, !- Hour 16 + 0.48125, !- Hour 17 + 0.6703125, !- Hour 18 + 0.90234375, !- Hour 19 + 1, !- Hour 20 + 1, !- Hour 21 + 0.75625, !- Hour 22 + 0.42109375, !- Hour 23 + 0.171875; !- Hour 24 + +Schedule:Day:Hourly, + RefrigeratorDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.8, !- Hour 1 + 0.782696177062374, !- Hour 2 + 0.765593561368209, !- Hour 3 + 0.742857142857143, !- Hour 4 + 0.731388329979879, !- Hour 5 + 0.731388329979879, !- Hour 6 + 0.759959758551308, !- Hour 7 + 0.8, !- Hour 8 + 0.817102615694165, !- Hour 9 + 0.828571428571429, !- Hour 10 + 0.8, !- Hour 11 + 0.8, !- Hour 12 + 0.839839034205231, !- Hour 13 + 0.839839034205231, !- Hour 14 + 0.828571428571429, !- Hour 15 + 0.839839034205231, !- Hour 16 + 0.885714285714286, !- Hour 17 + 0.971428571428572, !- Hour 18 + 1, !- Hour 19 + 0.971428571428572, !- Hour 20 + 0.942857142857143, !- Hour 21 + 0.925553319919517, !- Hour 22 + 0.885714285714286, !- Hour 23 + 0.828571428571429; !- Hour 24 + +Schedule:Day:Hourly, + MiscPlugLoadDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.607490272373541, !- Hour 1 + 0.559338521400778, !- Hour 2 + 0.552853437094682, !- Hour 3 + 0.545071335927367, !- Hour 4 + 0.524481193255512, !- Hour 5 + 0.585278858625162, !- Hour 6 + 0.676232166018158, !- Hour 7 + 0.718547341115435, !- Hour 8 + 0.607490272373541, !- Hour 9 + 0.517023346303502, !- Hour 10 + 0.529182879377432, !- Hour 11 + 0.529345006485084, !- Hour 12 + 0.520428015564202, !- Hour 13 + 0.538424124513619, !- Hour 14 + 0.568741893644617, !- Hour 15 + 0.600356679636835, !- Hour 16 + 0.71011673151751, !- Hour 17 + 0.862678339818418, !- Hour 18 + 0.936608300907912, !- Hour 19 + 0.966763942931258, !- Hour 20 + 1, !- Hour 21 + 0.976653696498055, !- Hour 22 + 0.845168612191959, !- Hour 23 + 0.73443579766537; !- Hour 24 + +Schedule:Day:Hourly, + CookingRangeDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.04715848452508, !- Hour 1 + 0.04715848452508, !- Hour 2 + 0.0235458911419424, !- Hour 3 + 0.0235458911419424, !- Hour 4 + 0.04715848452508, !- Hour 5 + 0.0707043756670224, !- Hour 6 + 0.165088046958378, !- Hour 7 + 0.283017609391676, !- Hour 8 + 0.306563500533618, !- Hour 9 + 0.320771077908218, !- Hour 10 + 0.283017609391676, !- Hour 11 + 0.330176093916756, !- Hour 12 + 0.377334578441836, !- Hour 13 + 0.306563500533618, !- Hour 14 + 0.292422625400213, !- Hour 15 + 0.377334578441836, !- Hour 16 + 0.613193703308431, !- Hour 17 + 1, !- Hour 18 + 0.778348452508004, !- Hour 19 + 0.400947171824973, !- Hour 20 + 0.235859124866596, !- Hour 21 + 0.165088046958378, !- Hour 22 + 0.103721985058698, !- Hour 23 + 0.0707043756670224; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.116245943021998, !- Hour 1 + 0.0516480346195454, !- Hour 2 + 0.0386981608366388, !- Hour 3 + 0.0258240173097731, !- Hour 4 + 0.0258240173097731, !- Hour 5 + 0.0774720519293184, !- Hour 6 + 0.155019834114677, !- Hour 7 + 0.232567616300036, !- Hour 8 + 0.43938694554634, !- Hour 9 + 0.491034980165885, !- Hour 10 + 0.426437071763433, !- Hour 11 + 0.361839163360982, !- Hour 12 + 0.310115398485395, !- Hour 13 + 0.348889289578075, !- Hour 14 + 0.284291381175622, !- Hour 15 + 0.271341507392716, !- Hour 16 + 0.284291381175622, !- Hour 17 + 0.374713306887847, !- Hour 18 + 0.659080418319509, !- Hour 19 + 0.839999999999997, !- Hour 20 + 0.684904435629283, !- Hour 21 + 0.503984853948792, !- Hour 22 + 0.335939415795168, !- Hour 23 + 0.232567616300036; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.124549224666426, !- Hour 1 + 0.0553371799495132, !- Hour 2 + 0.0414623151821132, !- Hour 3 + 0.0276685899747566, !- Hour 4 + 0.0276685899747566, !- Hour 5 + 0.0830057699242698, !- Hour 6 + 0.166092679408583, !- Hour 7 + 0.249179588892895, !- Hour 8 + 0.470771727371078, !- Hour 9 + 0.526108907320591, !- Hour 10 + 0.456896862603679, !- Hour 11 + 0.387684817886765, !- Hour 12 + 0.332266498377209, !- Hour 13 + 0.373809953119365, !- Hour 14 + 0.304597908402452, !- Hour 15 + 0.290723043635052, !- Hour 16 + 0.304597908402452, !- Hour 17 + 0.401478543094122, !- Hour 18 + 0.706157591056618, !- Hour 19 + 0.9, !- Hour 20 + 0.733826181031374, !- Hour 21 + 0.539983772087991, !- Hour 22 + 0.359935088351965, !- Hour 23 + 0.249179588892895; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0799138323371462, !- Hour 1 + 0.063913953700052, !- Hour 2 + 0.0319141964258626, !- Hour 3 + 0.0319141964258626, !- Hour 4 + 0.063913953700052, !- Hour 5 + 0.0959137109742402, !- Hour 6 + 0.191827421948482, !- Hour 7 + 0.415740162019479, !- Hour 8 + 0.623653023453381, !- Hour 9 + 0.735652173913043, !- Hour 10 + 0.71965229527595, !- Hour 11 + 0.639652902090476, !- Hour 12 + 0.575653387542098, !- Hour 13 + 0.511739433842046, !- Hour 14 + 0.447739919293667, !- Hour 15 + 0.415740162019479, !- Hour 16 + 0.431740040656573, !- Hour 17 + 0.415740162019479, !- Hour 18 + 0.415740162019479, !- Hour 19 + 0.415740162019479, !- Hour 20 + 0.415740162019479, !- Hour 21 + 0.399740283382384, !- Hour 22 + 0.271826815133954, !- Hour 23 + 0.143913346885524; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0977669225401257, !- Hour 1 + 0.0781926029309142, !- Hour 2 + 0.0390439637124913, !- Hour 3 + 0.0390439637124913, !- Hour 4 + 0.0781926029309142, !- Hour 5 + 0.117341242149337, !- Hour 6 + 0.234682484298674, !- Hour 7 + 0.508618283321703, !- Hour 8 + 0.762979762735519, !- Hour 9 + 0.9, !- Hour 10 + 0.880425680390789, !- Hour 11 + 0.782554082344731, !- Hour 12 + 0.704256803907886, !- Hour 13 + 0.626064200976972, !- Hour 14 + 0.547766922540126, !- Hour 15 + 0.508618283321703, !- Hour 16 + 0.528192602930914, !- Hour 17 + 0.508618283321703, !- Hour 18 + 0.508618283321703, !- Hour 19 + 0.508618283321703, !- Hour 20 + 0.508618283321703, !- Hour 21 + 0.489043963712491, !- Hour 22 + 0.332554082344731, !- Hour 23 + 0.176064200976972; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + dhw_profile_day, !- Name + fraction, !- Schedule Type Limits Name + 0.006, !- Hour 1 + 0.003, !- Hour 2 + 0.001, !- Hour 3 + 0.001, !- Hour 4 + 0.003, !- Hour 5 + 0.021, !- Hour 6 + 0.075, !- Hour 7 + 0.079, !- Hour 8 + 0.076, !- Hour 9 + 0.067, !- Hour 10 + 0.061, !- Hour 11 + 0.05, !- Hour 12 + 0.042, !- Hour 13 + 0.038, !- Hour 14 + 0.033, !- Hour 15 + 0.038, !- Hour 16 + 0.043, !- Hour 17 + 0.058, !- Hour 18 + 0.068, !- Hour 19 + 0.065, !- Hour 20 + 0.06, !- Hour 21 + 0.047, !- Hour 22 + 0.041, !- Hour 23 + 0.024; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0996818663838815, !- Hour 1 + 0.0598091198303289, !- Hour 2 + 0.0398727465535526, !- Hour 3 + 0.0199363732767763, !- Hour 4 + 0.0398727465535526, !- Hour 5 + 0.0598091198303289, !- Hour 6 + 0.15949098621421, !- Hour 7 + 0.31898197242842, !- Hour 8 + 0.486427370202556, !- Hour 9 + 0.685791102970318, !- Hour 10 + 0.785472969354199, !- Hour 11 + 0.817391304347826, !- Hour 12 + 0.745600222800647, !- Hour 13 + 0.677836691410393, !- Hour 14 + 0.610073160020138, !- Hour 15 + 0.578154825026511, !- Hour 16 + 0.558218451749735, !- Hour 17 + 0.546236490032885, !- Hour 18 + 0.518345705196183, !- Hour 19 + 0.510391293636256, !- Hour 20 + 0.526300116756109, !- Hour 21 + 0.546236490032885, !- Hour 22 + 0.438600212089077, !- Hour 23 + 0.239236479321316; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.121951219512195, !- Hour 1 + 0.0731707317073171, !- Hour 2 + 0.0487804878048781, !- Hour 3 + 0.024390243902439, !- Hour 4 + 0.0487804878048781, !- Hour 5 + 0.0731707317073171, !- Hour 6 + 0.195121951219512, !- Hour 7 + 0.390243902439024, !- Hour 8 + 0.59509731460951, !- Hour 9 + 0.8389997536339, !- Hour 10 + 0.960950973146095, !- Hour 11 + 1, !- Hour 12 + 0.912170485341217, !- Hour 13 + 0.829268292682927, !- Hour 14 + 0.746366100024637, !- Hour 15 + 0.707317073170732, !- Hour 16 + 0.682926829268293, !- Hour 17 + 0.668268046316827, !- Hour 18 + 0.634146341463415, !- Hour 19 + 0.624414880512441, !- Hour 20 + 0.643877802414388, !- Hour 21 + 0.668268046316827, !- Hour 22 + 0.536585365853659, !- Hour 23 + 0.292682926829268; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + SinksWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.160587981154977, !- Hour 1 + 0.0770051124323654, !- Hour 2 + 0.057725481926472, !- Hour 3 + 0.057725481926472, !- Hour 4 + 0.0770051124323654, !- Hour 5 + 0.205611588865802, !- Hour 6 + 0.481877353056144, !- Hour 7 + 0.70676857242784, !- Hour 8 + 0.745327833439629, !- Hour 9 + 0.700304225728804, !- Hour 10 + 0.616834766597404, !- Hour 11 + 0.565346812187545, !- Hour 12 + 0.552531528380687, !- Hour 13 + 0.513972267368898, !- Hour 14 + 0.468948659658074, !- Hour 15 + 0.488228290163969, !- Hour 16 + 0.546067181681651, !- Hour 17 + 0.738863486740593, !- Hour 18 + 0.848076923076923, !- Hour 19 + 0.783887094451417, !- Hour 20 + 0.642465334211122, !- Hour 21 + 0.546067181681651, !- Hour 22 + 0.449782438743392, !- Hour 23 + 0.308360678503097; !- Hour 24 + +Schedule:Day:Hourly, + SinksWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.170419898368548, !- Hour 1 + 0.0817197111527146, !- Hour 2 + 0.0612596951056432, !- Hour 3 + 0.0612596951056432, !- Hour 4 + 0.0817197111527146, !- Hour 5 + 0.218200053490238, !- Hour 6 + 0.511380048141214, !- Hour 7 + 0.750040117678524, !- Hour 8 + 0.790960149772666, !- Hour 9 + 0.743179994650976, !- Hour 10 + 0.654600160470714, !- Hour 11 + 0.599959882321476, !- Hour 12 + 0.586359989301953, !- Hour 13 + 0.545439957207809, !- Hour 14 + 0.49765980208612, !- Hour 15 + 0.51811981813319, !- Hour 16 + 0.579499866274405, !- Hour 17 + 0.784100026745119, !- Hour 18 + 0.9, !- Hour 19 + 0.83188018186681, !- Hour 20 + 0.681799946509762, !- Hour 21 + 0.579499866274405, !- Hour 22 + 0.477320139074619, !- Hour 23 + 0.327239903717572; !- Hour 24 + +Schedule:Day:Hourly, + SinksVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + ShowersWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0762986902534445, !- Hour 1 + 0.034648749787379, !- Hour 2 + 0.0242898452117705, !- Hour 3 + 0.034648749787379, !- Hour 4 + 0.097159380847083, !- Hour 5 + 0.367919714237116, !- Hour 6 + 0.839999999999997, !- Hour 7 + 0.833070250042524, !- Hour 8 + 0.676900833475081, !- Hour 9 + 0.531090321483245, !- Hour 10 + 0.426929749957476, !- Hour 11 + 0.336700119067869, !- Hour 12 + 0.242969892838918, !- Hour 13 + 0.208249702330328, !- Hour 14 + 0.180459261779215, !- Hour 15 + 0.187389011736689, !- Hour 16 + 0.215179452287804, !- Hour 17 + 0.277690083347508, !- Hour 18 + 0.301979928559279, !- Hour 19 + 0.301979928559279, !- Hour 20 + 0.298479333219935, !- Hour 21 + 0.29154958326246, !- Hour 22 + 0.208249702330328, !- Hour 23 + 0.149239666609968; !- Hour 24 + +Schedule:Day:Hourly, + ShowersWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0817485967001191, !- Hour 1 + 0.0371236604864773, !- Hour 2 + 0.0260248341554686, !- Hour 3 + 0.0371236604864773, !- Hour 4 + 0.104099336621875, !- Hour 5 + 0.39419969382548, !- Hour 6 + 0.9, !- Hour 7 + 0.892575267902705, !- Hour 8 + 0.725250893009015, !- Hour 9 + 0.569025344446334, !- Hour 10 + 0.457424732097295, !- Hour 11 + 0.360750127572716, !- Hour 12 + 0.260324885184556, !- Hour 13 + 0.223124681068209, !- Hour 14 + 0.193349209049158, !- Hour 15 + 0.200773941146454, !- Hour 16 + 0.230549413165504, !- Hour 17 + 0.297525089300901, !- Hour 18 + 0.32354992345637, !- Hour 19 + 0.32354992345637, !- Hour 20 + 0.319799285592788, !- Hour 21 + 0.312374553495493, !- Hour 22 + 0.223124681068209, !- Hour 23 + 0.159899642796394; !- Hour 24 + +Schedule:Day:Hourly, + ShowersVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + BathsWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0494406967808042, !- Hour 1 + 0.0247203483904026, !- Hour 2 + 0.0247203483904026, !- Hour 3 + 0.0247203483904026, !- Hour 4 + 0.0494406967808042, !- Hour 5 + 0.123601741952011, !- Hour 6 + 0.296708223038169, !- Hour 7 + 0.370869268209376, !- Hour 8 + 0.42030996499018, !- Hour 9 + 0.370869268209376, !- Hour 10 + 0.296708223038169, !- Hour 11 + 0.22248313551362, !- Hour 12 + 0.197762787123218, !- Hour 13 + 0.148322090342413, !- Hour 14 + 0.148322090342413, !- Hour 15 + 0.148322090342413, !- Hour 16 + 0.247267526257364, !- Hour 17 + 0.296708223038169, !- Hour 18 + 0.494535052514731, !- Hour 19 + 0.642857142857143, !- Hour 20 + 0.642857142857143, !- Hour 21 + 0.494535052514731, !- Hour 22 + 0.42030996499018, !- Hour 23 + 0.247267526257364; !- Hour 24 + +Schedule:Day:Hourly, + BathsWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0692169754931261, !- Hour 1 + 0.0346084877465631, !- Hour 2 + 0.0346084877465631, !- Hour 3 + 0.0346084877465631, !- Hour 4 + 0.0692169754931261, !- Hour 5 + 0.173042438732815, !- Hour 6 + 0.415391512253437, !- Hour 7 + 0.519216975493126, !- Hour 8 + 0.588433950986252, !- Hour 9 + 0.519216975493126, !- Hour 10 + 0.415391512253437, !- Hour 11 + 0.311476389719068, !- Hour 12 + 0.276867901972505, !- Hour 13 + 0.207650926479379, !- Hour 14 + 0.207650926479379, !- Hour 15 + 0.207650926479379, !- Hour 16 + 0.346174536760311, !- Hour 17 + 0.415391512253437, !- Hour 18 + 0.692349073520621, !- Hour 19 + 0.9, !- Hour 20 + 0.9, !- Hour 21 + 0.692349073520621, !- Hour 22 + 0.588433950986252, !- Hour 23 + 0.346174536760311; !- Hour 24 + +Schedule:Day:Hourly, + BathsVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + DHWDistDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.142553149370226, !- Hour 1 + 0.0764866759550322, !- Hour 2 + 0.0516611840277747, !- Hour 3 + 0.0584039294664903, !- Hour 4 + 0.121469841058603, !- Hour 5 + 0.366180268451559, !- Hour 6 + 0.833258955739606, !- Hour 7 + 0.999999987228391, !- Hour 8 + 0.995483090581232, !- Hour 9 + 0.916474762598139, !- Hour 10 + 0.800898393293271, !- Hour 11 + 0.682564390940485, !- Hour 12 + 0.590066600109555, !- Hour 13 + 0.522371887032053, !- Hour 14 + 0.466005974303267, !- Hour 15 + 0.46573704253214, !- Hour 16 + 0.527514234916123, !- Hour 17 + 0.637905701335668, !- Hour 18 + 0.727588642310272, !- Hour 19 + 0.732551127624518, !- Hour 20 + 0.681468471942116, !- Hour 21 + 0.610804704600985, !- Hour 22 + 0.464292318119835, !- Hour 23 + 0.299867724445383; !- Hour 24 + +Schedule:Week:Compact, + RefrigeratorWeek, !- Name + For: AllDays, !- DayType List 1 + RefrigeratorDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + MiscPlugLoadWeek, !- Name + For: AllDays, !- DayType List 1 + MiscPlugLoadDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + CookingRangeWeek, !- Name + For: AllDays, !- DayType List 1 + CookingRangeDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + DishwasherWeek, !- Name + For: Weekdays, !- DayType List 1 + DishwasherWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + DishwasherVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + DishwasherWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + ClothesWasherWeek, !- Name + For: Weekdays, !- DayType List 1 + ClothesWasherWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ClothesWasherVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ClothesWasherWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + dhw_profile_week, !- Name + AllDays, !- DayType List 1 + dhw_profile_day; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + ClothesDryerWeek, !- Name + For: Weekdays, !- DayType List 1 + ClothesDryerWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ClothesDryerVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ClothesDryerWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + SinksWeek, !- Name + For: Weekdays, !- DayType List 1 + SinksWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + SinksVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + SinksWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + ShowersWeek, !- Name + For: Weekdays, !- DayType List 1 + ShowersWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ShowersVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ShowersWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + BathsWeek, !- Name + For: Weekdays, !- DayType List 1 + BathsWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + BathsVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + BathsWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + DHWDistWeek, !- Name + For: AllDays, !- DayType List 1 + DHWDistDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + OccupancyWeek, !- Name + AllDays, !- DayType List 1 + OccupancyDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek, !- Name + For: AllDays, !- DayType List 1 + LightingDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting_interior_controls, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting_OccSensors; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting_garage_controls, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting_Garage_OccSensors; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + ExteriorLightingProfileWeek, !- Name + For: AllDays, !- DayType List 1 + ExteriorLightingDay; !- ScheduleDay Name 1 + +Schedule:Year, + Occupancy, !- Name + Fraction, !- Schedule Type Limits Name + OccupancyWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLighting, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE_OS, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting_interior_controls, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE_VS, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting_garage_controls, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ExteriorLighting, !- Name + Fraction, !- Schedule Type Limits Name + ExteriorLightingProfileWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Refrigerator, !- Name + Fraction, !- Schedule Type Limits Name + RefrigeratorWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + MiscPlugLoad, !- Name + Fraction, !- Schedule Type Limits Name + MiscPlugLoadWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + CookingRange, !- Name + Fraction, !- Schedule Type Limits Name + CookingRangeWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + dhw_sch, !- Name + fraction, !- Schedule Type Limits Name + dhw_profile_week, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Dishwasher, !- Name + Fraction, !- Schedule Type Limits Name + DishwasherWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ClothesWasher, !- Name + Fraction, !- Schedule Type Limits Name + ClothesWasherWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ClothesDryer, !- Name + Fraction, !- Schedule Type Limits Name + ClothesDryerWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Sinks, !- Name + Fraction, !- Schedule Type Limits Name + SinksWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Showers, !- Name + Fraction, !- Schedule Type Limits Name + ShowersWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Baths, !- Name + Fraction, !- Schedule Type Limits Name + BathsWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + DHWDist, !- Name + Fraction, !- Schedule Type Limits Name + DHWDistWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Compact, + BA_shower_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.00205406666666667, !- Field 4 + Until: 2:00, !- Field 5 + 0.000933666666666667, !- Field 6 + Until: 3:00, !- Field 7 + 0.0005602, !- Field 8 + Until: 4:00, !- Field 9 + 0.000933666666666667, !- Field 10 + Until: 5:00, !- Field 11 + 0.00261426666666667, !- Field 12 + Until: 6:00, !- Field 13 + 0.00971013333333333, !- Field 14 + Until: 7:00, !- Field 15 + 0.0220345333333333, !- Field 16 + Until: 8:00, !- Field 17 + 0.0218478, !- Field 18 + Until: 9:00, !- Field 19 + 0.0177396666666667, !- Field 20 + Until: 10:00, !- Field 21 + 0.0138182666666667, !- Field 22 + Until: 11:00, !- Field 23 + 0.011204, !- Field 24 + Until: 12:00, !- Field 25 + 0.00877646666666667, !- Field 26 + Until: 13:00, !- Field 27 + 0.00634893333333333, !- Field 28 + Until: 14:00, !- Field 29 + 0.00541526666666667, !- Field 30 + Until: 15:00, !- Field 31 + 0.00485506666666667, !- Field 32 + Until: 16:00, !- Field 33 + 0.00466833333333333, !- Field 34 + Until: 17:00, !- Field 35 + 0.005602, !- Field 36 + Until: 18:00, !- Field 37 + 0.0072826, !- Field 38 + Until: 19:00, !- Field 39 + 0.0078428, !- Field 40 + Until: 20:00, !- Field 41 + 0.0078428, !- Field 42 + Until: 21:00, !- Field 43 + 0.0078428, !- Field 44 + Until: 22:00, !- Field 45 + 0.00765606666666667, !- Field 46 + Until: 23:00, !- Field 47 + 0.00541526666666667, !- Field 48 + Until: 24:00, !- Field 49 + 0.0039214; !- Field 50 + +Schedule:Compact, + BA_bath_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.000191181818181818, !- Field 4 + Until: 2:00, !- Field 5 + 9.55909090909091e-05, !- Field 6 + Until: 3:00, !- Field 7 + 9.55909090909091e-05, !- Field 8 + Until: 4:00, !- Field 9 + 9.55909090909091e-05, !- Field 10 + Until: 5:00, !- Field 11 + 0.000191181818181818, !- Field 12 + Until: 6:00, !- Field 13 + 0.000454056818181818, !- Field 14 + Until: 7:00, !- Field 15 + 0.00109929545454545, !- Field 16 + Until: 8:00, !- Field 17 + 0.00138606818181818, !- Field 18 + Until: 9:00, !- Field 19 + 0.00157725, !- Field 20 + Until: 10:00, !- Field 21 + 0.00138606818181818, !- Field 22 + Until: 11:00, !- Field 23 + 0.00109929545454545, !- Field 24 + Until: 12:00, !- Field 25 + 0.000836420454545455, !- Field 26 + Until: 13:00, !- Field 27 + 0.000740829545454545, !- Field 28 + Until: 14:00, !- Field 29 + 0.000549647727272727, !- Field 30 + Until: 15:00, !- Field 31 + 0.000549647727272727, !- Field 32 + Until: 16:00, !- Field 33 + 0.000549647727272727, !- Field 34 + Until: 17:00, !- Field 35 + 0.000932011363636364, !- Field 36 + Until: 18:00, !- Field 37 + 0.00109929545454545, !- Field 38 + Until: 19:00, !- Field 39 + 0.001840125, !- Field 40 + Until: 20:00, !- Field 41 + 0.00238977272727273, !- Field 42 + Until: 21:00, !- Field 43 + 0.00238977272727273, !- Field 44 + Until: 22:00, !- Field 45 + 0.001840125, !- Field 46 + Until: 23:00, !- Field 47 + 0.00157725, !- Field 48 + Until: 24:00, !- Field 49 + 0.000932011363636364; !- Field 50 + +Schedule:Compact, + BA_sink_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.00460157894736842, !- Field 4 + Until: 2:00, !- Field 5 + 0.00230078947368421, !- Field 6 + Until: 3:00, !- Field 7 + 0.00164342105263158, !- Field 8 + Until: 4:00, !- Field 9 + 0.00164342105263158, !- Field 10 + Until: 5:00, !- Field 11 + 0.00230078947368421, !- Field 12 + Until: 6:00, !- Field 13 + 0.00591631578947368, !- Field 14 + Until: 7:00, !- Field 15 + 0.0138047368421053, !- Field 16 + Until: 8:00, !- Field 17 + 0.0203784210526316, !- Field 18 + Until: 9:00, !- Field 19 + 0.0216931578947368, !- Field 20 + Until: 10:00, !- Field 21 + 0.0203784210526316, !- Field 22 + Until: 11:00, !- Field 23 + 0.017748947368421, !- Field 24 + Until: 12:00, !- Field 25 + 0.0164342105263158, !- Field 26 + Until: 13:00, !- Field 27 + 0.0161055263157895, !- Field 28 + Until: 14:00, !- Field 29 + 0.0147907894736842, !- Field 30 + Until: 15:00, !- Field 31 + 0.0141334210526316, !- Field 32 + Until: 16:00, !- Field 33 + 0.0134760526315789, !- Field 34 + Until: 17:00, !- Field 35 + 0.0157768421052632, !- Field 36 + Until: 18:00, !- Field 37 + 0.0213644736842105, !- Field 38 + Until: 19:00, !- Field 39 + 0.0246513157894737, !- Field 40 + Until: 20:00, !- Field 41 + 0.0226792105263158, !- Field 42 + Until: 21:00, !- Field 43 + 0.018735, !- Field 44 + Until: 22:00, !- Field 45 + 0.0157768421052632, !- Field 46 + Until: 23:00, !- Field 47 + 0.0131473684210526, !- Field 48 + Until: 24:00, !- Field 49 + 0.00887447368421052; !- Field 50 + +Schedule:Compact, + activity_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 117.28; !- Field 4 + +Schedule:Compact, + inf_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + zone_control_type, !- Name + control_type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 4; !- Field 4 + +Schedule:Compact, + shading_2012iecc, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + shading_2009iecc, !- Name + any number, !- Schedule Type Limits Name + Through: 5/30, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 0.85, !- Field 4 + Through: 8/31, !- Field 5 + For: AllDays, !- Field 6 + Until 24:00, !- Field 7 + 0.7, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, !- Field 11 + 0.85; !- Field 12 + +Schedule:Compact, + dhw_setpt, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 48; !- Field 4 + +Schedule:Compact, + dhw_setpt_hpwh, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 44; !- Field 4 + +Schedule:Compact, + Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 12; !- Field 4 + +Schedule:Compact, + always_avail, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + always_off, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + heating_sch_HRef, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 20; !- Field 4 + +Schedule:Compact, + cooling_sch_HRef, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 25.55; !- Field 4 + +Schedule:Compact, + heating_sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.22; !- Field 4 + +Schedule:Compact, + cooling_sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 23.88; !- Field 4 + +Schedule:Compact, + fan_cycle, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Constant, + DWWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + CWWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + SinkSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.687777777777778; !- Hourly Value + +Schedule:Constant, + SinkLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.312222222222222; !- Hourly Value + +Schedule:Constant, + ShowerSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.51280276816609; !- Hourly Value + +Schedule:Constant, + ShowerLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.48719723183391; !- Hourly Value + +Schedule:Constant, + BathSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + BathLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + SSBWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 40.5555555555556; !- Hourly Value + +Schedule:Constant, + WaterHeaterSP1Schedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + WaterHeaterSP2Schedule, !- Name + Temperature, !- Schedule Type Limits Name + 40.5555555555556; !- Hourly Value + +Schedule:Constant, + DHWSupplySetpoint, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + boiler_setpt, !- Name + Temperature, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + Compressor Setpoint, !- Name + Temperature, !- Schedule Type Limits Name + 50; !- Hourly Value + +Schedule:Constant, + DOAShightemp, !- Name + Temperature, !- Schedule Type Limits Name + 200; !- Hourly Value + +Schedule:Constant, + DOASlowtemp, !- Name + Temperature, !- Schedule Type Limits Name + -60; !- Hourly Value + +Material, + sheathing_consol_layer, !- Name + Rough, !- Roughness + 0.0127, !- Thickness + 0.0940184, !- Conductivity + 685.008, !- Density + 1172.332; !- Specific Heat + +Material, + ceil_consol_layer, !- Name + Rough, !- Roughness + 0.400206234336168, !- Thickness + 0.0617176, !- Conductivity + 41.9286, !- Density + 776.25126; !- Specific Heat + +Material, + floor_consol_layer, !- Name + Rough, !- Roughness + 0.23495, !- Thickness + 0.0515515, !- Conductivity + 55.074, !- Density + 916.9311; !- Specific Heat + +Material, + bsmtwall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.0601465789473684, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + crawlwall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.0601465789473684, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + wall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.057165, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + Very High Reflectivity Surface, !- Name + Smooth, !- Roughness + 0.0005, !- Thickness + 237, !- Conductivity + 2702, !- Density + 903, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.05, !- Solar Absorptance + 0.05; !- Visible Absorptance + +Material, + GypsumBoard-5/16in, !- Name + Rough, !- Roughness + 0.00793953, !- Thickness + 0.15862, !- Conductivity + 640, !- Density + 1129.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.1; !- Visible Absorptance + +Material, + CopperPipe, !- Name + MediumRough, !- Roughness + 0.0190500386169072, !- Thickness + 401, !- Conductivity + 2243, !- Density + 837, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + +Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500; !- Specific Heat + +Material, + Concrete_4in, !- Name + Rough, !- Roughness + 0.1014984, !- Thickness + 1.312098, !- Conductivity + 2242.8, !- Density + 465.2; !- Specific Heat + +Material, + Asphalt_shingle, !- Name + MediumRough, !- Roughness + 0.006339853, !- Thickness + 0.08186, !- Conductivity + 1121.2917044623, !- Density + 1255.20000949809, !- Specific Heat + , !- Thermal Absorptance + 0.75; !- Solar Absorptance + +Material, + Wood_shingle, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.11388, !- Conductivity + 426.090847695673, !- Density + 1631.76001234752; !- Specific Heat + +Material, + Slate_shingle, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 1.44219, !- Conductivity + 1601.845292089, !- Density + 1255.20000949809; !- Specific Heat + +Material, + cement_stucco, !- Name + MediumSmooth, !- Roughness + 0.01905, !- Thickness + 0.721, !- Conductivity + 1865.58, !- Density + 878.640006648665; !- Specific Heat + +Material, + syn_stucco, !- Name + MediumSmooth, !- Roughness + 0.003048, !- Thickness + 0.0865, !- Conductivity + 400, !- Density + 878.640006648665; !- Specific Heat + +Material, + Drywall_1/2in, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.16009, !- Conductivity + 800.922646044499, !- Density + 1087.84000823168; !- Specific Heat + +Material, + OSB_5/8in, !- Name + MediumSmooth, !- Roughness + 0.015875032180756, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149; !- Specific Heat + +Material, + OSB_7/16in, !- Name + MediumSmooth, !- Roughness + 0.0111125, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149; !- Specific Heat + +Material, + Blown_R30, !- Name + MediumRough, !- Roughness + 0.212598430964684, !- Thickness + 0.04119, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062; !- Specific Heat + +Material, + Blown_R30_top, !- Name + MediumRough, !- Roughness + 0.117348237880148, !- Thickness + 0.04119, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Plywood_3/4in, !- Name + Rough, !- Roughness + 0.01905, !- Thickness + 0.1154577, !- Conductivity + 544.68, !- Density + 674.54, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Batt_R19, !- Name + MediumRough, !- Roughness + 0.0254000514892096, !- Thickness + 0.00347522, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Lumber_2x4, !- Name + Rough, !- Roughness + 0.0890016, !- Thickness + 0.1154577, !- Conductivity + 512.64, !- Density + 767.58, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Carpet_n_pad, !- Name + MediumSmooth, !- Roughness + 0.0254000514892096, !- Thickness + 0.0601314018580031, !- Conductivity + 32.03690584178, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Batt_R13, !- Name + MediumRough, !- Roughness + 0.0889, !- Thickness + 0.03876, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + OSB_1/2in, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + soil_12in, !- Name + Rough, !- Roughness + 0.3048, !- Thickness + 1.731, !- Conductivity + 1842.3, !- Density + 232.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + door_const, !- Name + Smooth, !- Roughness + 0.0396277251435213, !- Thickness + 0.0720096, !- Conductivity + 512.64, !- Density + 767.58; !- Specific Heat + +Material, + Gyp_board_1/2in, !- Name + Rough, !- Roughness + 0.01271016, !- Thickness + 0.15862, !- Conductivity + 640, !- Density + 1129.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.1; !- Visible Absorptance + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Pipe Insulation, !- Name + VeryRough, !- Roughness + 0.0127032520325203, !- Thickness + 0.03317175, !- Conductivity + 91, !- Density + 836, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material:NoMass, + Manf_wall_airgap, !- Name + Smooth, !- Roughness + 0.12; !- Thermal Resistance + +Material:NoMass, + Bldg_paper_felt, !- Name + Smooth, !- Roughness + 0.0105666113069662; !- Thermal Resistance + +Material:NoMass, + R_high, !- Name + MediumRough, !- Roughness + 177; !- Thermal Resistance + +Material:AirGap, + Air_4_in_vert, !- Name + 0.158499169604493; !- Thermal Resistance + +Material:AirGap, + 3/4in_air_space, !- Name + 0.08513; !- Thermal Resistance + +Material:AirGap, + 3/4in_Reflective_air_space, !- Name + 0.246554; !- Thermal Resistance + +WindowMaterial:SimpleGlazingSystem, + Glass, !- Name + 1.817152, !- UFactor + 0.3344, !- Solar Heat Gain Coefficient + 0.88; !- Visible Transmittance + +WindowMaterial:Glazing, + Clear Acrylic Plastic, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.92, !- Solar Transmittance at Normal Incidence + 0.05, !- Front Side Solar Reflectance at Normal Incidence + 0.05, !- Back Side Solar Reflectance at Normal Incidence + 0.92, !- Visible Transmittance at Normal Incidence + 0.05, !- Front Side Visible Reflectance at Normal Incidence + 0.05, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Diffusing Acrylic Plastic, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0022, !- Thickness + 0.9, !- Solar Transmittance at Normal Incidence + 0.08, !- Front Side Solar Reflectance at Normal Incidence + 0.08, !- Back Side Solar Reflectance at Normal Incidence + 0.9, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Blind, + int_blind, !- Name + Horizontal, !- Slat Orientation + 0.025, !- Slat Width + 0.01875, !- Slat Separation + 0.001, !- Slat Thickness + 45, !- Slat Angle + 221, !- Slat Conductivity + 0, !- Slat Beam Solar Transmittance + 0.5, !- Front Side Slat Beam Solar Reflectance + 0.5, !- Back Side Slat Beam Solar Reflectance + 0, !- Slat Diffuse Solar Transmittance + 0.5, !- Front Side Slat Diffuse Solar Reflectance + 0.5, !- Back Side Slat Diffuse Solar Reflectance + 0, !- Slat Beam Visible Transmittance + 0.5, !- Front Side Slat Beam Visible Reflectance + 0.5, !- Back Side Slat Beam Visible Reflectance + 0, !- Slat Diffuse Visible Transmittance + 0.5, !- Front Side Slat Diffuse Visible Reflectance + 0.5, !- Back Side Slat Diffuse Visible Reflectance + 0, !- Slat Infrared Hemispherical Transmittance + 0.9, !- Front Side Slat Infrared Hemispherical Emissivity + 0.9, !- Back Side Slat Infrared Hemispherical Emissivity + 0.05, !- Blind to Glass Distance + 0.5, !- Blind Top Opening Multiplier + 0.5, !- Blind Bottom Opening Multiplier + 0.5, !- Blind Left Side Opening Multiplier + 0.5, !- Blind Right Side Opening Multiplier + , !- Minimum Slat Angle + ; !- Maximum Slat Angle + +Construction, + Exterior Wall, !- Name + syn_stucco, !- Outside Layer + sheathing_consol_layer, !- Layer 2 + OSB_7/16in, !- Layer 3 + wall_consol_layer, !- Layer 4 + Drywall_1/2in; !- Layer 5 + +Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + +Construction, + ceiling-floor-layer, !- Name + Lumber_2x4; !- Outside Layer + +Construction, + Exterior Floor, !- Name + floor_consol_layer, !- Outside Layer + Plywood_3/4in, !- Layer 2 + Carpet_n_pad; !- Layer 3 + +Construction, + Interior Floor, !- Name + Plywood_3/4in, !- Outside Layer + Carpet_n_pad; !- Layer 2 + +Construction, + Interior Ceiling, !- Name + ceil_consol_layer, !- Outside Layer + Drywall_1/2in; !- Layer 2 + +Construction, + attic floor, !- Name + Drywall_1/2in, !- Outside Layer + ceil_consol_layer; !- Layer 2 + +Construction, + fndn_roof, !- Name + Carpet_n_pad, !- Outside Layer + Plywood_3/4in, !- Layer 2 + ceil_consol_layer; !- Layer 3 + +Construction, + interiorwall, !- Name + Drywall_1/2in, !- Outside Layer + OSB_5/8in, !- Layer 2 + Drywall_1/2in; !- Layer 3 + +Construction, + Interior Wall, !- Name + Drywall_1/2in, !- Outside Layer + Air_4_in_vert, !- Layer 2 + Drywall_1/2in; !- Layer 3 + +Construction, + Exterior Roof, !- Name + Asphalt_shingle, !- Outside Layer + OSB_1/2in; !- Layer 2 + +Construction, + Exterior Window, !- Name + Glass; !- Outside Layer + +Construction, + Interior Window, !- Name + Glass; !- Outside Layer + +Construction, + Exterior Door, !- Name + door_const; !- Outside Layer + +Construction, + Interior Door, !- Name + door_const; !- Outside Layer + +Construction, + Gable_end, !- Name + cement_stucco, !- Outside Layer + Bldg_paper_felt, !- Layer 2 + OSB_5/8in, !- Layer 3 + Air_4_in_vert, !- Layer 4 + Drywall_1/2in; !- Layer 5 + +Construction, + crawl_floor, !- Name + R_high, !- Outside Layer + soil_12in; !- Layer 2 + +Construction, + window_w_blinds, !- Name + Glass, !- Outside Layer + int_blind; !- Layer 2 + +Construction, + Insulated Pipe, !- Name + Pipe Insulation, !- Outside Layer + CopperPipe; !- Layer 2 + +Construction, + Plain Pipe, !- Name + CopperPipe; !- Outside Layer + +Construction, + TDD Pipe, !- Name + Very High Reflectivity Surface; !- Outside Layer + +Construction, + TDD Dome, !- Name + Clear Acrylic Plastic; !- Outside Layer + +Construction, + TDD Diffuser, !- Name + Diffusing Acrylic Plastic; !- Outside Layer + +GlobalGeometryRules, + LowerLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative; !- Coordinate System + +Zone, + living_unit1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + , !- Type + 1; !- Multiplier + +Zone, + attic_unit1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + , !- Type + 1; !- Multiplier + +BuildingSurface:Detailed, + Inter zone floor 1, !- Name + Floor, !- Surface Type + Interior Floor, !- Construction Name + living_unit1, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.59246341463415, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 2.59246341463415, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 2.59246341463415, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.59246341463415; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + ceiling_unit1, !- Name + Ceiling, !- Surface Type + Interior Ceiling, !- Construction Name + living_unit1, !- Zone Name + Zone, !- Outside Boundary Condition + attic_unit1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 5.18392682926829, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 5.18392682926829, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 5.18392682926829, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 9.09981820971244, !- Vertex 4 Ycoordinate + 5.18392682926829; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Roof_front_unit1, !- Name + Roof, !- Surface Type + Exterior Roof, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 5.18392682926829, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 5.18392682926829, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 4.54990910485622, !- Vertex 3 Ycoordinate + 6.6995631975537, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 4.54990910485622, !- Vertex 4 Ycoordinate + 6.6995631975537; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Roof_back_unit1, !- Name + Roof, !- Surface Type + Exterior Roof, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 5.18392682926829, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 5.18392682926829, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 4.54990910485622, !- Vertex 3 Ycoordinate + 6.6995631975537, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 4.54990910485622, !- Vertex 4 Ycoordinate + 6.6995631975537; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Roof_right_unit1, !- Name + Wall, !- Surface Type + Gable_end, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 3, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 5.18392682926829, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 5.18392682926829, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 4.54990910485622, !- Vertex 3 Ycoordinate + 6.6995631975537; !- Vertex 3 Zcoordinate + +BuildingSurface:Detailed, + Roof_left_unit1, !- Name + Wall, !- Surface Type + Gable_end, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 3, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 5.18392682926829, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 5.18392682926829, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 4.54990910485622, !- Vertex 3 Ycoordinate + 6.6995631975537; !- Vertex 3 Zcoordinate + +BuildingSurface:Detailed, + Wall_ldf_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0.001, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.001, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.59246341463415, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.59246341463415; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_sdr_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0.001, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 0.001, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 2.59246341463415, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 2.59246341463415; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_ldb_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 0.001, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 0.001, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 2.59246341463415, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 9.09981820971244, !- Vertex 4 Ycoordinate + 2.59246341463415; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_sdl_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 0.001, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 0.001, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 2.59246341463415, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 9.09981820971244, !- Vertex 4 Ycoordinate + 2.59246341463415; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_ldf_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.59246341463415, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.59246341463415, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 5.18392682926829, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 5.18392682926829; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_sdr_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 2.59246341463415, !- Vertex 1 Zcoordinate + 12.1330909462833, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 2.59246341463415, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 5.18392682926829, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 5.18392682926829; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_ldb_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 2.59246341463415, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 2.59246341463415, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 5.18392682926829, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 9.09981820971244, !- Vertex 4 Ycoordinate + 5.18392682926829; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Wall_sdl_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 9.09981820971244, !- Vertex 1 Ycoordinate + 2.59246341463415, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 0, !- Vertex 2 Ycoordinate + 2.59246341463415, !- Vertex 2 Zcoordinate + 0, !- Vertex 3 Xcoordinate + 0, !- Vertex 3 Ycoordinate + 5.18392682926829, !- Vertex 3 Zcoordinate + 0, !- Vertex 4 Xcoordinate + 9.09981820971244, !- Vertex 4 Ycoordinate + 5.18392682926829; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Floor_unit1, !- Name + Floor, !- Surface Type + Interior Floor, !- Construction Name + living_unit1, !- Zone Name + GroundSlabPreprocessorAverage, !- Outside Boundary Condition + surfPropOthSdCoefSlabAverage, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 Xcoordinate + 0, !- Vertex 1 Ycoordinate + 0.001, !- Vertex 1 Zcoordinate + 0, !- Vertex 2 Xcoordinate + 9.09981820971244, !- Vertex 2 Ycoordinate + 0.001, !- Vertex 2 Zcoordinate + 12.1330909462833, !- Vertex 3 Xcoordinate + 9.09981820971244, !- Vertex 3 Ycoordinate + 0.001, !- Vertex 3 Zcoordinate + 12.1330909462833, !- Vertex 4 Xcoordinate + 0, !- Vertex 4 Ycoordinate + 0.001; !- Vertex 4 Zcoordinate + +Door, + Door_ldb_unit1, !- Name + Exterior Door, !- Construction Name + Wall_ldb_1.unit1, !- Building Surface Name + 1, !- Multiplier + 0.5, !- Starting X Coordinate + 0, !- Starting Z Coordinate + 1.74190122145513, !- Length + 2.13414634146341; !- Height + +InternalMass, + Internalmass_unit1, !- Name + InteriorFurnishings, !- Construction Name + living_unit1, !- Zone or ZoneList Name + 9.89591078066915; !- Surface Area + +Shading:Overhang, + Overhang_sdr_1.unit1, !- Name + Window_sdr_1.unit1, !- Window or Door Name + 0, !- Height above Window or Door + 90, !- Tilt Angle from WindowDoor + 0, !- Left extension from WindowDoor Width + 0, !- Right extension from WindowDoor Width + 0.0152439024390244; !- Depth + +Shading:Overhang, + Overhang_sdr_2.unit1, !- Name + Window_sdr_2.unit1, !- Window or Door Name + 0, !- Height above Window or Door + 90, !- Tilt Angle from WindowDoor + 0, !- Left extension from WindowDoor Width + 0, !- Right extension from WindowDoor Width + 0.0152439024390244; !- Depth + +GroundHeatTransfer:Control, + gtp_control, !- Name + no, !- Run Basement Preprocessor + yes; !- Run Slab Preprocessor + +GroundHeatTransfer:Slab:Materials, + 2, !- NMAT Number of materials + 0.16, !- ALBEDO Surface Albedo No Snow + 0.4, !- ALBEDO Surface Albedo Snow + 0.9, !- EPSLW Surface Emissivity No Snow + 0.9, !- EPSLW Surface Emissivity Snow + 0.75, !- Z0 Surface Roughness No Snow + 0.05, !- Z0 Surface Roughness Snow + 6, !- HIN Indoor HConv Downward Flow + 9; !- HIN Indoor HConv Upward + +GroundHeatTransfer:Slab:MatlProps, + 2300, !- RHO Slab Material density + 1200, !- RHO Soil Density + 650, !- CP Slab CP + 1200, !- CP Soil CP + 0.9, !- TCON Slab k + 1; !- TCON Soil k + +GroundHeatTransfer:Slab:BoundConds, + FALSE, !- EVTR Is surface evapotranspiration modeled + TRUE, !- FIXBC is the lower boundary at a fixed temperature + 10, !- TDEEPin + FALSE; !- USRHflag Is the ground surface h specified by the user + +GroundHeatTransfer:Slab:BldgProps, + 10, !- IYRS Number of years to iterate + 0, !- Shape Slab shape + 4, !- HBLDG Building height + 22.22, !- TIN1 January Indoor Average Temperature Setpoint + 22.22, !- TIN2 February Indoor Average Temperature Setpoint + 22.22, !- TIN3 March Indoor Average Temperature Setpoint + 22.22, !- TIN4 April Indoor Average Temperature Setpoint + 22.22, !- TIN5 May Indoor Average Temperature Setpoint + 23.88, !- TIN6 June Indoor Average Temperature Setpoint + 23.88, !- TIN7 July Indoor Average Temperature Setpoint + 23.88, !- TIN8 August Indoor Average Temperature Setpoint + 23.88, !- TIN9 September Indoor Average Temperature Setpoint + 22.22, !- TIN10 October Indoor Average Temperature Setpoint + 22.22, !- TIN11 November Indoor Average Temperature Setpoint + 22.22, !- TIN12 December Indoor Average Temperature Setpoint + 0, !- TINAmp Daily Indoor sine wave variation amplitude + 0.1; !- ConvTol Convergence Tolerance + +GroundHeatTransfer:Slab:Insulation, + 0, !- RINS R value of under slab insulation + 0, !- DINS Width of strip of under slab insulation + 1.76099742894375, !- RVINS R value of vertical insulation + 1.5, !- ZVINS Depth of vertical insulation + 1; !- IVINS Flag Is there vertical insulation + +GroundHeatTransfer:Slab:EquivalentSlab, + 2.59947574997227, !- APRatio The area to perimeter ratio for this slab + 0.1, !- SLABDEPTH Thickness of slab on grade + 15, !- CLEARANCE Distance from edge of slab to domain edge + 15; !- ZCLEARANCE Distance from bottom of slab to domain bottom + +GroundHeatTransfer:Basement:SimParameters, + 0.1, !- F Multiplier for the ADI solution + 15; !- IYRS Maximum number of yearly iterations + +GroundHeatTransfer:Basement:MatlProps, + 6, !- NMAT Number of materials in this domain + 2243, !- Density for Foundation Wall + 2243, !- density for Floor Slab + 311, !- density for Ceiling + 1500, !- density for Soil + 2000, !- density for Gravel + 449, !- density for Wood + 880, !- Specific heat for foundation wall + 880, !- Specific heat for floor slab + 1530, !- Specific heat for ceiling + 840, !- Specific heat for soil + 720, !- Specific heat for gravel + 1530, !- Specific heat for wood + 1.4, !- Thermal conductivity for foundation wall + 1.4, !- Thermal conductivity for floor slab + 0.09, !- Thermal conductivity for ceiling + 1.1, !- thermal conductivity for soil + 1.9, !- thermal conductivity for gravel + 0.12; !- thermal conductivity for wood + +GroundHeatTransfer:Basement:Insulation, + 3.34589511499313, !- REXT R Value of any exterior insulation + True; !- INSFULL Flag Is the wall fully insulated + +GroundHeatTransfer:Basement:SurfaceProps, + 0.16, !- ALBEDO Surface albedo for No snow conditions + 0.4, !- ALBEDO Surface albedo for snow conditions + 0.94, !- EPSLN Surface emissivity No Snow + 0.86, !- EPSLN Surface emissivity with Snow + 6, !- VEGHT Surface roughness No snow conditions + 0.25, !- VEGHT Surface roughness Snow conditions + False; !- PET Flag Potential evapotranspiration on + +GroundHeatTransfer:Basement:BldgData, + 0.200000006162114, !- DWALL Wall thickness + 0.243828108701145, !- DSLAB Floor slab thickness + 0.3, !- DGRAVXY Width of gravel pit beside basement wall + 0.2, !- DGRAVZN Gravel depth extending above the floor slab + 0.1; !- DGRAVZP Gravel depth below the floor slab + +GroundHeatTransfer:Basement:Interior, + True, !- COND Flag Is the basement conditioned + 0.92, !- HIN Downward convection only heat transfer coefficient + 4.04, !- HIN Upward convection only heat transfer coefficient + 3.08, !- HIN Horizontal convection only heat transfer coefficient + 6.13, !- HIN Downward combined convection and radiation heat transfer coefficient + 9.26, !- HIN Upward combined convection and radiation heat transfer coefficient + 8.29; !- HIN Horizontal combined convection and radiation heat transfer coefficient + +GroundHeatTransfer:Basement:ComBldg, + 21, !- January average temperature + 21, !- February average temperature + 21, !- March average temperature + 21, !- April average temperature + 24, !- May average temperature + 24, !- June average temperature + 24, !- July average temperature + 24, !- August average temperature + 24, !- September average temperature + 24, !- October average temperature + 21, !- November average temperature + 21, !- December average temperature + 21; !- Daily variation sine wave amplitude + +GroundHeatTransfer:Basement:EquivSlab, + 2.59947574997227, !- APRatio The area to perimeter ratio for this slab + True; !- EquivSizing Flag + +GroundHeatTransfer:Basement:EquivAutoGrid, + 15, !- CLEARANCE Distance from outside of wall to edge of 3D ground domain + 0.1, !- SlabDepth Thickness of the floor slab + 1.21914054350572; !- BaseDepth Depth of the basement wall below grade + +People, + people_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + Occupancy, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 3, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0, !- Fraction Radiant + autocalculate, !- Sensible Heat Fraction + activity_sch, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged; !- Mean Radiant Temperature Calculation Type + +Lights, + Living Hardwired Lighting1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLightingHE, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 1.26962207647227, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Fraction Replaceable + +Lights, + Living Plug-in Lighting1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLightingHE, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 0.478467682251396, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Fraction Replaceable + +ElectricEquipment, + dishwasher1, !- Name + living_unit1, !- Zone or ZoneList Name + DishWasher, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 65.698787492023, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.15, !- Fraction Latent + 0.6, !- Fraction Radiant + 0.25, !- Fraction Lost + dishwasher; !- EndUse Subcategory + +ElectricEquipment, + refrigerator1, !- Name + living_unit1, !- Zone or ZoneList Name + Refrigerator, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 91.0575745202123, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 1, !- Fraction Radiant + 0, !- Fraction Lost + refrigerator; !- EndUse Subcategory + +ElectricEquipment, + clotheswasher1, !- Name + living_unit1, !- Zone or ZoneList Name + ClothesWasher, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 28.4784377542718, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.8, !- Fraction Radiant + 0.2, !- Fraction Lost + clotheswasher; !- EndUse Subcategory + +ElectricEquipment, + electric_dryer1, !- Name + living_unit1, !- Zone or ZoneList Name + ClothesDryer, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 213.064557285022, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.05, !- Fraction Latent + 0.15, !- Fraction Radiant + 0.8, !- Fraction Lost + electric_dryer; !- EndUse Subcategory + +ElectricEquipment, + electric_range1, !- Name + living_unit1, !- Zone or ZoneList Name + CookingRange, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 248.154224774405, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.3, !- Fraction Latent + 0.4, !- Fraction Radiant + 0.3, !- Fraction Lost + electric_range; !- EndUse Subcategory + +ElectricEquipment, + television1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLighting, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 1, !- Fraction Radiant + 0, !- Fraction Lost + television; !- EndUse Subcategory + +ElectricEquipment, + electric_mels1, !- Name + living_unit1, !- Zone or ZoneList Name + MiscPlugLoad, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 567.464237516869, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.06, !- Fraction Latent + 0.69, !- Fraction Radiant + 0.25, !- Fraction Lost + electric_mels; !- EndUse Subcategory + +ElectricEquipment, + IECC_Adj1, !- Name + living_unit1, !- Zone or ZoneList Name + MiscPlugLoad, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 1.54356736989469, !- Watts per Zone Floor Area + , !- Watts per Person + 0.0624390461422629, !- Fraction Latent + 0.41190936353998, !- Fraction Radiant + 0.251045347957769, !- Fraction Lost + IECC_adj; !- EndUse Subcategory + +ZoneInfiltration:EffectiveLeakageArea, + Living_ShermanGrimsrud_unit1, !- Name + living_unit1, !- Zone Name + always_avail, !- Schedule Name + 357.402730122675, !- Effective Air Leakage Area + 0.00029, !- Stack Coefficient + 0.000231; !- Wind Coefficient + +ZoneInfiltration:EffectiveLeakageArea, + AtticVent_unit1, !- Name + attic_unit1, !- Zone Name + always_avail, !- Schedule Name + 370, !- Effective Air Leakage Area + 0.00029, !- Stack Coefficient + 0.000231; !- Wind Coefficient + +ZoneVentilation:DesignFlowRate, + Ventilation_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + always_avail, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0.0283168464628752, !- Design Flow Rate + , !- Flow Rate per Zone Floor Area + , !- Flow Rate per Person + , !- Air Changes per Hour + Exhaust, !- Ventilation Type + 0, !- Fan Pressure Rise + 1, !- Fan Total Efficiency + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0, !- Velocity Squared Term Coefficient + -100, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 100, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + -100, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 100, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +Exterior:Lights, + Exterior-Lights_unit1, !- Name + ExteriorLighting, !- Schedule Name + 52.1797739245505, !- Design Level + , !- Control Option + Exterior-Lights; !- EndUse Subcategory + +Exterior:Lights, + Garage-Lights_unit1, !- Name + InteriorLightingHE, !- Schedule Name + 8.64337749389251, !- Design Level + , !- Control Option + Garage-Lights; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ_DSOA_living_unit1, !- Name + Flow/Zone, !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person + , !- Outdoor Air Flow per Zone Floor Area + 0.0283168464628752; !- Outdoor Air Flow per Zone + +Sizing:Zone, + living_unit1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ_DSOA_living_unit1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area + 0.1415762, !- Heating Maximum Air Flow + 0.3; !- Heating Maximum Air Flow Fraction + +Sizing:System, + Central System_unit1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12, !- Central Cooling Design Supply Air Temperature + 50, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:Plant, + DHW Loop_unit1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 48.8888888888889, !- Design Loop Exit Temperature + 5.55555555555556; !- Loop Design Temperature Difference + +ZoneControl:Thermostat, + Zone Thermostat_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + zone_control_type, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + thermostat_living Dual SP Control; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + thermostat_living Dual SP Control, !- Name + heating_sch, !- Heating Setpoint Temperature Schedule Name + cooling_sch; !- Cooling Setpoint Temperature Schedule Name + +AirTerminal:SingleDuct:Uncontrolled, + ZoneDirectAir_unit1, !- Name + always_avail, !- Availability Schedule Name + Zone Inlet Node_unit1, !- Zone Supply Air Node Name + autosize; !- Maximum Air Flow Rate + +ZoneHVAC:EquipmentConnections, + living_unit1, !- Zone Name + ZoneEquipment_unit1, !- Zone Conditioning Equipment List Name + zone inlet nodes_unit1, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone Node_unit1, !- Zone Air Node Name + Zone Outlet Node_unit1; !- Zone Return Air Node or NodeList Name + +Fan:OnOff, + Supply Fan_unit1, !- Name + always_avail, !- Availability Schedule Name + 0.377, !- Fan Total Efficiency + 400, !- Pressure Rise + autosize, !- Maximum Flow Rate + 0.65, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + air loop inlet node_unit1, !- Air Inlet Node Name + cooling coil air inlet node_unit1, !- Air Outlet Node Name + , !- Fan Power Ratio Function of Speed Ratio Curve Name + , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + General; !- EndUse Subcategory + +Coil:Cooling:DX:SingleSpeed, + DX Cooling Coil_unit1, !- Name + always_avail, !- Availability Schedule Name + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Heat Ratio + 3.97008850025305, !- Gross Rated Cooling COP + autosize, !- Rated Air Flow Rate + , !- Rated Evaporator Fan Power Per Volume Flow Rate + Cooling Coil Air Inlet Node_unit1, !- Air Inlet Node Name + Heating Coil Air Inlet Node_unit1, !- Air Outlet Node Name + Cool-Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + +Coil:Heating:Fuel, + Main Fuel heating coil_unit1, !- Name + always_avail, !- Availability Schedule Name + FuelOil#2, !- Fuel Type + 0.78, !- Burner Efficiency + autosize, !- Nominal Capacity + heating coil air inlet node_unit1, !- Air Inlet Node Name + air loop outlet node_unit1; !- Air Outlet Node Name + +AirLoopHVAC:UnitaryHeatCool, + ACandF_unit1, !- Name + always_avail, !- Availability Schedule Name + air loop inlet node_unit1, !- Unitary System Air Inlet Node Name + air loop outlet node_unit1, !- Unitary System Air Outlet Node Name + fan_cycle, !- Supply Air Fan Operating Mode Schedule Name + 80, !- Maximum Supply Air Temperature + autosize, !- Cooling Supply Air Flow Rate + autosize, !- Heating Supply Air Flow Rate + 0, !- No Load Supply Air Flow Rate + living_unit1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Fan Object Type + Supply Fan_unit1, !- Supply Fan Name + BlowThrough, !- Fan Placement + Coil:Heating:Fuel, !- Heating Coil Object Type + Main Fuel Heating Coil_unit1, !- Heating Coil Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + DX Cooling Coil_unit1, !- Cooling Coil Name + None; !- Dehumidification Control Type + +AirLoopHVAC, + Central System_unit1, !- Name + , !- Controller List Name + availability list, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate + Air Loop Branches_unit1, !- Branch List Name + , !- Connector List Name + Air Loop Inlet Node_unit1, !- Supply Side Inlet Node Name + Return Air Mixer Outlet_unit1, !- Demand Side Outlet Node Name + Zone Equipment Inlet Node_unit1, !- Demand Side Inlet Node Names + Air Loop Outlet Node_unit1; !- Supply Side Outlet Node Names + +AirLoopHVAC:ZoneSplitter, + Zone Supply Air Splitter_unit1, !- Name + Zone Equipment Inlet Node_unit1, !- Inlet Node Name + Zone Inlet Node_unit1; !- Outlet 1 Node Name + +AirLoopHVAC:SupplyPath, + SupplyPath_unit1, !- Name + Zone Equipment Inlet Node_unit1, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + Zone Supply Air Splitter_unit1; !- Component 1 Name + +AirLoopHVAC:ZoneMixer, + Zone Return Air Mixer_unit1, !- Name + Return Air Mixer Outlet_unit1, !- Outlet Node Name + Zone Outlet Node_unit1; !- Inlet 1 Node Name + +AirLoopHVAC:ReturnPath, + ReturnPath_unit1, !- Name + Return Air Mixer Outlet_unit1, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Zone Return Air Mixer_unit1; !- Component 1 Name + +Branch, + Air Loop Main Branch_unit1, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:UnitaryHeatCool, !- Component 1 Object Type + ACandF_unit1, !- Component 1 Name + Air Loop Inlet Node_unit1, !- Component 1 Inlet Node Name + Air loop outlet node_unit1; !- Component 1 Outlet Node Name + +Branch, + Mains Inlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Mains Pressure_unit1, !- Component 1 Name + Mains Inlet Node_unit1, !- Component 1 Inlet Node Name + Mains Pressure Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + DHW Supply Outlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + DHW Supply Outlet Pipe_unit1, !- Component 1 Name + DHW Supply Outlet Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name + DHW Supply Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + DHW Demand Inlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + DHW Demand Inlet Pipe_unit1, !- Component 1 Name + DHW Demand Inlet Node_unit1, !- Component 1 Inlet Node Name + DHW Demand Inlet Pipe Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Sink Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Sinks_unit1, !- Component 1 Name + Water Sink Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Sink outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Shower Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Showers_unit1, !- Component 1 Name + Water Shower Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Shower Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water ClothesWasher Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW ClothesWasher_unit1, !- Component 1 Name + Water ClothesWasher Inlet Node_unit1, !- Component 1 Inlet Node Name + Water ClothesWasher Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Dishwasher Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW DishWasher_unit1, !- Component 1 Name + Water DishWasher Inlet Node_unit1, !- Component 1 Inlet Node Name + Water DishWasher outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Bath Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Baths_unit1, !- Component 1 Name + Water Bath Inlet Node_unit1, !- Component 1 Inlet Node Name + Water bath Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Mains Makeup Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Mains Makeup Pipe_unit1, !- Component 1 Name + Mains Makeup Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name + Mains Makeup Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Heater Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + Water Heater_unit1, !- Component 1 Name + Water Heater Use Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Heater Use Outlet Node_unit1; !- Component 1 Outlet Node Name + +BranchList, + Air Loop Branches_unit1, !- Name + Air Loop Main Branch_unit1; !- Branch 1 Name + +BranchList, + DHW Supply Branches_unit1, !- Name + Mains Inlet Branch_unit1, !- Branch 1 Name + Water Heater Branch_unit1, !- Branch 2 Name + DHW Supply Outlet Branch_unit1; !- Branch 3 Name + +BranchList, + DHW Demand Branches_unit1, !- Name + DHW Demand Inlet Branch_unit1, !- Branch 1 Name + Water Sink Branch_unit1, !- Branch 2 Name + Water Shower Branch_unit1, !- Branch 3 Name + Water ClothesWasher Branch_unit1, !- Branch 4 Name + Water Dishwasher Branch_unit1, !- Branch 5 Name + Water Bath Branch_unit1, !- Branch 6 Name + Mains Makeup Branch_unit1; !- Branch 7 Name + +Connector:Splitter, + DHW Demand Splitter_unit1, !- Name + DHW Demand Inlet Branch_unit1, !- Inlet Branch Name + Water Sink Branch_unit1, !- Outlet Branch 1 Name + Water Shower Branch_unit1, !- Outlet Branch 2 Name + Water ClothesWasher Branch_unit1, !- Outlet Branch 3 Name + Water Dishwasher Branch_unit1, !- Outlet Branch 4 Name + Water Bath Branch_unit1; !- Outlet Branch 5 Name + +Connector:Splitter, + DHW Supply Splitter_unit1, !- Name + Mains Inlet Branch_unit1, !- Inlet Branch Name + Water Heater Branch_unit1; !- Outlet Branch 1 Name + +Connector:Mixer, + DHW Demand Mixer_unit1, !- Name + Mains Makeup Branch_unit1, !- Outlet Branch Name + Water Sink Branch_unit1, !- Inlet Branch 1 Name + Water Shower Branch_unit1, !- Inlet Branch 2 Name + Water ClothesWasher Branch_unit1, !- Inlet Branch 3 Name + Water Dishwasher Branch_unit1, !- Inlet Branch 4 Name + Water Bath Branch_unit1; !- Inlet Branch 5 Name + +Connector:Mixer, + DHW Supply Mixer_unit1, !- Name + DHW Supply Outlet Branch_unit1, !- Outlet Branch Name + Water Heater Branch_unit1; !- Inlet Branch 1 Name + +ConnectorList, + DHW Demand Connectors_unit1, !- Name + Connector:Splitter, !- Connector 1 Object Type + DHW Demand Splitter_unit1, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + DHW Demand Mixer_unit1; !- Connector 2 Name + +ConnectorList, + DHW Supply Connectors_unit1, !- Name + Connector:Splitter, !- Connector 1 Object Type + DHW Supply Splitter_unit1, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + DHW Supply Mixer_unit1; !- Connector 2 Name + +NodeList, + Zone Inlet Nodes_unit1, !- Name + Zone Inlet Node_unit1; !- Node 1 Name + +OutdoorAir:Node, + outside air inlet node_unit1, !- Name + 0.914355407629293; !- Height Above Ground + +OutdoorAir:NodeList, + outdoor air node_unit1; !- Node or NodeList Name 1 + +Pipe:Adiabatic, + DHW Supply Outlet Pipe_unit1, !- Name + DHW Supply Outlet Pipe Inlet Node_unit1, !- Inlet Node Name + DHW Supply Outlet Node_unit1; !- Outlet Node Name + +Pipe:Adiabatic, + Mains Makeup Pipe_unit1, !- Name + Mains Makeup Pipe Inlet Node_unit1, !- Inlet Node Name + Mains Makeup Node_unit1; !- Outlet Node Name + +Pipe:Adiabatic, + DHW Demand Inlet Pipe_unit1, !- Name + DHW Demand Inlet Node_unit1, !- Inlet Node Name + DHW Demand Inlet Pipe Outlet Node_unit1; !- Outlet Node Name + +Pump:VariableSpeed, + Mains Pressure_unit1, !- Name + Mains Inlet Node_unit1, !- Inlet Node Name + Mains Pressure Outlet Node_unit1, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate + 1, !- Design Pump Head + 0, !- Design Power Consumption + 1, !- Motor Efficiency + 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 + Intermittent; !- Pump Control Type + +WaterHeater:Mixed, + Water Heater_unit1, !- Name + 0.196841372, !- Tank Volume + dhw_setpt, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 50, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + autosize, !- Heater Maximum Capacity + 0, !- Heater Minimum Capacity + 0, !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + FuelOil#1, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate + , !- Off Cycle Parasitic Fuel Type + , !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + living_unit1, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6.27714230487778, !- Off Cycle Loss Coefficient to Ambient Temperature + 1, !- Off Cycle Loss Fraction to Zone + 6.27714230487778, !- On Cycle Loss Coefficient to Ambient Temperature + 1, !- On Cycle Loss Fraction to Zone + 0, !- Peak Use Flow Rate + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Water Heater use inlet node_unit1, !- Use Side Inlet Node Name + Water Heater use outlet node_unit1, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + autosize, !- Use Side Design Flow Rate + 0, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +WaterHeater:Sizing, + Water Heater_unit1, !- WaterHeater Name + ResidentialHUD-FHAMinimum, !- Design Mode + , !- Time Storage Can Meet Peak Draw + , !- Time for Tank Recovery + , !- Nominal Tank Volume for Autosizing Plant Connections + 3, !- Number of Bedrooms + 3; !- Number of Bathrooms + +PlantLoop, + DHW Loop_unit1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + DHW Loop Operation_unit1, !- Plant Equipment Operation Scheme Name + DHW Supply Outlet Node_unit1, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature + 0, !- Minimum Loop Temperature + autosize, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + autocalculate, !- Plant Loop Volume + Mains Inlet Node_unit1, !- Plant Side Inlet Node Name + DHW Supply Outlet Node_unit1, !- Plant Side Outlet Node Name + DHW Supply Branches_unit1, !- Plant Side Branch List Name + DHW Supply Connectors_unit1, !- Plant Side Connector List Name + DHW Demand Inlet Node_unit1, !- Demand Side Inlet Node Name + Mains Makeup Node_unit1, !- Demand Side Outlet Node Name + DHW Demand Branches_unit1, !- Demand Side Branch List Name + DHW Demand Connectors_unit1, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +PlantEquipmentList, + DHW Plant Equipment_unit1, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + Water Heater_unit1; !- Equipment 1 Name + +PlantEquipmentOperation:HeatingLoad, + DHW Control Scheme_unit1, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + DHW Plant Equipment_unit1; !- Range 1 Equipment List Name + +PlantEquipmentOperationSchemes, + DHW Loop Operation_unit1, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + DHW Control Scheme_unit1, !- Control Scheme 1 Name + always_avail; !- Control Scheme 1 Schedule Name + +AvailabilityManager:Scheduled, + System availability, !- Name + always_avail; !- Schedule Name + +AvailabilityManagerAssignmentList, + availability list, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + System availability; !- Availability Manager 1 Name + +SetpointManager:Scheduled, + DHW Loop Setpoint Manager_unit1, !- Name + Temperature, !- Control Variable + DHWSupplySetpoint, !- Schedule Name + DHW Supply Outlet Node_unit1; !- Setpoint Node or NodeList Name + +WaterUse:Equipment, + Clothes Washer_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 1.6219189818e-06, !- Peak Flow Rate + ClothesWasher, !- Flow Rate Fraction Schedule Name + CWWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Dishwasher_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 6.36685353e-07, !- Peak Flow Rate + Dishwasher, !- Flow Rate Fraction Schedule Name + DWWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Sinks_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 7.1934e-05, !- Peak Flow Rate + BA_sink_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Showers_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 0.000141975, !- Peak Flow Rate + BA_shower_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Baths_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 0.00027764, !- Peak Flow Rate + BA_bath_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Connections, + DHW Sinks_unit1, !- Name + Water Sink Inlet Node_unit1, !- Inlet Node Name + Water Sink Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Sinks_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW Showers_unit1, !- Name + Water Shower Inlet Node_unit1, !- Inlet Node Name + Water Shower Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Showers_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW ClothesWasher_unit1, !- Name + Water ClothesWasher Inlet Node_unit1, !- Inlet Node Name + Water ClothesWasher Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Clothes Washer_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW DishWasher_unit1, !- Name + Water DishWasher Inlet Node_unit1, !- Inlet Node Name + Water DishWasher Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Dishwasher_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW Baths_unit1, !- Name + Water Bath Inlet Node_unit1, !- Inlet Node Name + Water Bath Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Baths_unit1; !- Water Use Equipment 1 Name + +Curve:Quadratic, + HPACCoolCapFFF, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Quadratic, + HPACCOOLEIRFFF, !- Name + 1.156, !- Coefficient1 Constant + -0.1816, !- Coefficient2 x + 0.0256, !- Coefficient3 x2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Quadratic, + HPACCOOLPLFFPLR, !- Name + 0.85, !- Coefficient1 Constant + 0.15, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPACHeatEIRFFF, !- Name + 1.3824, !- Coefficient1 Constant + -0.4336, !- Coefficient2 x + 0.0512, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + ACCoolingCAPFFF, !- Name + 0.718605468, !- Coefficient1 Constant + 0.410099989, !- Coefficient2 x + -0.128705457, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACCoolingEIRFFF, !- Name + 1.32299905, !- Coefficient1 Constant + -0.477711207, !- Coefficient2 x + 0.154712157, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACCoolingPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPCoolingCAPFFF, !- Name + 0.718664047, !- Coefficient1 Constant + 0.41797409, !- Coefficient2 x + -0.136638137, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPCoolingEIRFFF, !- Name + 1.143487507, !- Coefficient1 Constant + -0.13943972, !- Coefficient2 x + -0.004047787, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPCOOLPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPHeatingCAPFFF, !- Name + 0.694045465, !- Coefficient1 Constant + 0.474207981, !- Coefficient2 x + -0.168253446, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHeatingEIRFFF, !- Name + 2.185418751, !- Coefficient1 Constant + -1.942827919, !- Coefficient2 x + 0.757409168, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHeatPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPLowStageHeatingCAPFFF, !- Name + 0.741466907, !- Coefficient1 Constant + 0.378645444, !- Coefficient2 x + -0.119754733, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPLowStageHeatingEIRFFF, !- Name + 2.153618211, !- Coefficient1 Constant + -1.737190609, !- Coefficient2 x + 0.584269478, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageHeatingCAPFFF, !- Name + 0.76634609, !- Coefficient1 Constant + 0.32840943, !- Coefficient2 x + -0.094701495, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageHeatingEIRFFF, !- Name + 2.001041353, !- Coefficient1 Constant + -1.58869128, !- Coefficient2 x + 0.587593517, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HP2StageHeatingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPLowStageCoolingCAPFFF, !- Name + 0.655239515, !- Coefficient1 Constant + 0.511655216, !- Coefficient2 x + -0.166894731, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPLowStageCoolingEIRFFF, !- Name + 1.639108268, !- Coefficient1 Constant + -0.998953996, !- Coefficient2 x + 0.359845728, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageCoolingCAPFFF, !- Name + 0.618281092, !- Coefficient1 Constant + 0.569060264, !- Coefficient2 x + -0.187341356, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageCoolingEIRFFF, !- Name + 1.570774717, !- Coefficient1 Constant + -0.914152018, !- Coefficient2 x + 0.343377302, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HP2StageCoolingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + ACLowStageCoolingCAPFFF, !- Name + 0.65673024, !- Coefficient1 Constant + 0.516470835, !- Coefficient2 x + -0.172887149, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACLowStageCoolingEIRFFF, !- Name + 1.562945114, !- Coefficient1 Constant + -0.791859997, !- Coefficient2 x + 0.230030877, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACHighStageCoolingCAPFFF, !- Name + 0.690334551, !- Coefficient1 Constant + 0.464383753, !- Coefficient2 x + -0.154507638, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACHighStageCoolingEIRFFF, !- Name + 1.31565404, !- Coefficient1 Constant + -0.482467162, !- Coefficient2 x + 0.166239001, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + AC2StageCoolingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + Cool-PLF-fPLR, !- Name + 0.80141423, !- Coefficient1 Constant + 0.23744685, !- Coefficient2 x + -0.0393773, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0.7, !- Minimum Curve Output + 1; !- Maximum Curve Output + +Curve:Cubic, + HPACHeatCapFT, !- Name + 0.758746, !- Coefficient1 Constant + 0.027626, !- Coefficient2 x + 0.000148716, !- Coefficient3 x2 + 3.4992e-06, !- Coefficient4 x3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +Curve:Cubic, + HPACHeatCapFFF, !- Name + 0.84, !- Coefficient1 Constant + 0.16, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Cubic, + HPACHeatEIRFT, !- Name + 1.19248, !- Coefficient1 Constant + -0.0300438, !- Coefficient2 x + 0.00103745, !- Coefficient3 x2 + -2.3328e-05, !- Coefficient4 x3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +Curve:Cubic, + Fan-EIR-fPLR, !- Name + 0, !- Coefficient1 Constant + 1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0, !- Minimum Curve Output + 1; !- Maximum Curve Output + +Curve:Cubic, + ConstantCubic, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + -100, !- Minimum Value of x + 100; !- Maximum Value of x + +Curve:Biquadratic, + HPWHHeatingCapFTemp, !- Name + 0.369827, !- Coefficient1 Constant + 0.043341, !- Coefficient2 x + -0.00023, !- Coefficient3 x2 + 0.000466, !- Coefficient4 y + 2.6e-05, !- Coefficient5 y2 + -0.00027, !- Coefficient6 xy + 0, !- Minimum Value of x + 40, !- Maximum Value of x + 20, !- Minimum Value of y + 90, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPWHHeatingCOPFTemp, !- Name + 1.19713, !- Coefficient1 Constant + 0.077849, !- Coefficient2 x + -1.6e-06, !- Coefficient3 x2 + -0.02675, !- Coefficient4 y + 0.000296, !- Coefficient5 y2 + -0.00112, !- Coefficient6 xy + 0, !- Minimum Value of x + 40, !- Maximum Value of x + 20, !- Minimum Value of y + 90, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPACCoolCapFT, !- Name + 0.766956, !- Coefficient1 Constant + 0.0107756, !- Coefficient2 x + -4.14703e-05, !- Coefficient3 x2 + 0.00134961, !- Coefficient4 y + -0.000261144, !- Coefficient5 y2 + 0.000457488, !- Coefficient6 xy + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +Curve:Biquadratic, + HPACCOOLEIRFT, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y2 + -0.000956448, !- Coefficient6 xy + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +Curve:Biquadratic, + Defrost_EIR_FT, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 y + 0, !- Coefficient5 y2 + 0, !- Coefficient6 xy + 0, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100; !- Maximum Value of y + +Curve:Biquadratic, + dummy-waste-heat-curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 y + 0, !- Coefficient5 y2 + 0, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 1, !- Minimum Curve Output + 1, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACCoolingCAPFTemp, !- Name + 1.5509, !- Coefficient1 Constant + -0.07505, !- Coefficient2 x + 0.0031, !- Coefficient3 x2 + 0.0024, !- Coefficient4 y + -5e-05, !- Coefficient5 y2 + -0.00043, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACCoolingEIRFTemp, !- Name + -0.30428, !- Coefficient1 Constant + 0.11805, !- Coefficient2 x + -0.00342, !- Coefficient3 x2 + -0.00626, !- Coefficient4 y + 0.0007, !- Coefficient5 y2 + -0.00047, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPCoolingCAPFTemp, !- Name + 1.55736, !- Coefficient1 Constant + -0.074448, !- Coefficient2 x + 0.003099, !- Coefficient3 x2 + 0.00146, !- Coefficient4 y + -4.1e-05, !- Coefficient5 y2 + -0.000427, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPCoolingEIRFTemp, !- Name + -0.350448, !- Coefficient1 Constant + 0.11681, !- Coefficient2 x + -0.0034, !- Coefficient3 x2 + -0.001226, !- Coefficient4 y + 0.000601, !- Coefficient5 y2 + -0.000467, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHeatingCAPFTemp, !- Name + 0.876825, !- Coefficient1 Constant + -0.002955, !- Coefficient2 x + -5.8e-05, !- Coefficient3 x2 + 0.025335, !- Coefficient4 y + 0.000196, !- Coefficient5 y2 + -4.3e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHeatingEIRFTemp, !- Name + 0.704658, !- Coefficient1 Constant + 0.008767, !- Coefficient2 x + 0.000625, !- Coefficient3 x2 + -0.009037, !- Coefficient4 y + 0.000738, !- Coefficient5 y2 + -0.001025, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageHeatingCAPFTemp, !- Name + 0.84613, !- Coefficient1 Constant + -0.002279, !- Coefficient2 x + -4.7e-05, !- Coefficient3 x2 + 0.026703, !- Coefficient4 y + 0.000201, !- Coefficient5 y2 + -7.9e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageHeatingEIRFTemp, !- Name + 0.551837, !- Coefficient1 Constant + 0.02038, !- Coefficient2 x + 0.000546, !- Coefficient3 x2 + -0.009638, !- Coefficient4 y + 0.000785, !- Coefficient5 y2 + -0.00125, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageHeatingCAPFTemp, !- Name + 0.818223, !- Coefficient1 Constant + 0.001981, !- Coefficient2 x + -0.000203, !- Coefficient3 x2 + 0.028703, !- Coefficient4 y + 0.000207, !- Coefficient5 y2 + -7.1e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageHeatingEIRFTemp, !- Name + 0.81584, !- Coefficient1 Constant + -0.00615, !- Coefficient2 x + 0.001021, !- Coefficient3 x2 + -0.001301, !- Coefficient4 y + 0.001083, !- Coefficient5 y2 + -0.001487, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageCoolingCAPFTemp, !- Name + 1.658788, !- Coefficient1 Constant + -0.083453, !- Coefficient2 x + 0.003424, !- Coefficient3 x2 + 0.002433, !- Coefficient4 y + -4.5e-05, !- Coefficient5 y2 + -0.000534, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageCoolingEIRFTemp, !- Name + -0.582916, !- Coefficient1 Constant + 0.158101, !- Coefficient2 x + -0.004398, !- Coefficient3 x2 + -0.020335, !- Coefficient4 y + 0.00108, !- Coefficient5 y2 + -0.00064, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageCoolingCAPFTemp, !- Name + 1.472738, !- Coefficient1 Constant + -0.067222, !- Coefficient2 x + 0.00292, !- Coefficient3 x2 + 5.2e-05, !- Coefficient4 y + -3e-05, !- Coefficient5 y2 + -0.000359, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageCoolingEIRFTemp, !- Name + -0.488196, !- Coefficient1 Constant + 0.099162, !- Coefficient2 x + -0.00237, !- Coefficient3 x2 + 0.019503, !- Coefficient4 y + 0.00043, !- Coefficient5 y2 + -0.001097, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACLowStageCoolingCAPFTemp, !- Name + 1.66458, !- Coefficient1 Constant + -0.08039, !- Coefficient2 x + 0.0033, !- Coefficient3 x2 + 0.00124, !- Coefficient4 y + -3e-05, !- Coefficient5 y2 + -0.00052, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACLowStageCoolingEIRFTemp, !- Name + -0.42738, !- Coefficient1 Constant + 0.14191, !- Coefficient2 x + -0.00412, !- Coefficient3 x2 + -0.01406, !- Coefficient4 y + 0.00083, !- Coefficient5 y2 + -0.00043, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACHighStageCoolingCAPFTemp, !- Name + 1.36788, !- Coefficient1 Constant + -0.06257, !- Coefficient2 x + 0.0028, !- Coefficient3 x2 + 0.00504, !- Coefficient4 y + -7e-05, !- Coefficient5 y2 + -0.00045, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACHighStageCoolingEIRFTemp, !- Name + 0.04232, !- Coefficient1 Constant + 0.07892, !- Coefficient2 x + -0.00238, !- Coefficient3 x2 + -0.00304, !- Coefficient4 y + 0.00053, !- Coefficient5 y2 + -0.00032, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + Cool-Cap-fT, !- Name + 1.26489391, !- Coefficient1 Constant + -0.035054982, !- Coefficient2 x + 0.00211086, !- Coefficient3 x2 + -0.001526886, !- Coefficient4 y + -7.0308e-06, !- Coefficient5 y2 + -0.0004691844, !- Coefficient6 xy + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + +Curve:Biquadratic, + Cool-EIR-fT, !- Name + 0.38402403, !- Coefficient1 Constant + 0.029696724, !- Coefficient2 x + -0.0011329308, !- Coefficient3 x2 + 0.006490674, !- Coefficient4 y + 0.0002626992, !- Coefficient5 y2 + -0.0001207224, !- Coefficient6 xy + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + +Output:VariableDictionary, + Regular; !- Key Field + +Output:Constructions, + Constructions, !- Details Type 1 + Materials; !- Details Type 2 + +Output:Table:SummaryReports, + InputVerificationandResultsSummary, !- Report 1 Name + EquipmentSummary, !- Report 2 Name + ClimaticDataSummary, !- Report 3 Name + EnvelopeSummary, !- Report 4 Name + AllSummary; !- Report 5 Name + +Output:Table:Monthly, + FanSplit, !- Name + 3, !- Digits After Decimal + Air System Cooling Coil Total Cooling Energy, !- Variable or Meter 1 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 1 + Air System Fan Electric Energy, !- Variable or Meter 2 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 2 + Air System Heating Coil Total Heating Energy, !- Variable or Meter 3 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 3 + Air System Fan Electric Energy, !- Variable or Meter 4 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 4 + Air System Fan Electric Energy, !- Variable or Meter 5 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 5 + +Output:Table:Monthly, + CoilLoads, !- Name + 2, !- Digits After Decimal + Heating Coil Total Heating Rate, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating Coil Air Heating Rate, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Cooling Coil Total Cooling Rate, !- Variable or Meter 3 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 3 + +Output:Table:Monthly, + Water Heater: Loads, !- Name + 2, !- Digits After Decimal + Water Heater Total Demand Rate, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Water Heater Total Demand Energy, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Water Heater Heating Rate, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Water Heater Heating Energy, !- Variable or Meter 4 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 4 + +Output:Table:Monthly, + Heating and Cooling Loads, !- Name + 2, !- Digits After Decimal + Zone/Sys Sensible Cooling Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone/Sys Sensible Heating Energy, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + Lighting Loads, !- Name + 2, !- Digits After Decimal + Zone Lights Electric Consumption, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Exterior Lights Electric Consumption, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + InternalGains, !- Name + 2, !- Digits After Decimal + Zone People Total Heat Gain, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Lights Total Heat Gain, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Zone Electric Equipment Total Heat Gain, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Zone Gas Equipment Total Heat Gain, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Zone Other Equipment Total Heat Gain, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Zone Total Internal Total Heat Gain, !- Variable or Meter 6 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 6 + +OutputControl:Table:Style, + Comma, !- Column Separator + None; !- Unit Conversion \ No newline at end of file diff --git a/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0V9-2-0.idf b/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0V9-2-0.idf new file mode 100644 index 000000000..69e7a6fd8 --- /dev/null +++ b/tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012V9-2-0V9-2-0.idf @@ -0,0 +1,4820 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + Yes, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +Building, + SF+CZ5AWH+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012, !- Name + 0, !- North Axis + Suburbs, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +Timestep, + 4; !- Number of Timesteps per Hour + +Site:Location, + Chicago Ohare Intl Ap_IL_USA Design_Conditions, !- Name + 41.98, !- Latitude + -87.92, !- Longitude + -6, !- Time Zone + 201; !- Elevation + +SizingPeriod:DesignDay, + Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -20, !- Maximum DryBulb Temperature + 0, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -20, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98934, !- Barometric Pressure + 4.9, !- Wind Speed + 270, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving 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; !- Sky Clearness + +SizingPeriod:DesignDay, + Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 33.3, !- Maximum DryBulb Temperature + 10.5, !- Daily DryBulb Temperature Range + DefaultMultipliers, !- DryBulb Temperature Range Modifier Type + , !- DryBulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.7, !- Wetbulb or DewPoint at Maximum DryBulb + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum DryBulb + , !- Enthalpy at Maximum DryBulb + , !- Daily WetBulb Temperature Range + 98934, !- Barometric Pressure + 5.2, !- Wind Speed + 230, !- Wind Direction + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance taub + 2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance taud + +RunPeriod, + annual, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- Begin Year + 31, !- End Month + UseWeatherFile, !- End Day of Month + Yes, !- End Year + Monday, !- 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 + 1; !- Use Weather File Rain Indicators + +Site:WaterMainsTemperature, + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 9.925, !- Annual Average Outdoor Air Temperature + 28.7; !- Maximum Difference In Monthly Average Outdoor Air Temperatures + +ScheduleTypeLimits, + any number; !- Name + +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, + fraction, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + Continuous; !- Numeric Type + +Schedule:Day:Hourly, + OccupancyDay, !- Name + Fraction, !- Schedule Type Limits Name + 1, !- Hour 1 + 1, !- Hour 2 + 1, !- Hour 3 + 1, !- Hour 4 + 1, !- Hour 5 + 1, !- Hour 6 + 1, !- Hour 7 + 0.8831, !- Hour 8 + 0.40861, !- Hour 9 + 0.24189, !- Hour 10 + 0.24189, !- Hour 11 + 0.24189, !- Hour 12 + 0.24189, !- Hour 13 + 0.24189, !- Hour 14 + 0.24189, !- Hour 15 + 0.24189, !- Hour 16 + 0.29498, !- Hour 17 + 0.5531, !- Hour 18 + 0.89693, !- Hour 19 + 0.89693, !- Hour 20 + 0.89693, !- Hour 21 + 1, !- Hour 22 + 1, !- Hour 23 + 1; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.0625, !- Hour 1 + 0.0625, !- Hour 2 + 0.0625, !- Hour 3 + 0.0625, !- Hour 4 + 0.1875, !- Hour 5 + 0.390625, !- Hour 6 + 0.4375, !- Hour 7 + 0.390625, !- Hour 8 + 0.171875, !- Hour 9 + 0.1171875, !- Hour 10 + 0.1171875, !- Hour 11 + 0.1171875, !- Hour 12 + 0.1171875, !- Hour 13 + 0.1171875, !- Hour 14 + 0.1171875, !- Hour 15 + 0.203125, !- Hour 16 + 0.4375, !- Hour 17 + 0.609375, !- Hour 18 + 0.8203125, !- Hour 19 + 0.984375, !- Hour 20 + 1, !- Hour 21 + 0.6875, !- Hour 22 + 0.3828125, !- Hour 23 + 0.15625; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting_OccSensors, !- Name + Fraction, !- Schedule Type Limits Name + 0.065170403, !- Hour 1 + 0.065170403, !- Hour 2 + 0.065170403, !- Hour 3 + 0.065170403, !- Hour 4 + 0.195511208, !- Hour 5 + 0.407315016, !- Hour 6 + 0.456192818, !- Hour 7 + 0.407315016, !- Hour 8 + 0.179218607, !- Hour 9 + 0.122194505, !- Hour 10 + 0.122194505, !- Hour 11 + 0.122194505, !- Hour 12 + 0.122194505, !- Hour 13 + 0.122194505, !- Hour 14 + 0.122194505, !- Hour 15 + 0.211803808, !- Hour 16 + 0.456192818, !- Hour 17 + 0.635411425, !- Hour 18 + 0.855361533, !- Hour 19 + 0.947933128, !- Hour 20 + 0.947933128, !- Hour 21 + 0.716874428, !- Hour 22 + 0.399168715, !- Hour 23 + 0.162926006; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting_Garage_OccSensors, !- Name + Fraction, !- Schedule Type Limits Name + 0.048125, !- Hour 1 + 0.048125, !- Hour 2 + 0.048125, !- Hour 3 + 0.048125, !- Hour 4 + 0.144375, !- Hour 5 + 0.30078125, !- Hour 6 + 0.336875, !- Hour 7 + 0.30078125, !- Hour 8 + 0.13234375, !- Hour 9 + 0.090234375, !- Hour 10 + 0.090234375, !- Hour 11 + 0.090234375, !- Hour 12 + 0.090234375, !- Hour 13 + 0.090234375, !- Hour 14 + 0.090234375, !- Hour 15 + 0.15640625, !- Hour 16 + 0.336875, !- Hour 17 + 0.46921875, !- Hour 18 + 0.631640625, !- Hour 19 + 0.7, !- Hour 20 + 0.7, !- Hour 21 + 0.529375, !- Hour 22 + 0.294765625, !- Hour 23 + 0.1203125; !- Hour 24 + +Schedule:Day:Hourly, + ExteriorLightingDay, !- Name + Fraction, !- Schedule Type Limits Name + 1, !- Hour 1 + 1, !- Hour 2 + 1, !- Hour 3 + 1, !- Hour 4 + 1, !- Hour 5 + 1, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 1, !- Hour 21 + 1, !- Hour 22 + 1, !- Hour 23 + 1; !- Hour 24 + +Schedule:Day:Hourly, + LightingDay_EELighting, !- Name + Fraction, !- Schedule Type Limits Name + 0.06875, !- Hour 1 + 0.06875, !- Hour 2 + 0.06875, !- Hour 3 + 0.06875, !- Hour 4 + 0.20625, !- Hour 5 + 0.4296875, !- Hour 6 + 0.48125, !- Hour 7 + 0.4296875, !- Hour 8 + 0.1890625, !- Hour 9 + 0.12890625, !- Hour 10 + 0.12890625, !- Hour 11 + 0.12890625, !- Hour 12 + 0.12890625, !- Hour 13 + 0.12890625, !- Hour 14 + 0.12890625, !- Hour 15 + 0.2234375, !- Hour 16 + 0.48125, !- Hour 17 + 0.6703125, !- Hour 18 + 0.90234375, !- Hour 19 + 1, !- Hour 20 + 1, !- Hour 21 + 0.75625, !- Hour 22 + 0.42109375, !- Hour 23 + 0.171875; !- Hour 24 + +Schedule:Day:Hourly, + RefrigeratorDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.8, !- Hour 1 + 0.782696177062374, !- Hour 2 + 0.765593561368209, !- Hour 3 + 0.742857142857143, !- Hour 4 + 0.731388329979879, !- Hour 5 + 0.731388329979879, !- Hour 6 + 0.759959758551308, !- Hour 7 + 0.8, !- Hour 8 + 0.817102615694165, !- Hour 9 + 0.828571428571429, !- Hour 10 + 0.8, !- Hour 11 + 0.8, !- Hour 12 + 0.839839034205231, !- Hour 13 + 0.839839034205231, !- Hour 14 + 0.828571428571429, !- Hour 15 + 0.839839034205231, !- Hour 16 + 0.885714285714286, !- Hour 17 + 0.971428571428572, !- Hour 18 + 1, !- Hour 19 + 0.971428571428572, !- Hour 20 + 0.942857142857143, !- Hour 21 + 0.925553319919517, !- Hour 22 + 0.885714285714286, !- Hour 23 + 0.828571428571429; !- Hour 24 + +Schedule:Day:Hourly, + MiscPlugLoadDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.607490272373541, !- Hour 1 + 0.559338521400778, !- Hour 2 + 0.552853437094682, !- Hour 3 + 0.545071335927367, !- Hour 4 + 0.524481193255512, !- Hour 5 + 0.585278858625162, !- Hour 6 + 0.676232166018158, !- Hour 7 + 0.718547341115435, !- Hour 8 + 0.607490272373541, !- Hour 9 + 0.517023346303502, !- Hour 10 + 0.529182879377432, !- Hour 11 + 0.529345006485084, !- Hour 12 + 0.520428015564202, !- Hour 13 + 0.538424124513619, !- Hour 14 + 0.568741893644617, !- Hour 15 + 0.600356679636835, !- Hour 16 + 0.71011673151751, !- Hour 17 + 0.862678339818418, !- Hour 18 + 0.936608300907912, !- Hour 19 + 0.966763942931258, !- Hour 20 + 1, !- Hour 21 + 0.976653696498055, !- Hour 22 + 0.845168612191959, !- Hour 23 + 0.73443579766537; !- Hour 24 + +Schedule:Day:Hourly, + CookingRangeDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.04715848452508, !- Hour 1 + 0.04715848452508, !- Hour 2 + 0.0235458911419424, !- Hour 3 + 0.0235458911419424, !- Hour 4 + 0.04715848452508, !- Hour 5 + 0.0707043756670224, !- Hour 6 + 0.165088046958378, !- Hour 7 + 0.283017609391676, !- Hour 8 + 0.306563500533618, !- Hour 9 + 0.320771077908218, !- Hour 10 + 0.283017609391676, !- Hour 11 + 0.330176093916756, !- Hour 12 + 0.377334578441836, !- Hour 13 + 0.306563500533618, !- Hour 14 + 0.292422625400213, !- Hour 15 + 0.377334578441836, !- Hour 16 + 0.613193703308431, !- Hour 17 + 1, !- Hour 18 + 0.778348452508004, !- Hour 19 + 0.400947171824973, !- Hour 20 + 0.235859124866596, !- Hour 21 + 0.165088046958378, !- Hour 22 + 0.103721985058698, !- Hour 23 + 0.0707043756670224; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.116245943021998, !- Hour 1 + 0.0516480346195454, !- Hour 2 + 0.0386981608366388, !- Hour 3 + 0.0258240173097731, !- Hour 4 + 0.0258240173097731, !- Hour 5 + 0.0774720519293184, !- Hour 6 + 0.155019834114677, !- Hour 7 + 0.232567616300036, !- Hour 8 + 0.43938694554634, !- Hour 9 + 0.491034980165885, !- Hour 10 + 0.426437071763433, !- Hour 11 + 0.361839163360982, !- Hour 12 + 0.310115398485395, !- Hour 13 + 0.348889289578075, !- Hour 14 + 0.284291381175622, !- Hour 15 + 0.271341507392716, !- Hour 16 + 0.284291381175622, !- Hour 17 + 0.374713306887847, !- Hour 18 + 0.659080418319509, !- Hour 19 + 0.839999999999997, !- Hour 20 + 0.684904435629283, !- Hour 21 + 0.503984853948792, !- Hour 22 + 0.335939415795168, !- Hour 23 + 0.232567616300036; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.124549224666426, !- Hour 1 + 0.0553371799495132, !- Hour 2 + 0.0414623151821132, !- Hour 3 + 0.0276685899747566, !- Hour 4 + 0.0276685899747566, !- Hour 5 + 0.0830057699242698, !- Hour 6 + 0.166092679408583, !- Hour 7 + 0.249179588892895, !- Hour 8 + 0.470771727371078, !- Hour 9 + 0.526108907320591, !- Hour 10 + 0.456896862603679, !- Hour 11 + 0.387684817886765, !- Hour 12 + 0.332266498377209, !- Hour 13 + 0.373809953119365, !- Hour 14 + 0.304597908402452, !- Hour 15 + 0.290723043635052, !- Hour 16 + 0.304597908402452, !- Hour 17 + 0.401478543094122, !- Hour 18 + 0.706157591056618, !- Hour 19 + 0.9, !- Hour 20 + 0.733826181031374, !- Hour 21 + 0.539983772087991, !- Hour 22 + 0.359935088351965, !- Hour 23 + 0.249179588892895; !- Hour 24 + +Schedule:Day:Hourly, + DishwasherVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0799138323371462, !- Hour 1 + 0.063913953700052, !- Hour 2 + 0.0319141964258626, !- Hour 3 + 0.0319141964258626, !- Hour 4 + 0.063913953700052, !- Hour 5 + 0.0959137109742402, !- Hour 6 + 0.191827421948482, !- Hour 7 + 0.415740162019479, !- Hour 8 + 0.623653023453381, !- Hour 9 + 0.735652173913043, !- Hour 10 + 0.71965229527595, !- Hour 11 + 0.639652902090476, !- Hour 12 + 0.575653387542098, !- Hour 13 + 0.511739433842046, !- Hour 14 + 0.447739919293667, !- Hour 15 + 0.415740162019479, !- Hour 16 + 0.431740040656573, !- Hour 17 + 0.415740162019479, !- Hour 18 + 0.415740162019479, !- Hour 19 + 0.415740162019479, !- Hour 20 + 0.415740162019479, !- Hour 21 + 0.399740283382384, !- Hour 22 + 0.271826815133954, !- Hour 23 + 0.143913346885524; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0977669225401257, !- Hour 1 + 0.0781926029309142, !- Hour 2 + 0.0390439637124913, !- Hour 3 + 0.0390439637124913, !- Hour 4 + 0.0781926029309142, !- Hour 5 + 0.117341242149337, !- Hour 6 + 0.234682484298674, !- Hour 7 + 0.508618283321703, !- Hour 8 + 0.762979762735519, !- Hour 9 + 0.9, !- Hour 10 + 0.880425680390789, !- Hour 11 + 0.782554082344731, !- Hour 12 + 0.704256803907886, !- Hour 13 + 0.626064200976972, !- Hour 14 + 0.547766922540126, !- Hour 15 + 0.508618283321703, !- Hour 16 + 0.528192602930914, !- Hour 17 + 0.508618283321703, !- Hour 18 + 0.508618283321703, !- Hour 19 + 0.508618283321703, !- Hour 20 + 0.508618283321703, !- Hour 21 + 0.489043963712491, !- Hour 22 + 0.332554082344731, !- Hour 23 + 0.176064200976972; !- Hour 24 + +Schedule:Day:Hourly, + ClothesWasherVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + dhw_profile_day, !- Name + fraction, !- Schedule Type Limits Name + 0.006, !- Hour 1 + 0.003, !- Hour 2 + 0.001, !- Hour 3 + 0.001, !- Hour 4 + 0.003, !- Hour 5 + 0.021, !- Hour 6 + 0.075, !- Hour 7 + 0.079, !- Hour 8 + 0.076, !- Hour 9 + 0.067, !- Hour 10 + 0.061, !- Hour 11 + 0.05, !- Hour 12 + 0.042, !- Hour 13 + 0.038, !- Hour 14 + 0.033, !- Hour 15 + 0.038, !- Hour 16 + 0.043, !- Hour 17 + 0.058, !- Hour 18 + 0.068, !- Hour 19 + 0.065, !- Hour 20 + 0.06, !- Hour 21 + 0.047, !- Hour 22 + 0.041, !- Hour 23 + 0.024; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0996818663838815, !- Hour 1 + 0.0598091198303289, !- Hour 2 + 0.0398727465535526, !- Hour 3 + 0.0199363732767763, !- Hour 4 + 0.0398727465535526, !- Hour 5 + 0.0598091198303289, !- Hour 6 + 0.15949098621421, !- Hour 7 + 0.31898197242842, !- Hour 8 + 0.486427370202556, !- Hour 9 + 0.685791102970318, !- Hour 10 + 0.785472969354199, !- Hour 11 + 0.817391304347826, !- Hour 12 + 0.745600222800647, !- Hour 13 + 0.677836691410393, !- Hour 14 + 0.610073160020138, !- Hour 15 + 0.578154825026511, !- Hour 16 + 0.558218451749735, !- Hour 17 + 0.546236490032885, !- Hour 18 + 0.518345705196183, !- Hour 19 + 0.510391293636256, !- Hour 20 + 0.526300116756109, !- Hour 21 + 0.546236490032885, !- Hour 22 + 0.438600212089077, !- Hour 23 + 0.239236479321316; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.121951219512195, !- Hour 1 + 0.0731707317073171, !- Hour 2 + 0.0487804878048781, !- Hour 3 + 0.024390243902439, !- Hour 4 + 0.0487804878048781, !- Hour 5 + 0.0731707317073171, !- Hour 6 + 0.195121951219512, !- Hour 7 + 0.390243902439024, !- Hour 8 + 0.59509731460951, !- Hour 9 + 0.8389997536339, !- Hour 10 + 0.960950973146095, !- Hour 11 + 1, !- Hour 12 + 0.912170485341217, !- Hour 13 + 0.829268292682927, !- Hour 14 + 0.746366100024637, !- Hour 15 + 0.707317073170732, !- Hour 16 + 0.682926829268293, !- Hour 17 + 0.668268046316827, !- Hour 18 + 0.634146341463415, !- Hour 19 + 0.624414880512441, !- Hour 20 + 0.643877802414388, !- Hour 21 + 0.668268046316827, !- Hour 22 + 0.536585365853659, !- Hour 23 + 0.292682926829268; !- Hour 24 + +Schedule:Day:Hourly, + ClothesDryerVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + SinksWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.160587981154977, !- Hour 1 + 0.0770051124323654, !- Hour 2 + 0.057725481926472, !- Hour 3 + 0.057725481926472, !- Hour 4 + 0.0770051124323654, !- Hour 5 + 0.205611588865802, !- Hour 6 + 0.481877353056144, !- Hour 7 + 0.70676857242784, !- Hour 8 + 0.745327833439629, !- Hour 9 + 0.700304225728804, !- Hour 10 + 0.616834766597404, !- Hour 11 + 0.565346812187545, !- Hour 12 + 0.552531528380687, !- Hour 13 + 0.513972267368898, !- Hour 14 + 0.468948659658074, !- Hour 15 + 0.488228290163969, !- Hour 16 + 0.546067181681651, !- Hour 17 + 0.738863486740593, !- Hour 18 + 0.848076923076923, !- Hour 19 + 0.783887094451417, !- Hour 20 + 0.642465334211122, !- Hour 21 + 0.546067181681651, !- Hour 22 + 0.449782438743392, !- Hour 23 + 0.308360678503097; !- Hour 24 + +Schedule:Day:Hourly, + SinksWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.170419898368548, !- Hour 1 + 0.0817197111527146, !- Hour 2 + 0.0612596951056432, !- Hour 3 + 0.0612596951056432, !- Hour 4 + 0.0817197111527146, !- Hour 5 + 0.218200053490238, !- Hour 6 + 0.511380048141214, !- Hour 7 + 0.750040117678524, !- Hour 8 + 0.790960149772666, !- Hour 9 + 0.743179994650976, !- Hour 10 + 0.654600160470714, !- Hour 11 + 0.599959882321476, !- Hour 12 + 0.586359989301953, !- Hour 13 + 0.545439957207809, !- Hour 14 + 0.49765980208612, !- Hour 15 + 0.51811981813319, !- Hour 16 + 0.579499866274405, !- Hour 17 + 0.784100026745119, !- Hour 18 + 0.9, !- Hour 19 + 0.83188018186681, !- Hour 20 + 0.681799946509762, !- Hour 21 + 0.579499866274405, !- Hour 22 + 0.477320139074619, !- Hour 23 + 0.327239903717572; !- Hour 24 + +Schedule:Day:Hourly, + SinksVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + ShowersWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0762986902534445, !- Hour 1 + 0.034648749787379, !- Hour 2 + 0.0242898452117705, !- Hour 3 + 0.034648749787379, !- Hour 4 + 0.097159380847083, !- Hour 5 + 0.367919714237116, !- Hour 6 + 0.839999999999997, !- Hour 7 + 0.833070250042524, !- Hour 8 + 0.676900833475081, !- Hour 9 + 0.531090321483245, !- Hour 10 + 0.426929749957476, !- Hour 11 + 0.336700119067869, !- Hour 12 + 0.242969892838918, !- Hour 13 + 0.208249702330328, !- Hour 14 + 0.180459261779215, !- Hour 15 + 0.187389011736689, !- Hour 16 + 0.215179452287804, !- Hour 17 + 0.277690083347508, !- Hour 18 + 0.301979928559279, !- Hour 19 + 0.301979928559279, !- Hour 20 + 0.298479333219935, !- Hour 21 + 0.29154958326246, !- Hour 22 + 0.208249702330328, !- Hour 23 + 0.149239666609968; !- Hour 24 + +Schedule:Day:Hourly, + ShowersWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0817485967001191, !- Hour 1 + 0.0371236604864773, !- Hour 2 + 0.0260248341554686, !- Hour 3 + 0.0371236604864773, !- Hour 4 + 0.104099336621875, !- Hour 5 + 0.39419969382548, !- Hour 6 + 0.9, !- Hour 7 + 0.892575267902705, !- Hour 8 + 0.725250893009015, !- Hour 9 + 0.569025344446334, !- Hour 10 + 0.457424732097295, !- Hour 11 + 0.360750127572716, !- Hour 12 + 0.260324885184556, !- Hour 13 + 0.223124681068209, !- Hour 14 + 0.193349209049158, !- Hour 15 + 0.200773941146454, !- Hour 16 + 0.230549413165504, !- Hour 17 + 0.297525089300901, !- Hour 18 + 0.32354992345637, !- Hour 19 + 0.32354992345637, !- Hour 20 + 0.319799285592788, !- Hour 21 + 0.312374553495493, !- Hour 22 + 0.223124681068209, !- Hour 23 + 0.159899642796394; !- Hour 24 + +Schedule:Day:Hourly, + ShowersVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + BathsWeekday, !- Name + Fraction, !- Schedule Type Limits Name + 0.0494406967808042, !- Hour 1 + 0.0247203483904026, !- Hour 2 + 0.0247203483904026, !- Hour 3 + 0.0247203483904026, !- Hour 4 + 0.0494406967808042, !- Hour 5 + 0.123601741952011, !- Hour 6 + 0.296708223038169, !- Hour 7 + 0.370869268209376, !- Hour 8 + 0.42030996499018, !- Hour 9 + 0.370869268209376, !- Hour 10 + 0.296708223038169, !- Hour 11 + 0.22248313551362, !- Hour 12 + 0.197762787123218, !- Hour 13 + 0.148322090342413, !- Hour 14 + 0.148322090342413, !- Hour 15 + 0.148322090342413, !- Hour 16 + 0.247267526257364, !- Hour 17 + 0.296708223038169, !- Hour 18 + 0.494535052514731, !- Hour 19 + 0.642857142857143, !- Hour 20 + 0.642857142857143, !- Hour 21 + 0.494535052514731, !- Hour 22 + 0.42030996499018, !- Hour 23 + 0.247267526257364; !- Hour 24 + +Schedule:Day:Hourly, + BathsWeekend, !- Name + Fraction, !- Schedule Type Limits Name + 0.0692169754931261, !- Hour 1 + 0.0346084877465631, !- Hour 2 + 0.0346084877465631, !- Hour 3 + 0.0346084877465631, !- Hour 4 + 0.0692169754931261, !- Hour 5 + 0.173042438732815, !- Hour 6 + 0.415391512253437, !- Hour 7 + 0.519216975493126, !- Hour 8 + 0.588433950986252, !- Hour 9 + 0.519216975493126, !- Hour 10 + 0.415391512253437, !- Hour 11 + 0.311476389719068, !- Hour 12 + 0.276867901972505, !- Hour 13 + 0.207650926479379, !- Hour 14 + 0.207650926479379, !- Hour 15 + 0.207650926479379, !- Hour 16 + 0.346174536760311, !- Hour 17 + 0.415391512253437, !- Hour 18 + 0.692349073520621, !- Hour 19 + 0.9, !- Hour 20 + 0.9, !- Hour 21 + 0.692349073520621, !- Hour 22 + 0.588433950986252, !- Hour 23 + 0.346174536760311; !- Hour 24 + +Schedule:Day:Hourly, + BathsVacation, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + DHWDistDay, !- Name + Fraction, !- Schedule Type Limits Name + 0.142553149370226, !- Hour 1 + 0.0764866759550322, !- Hour 2 + 0.0516611840277747, !- Hour 3 + 0.0584039294664903, !- Hour 4 + 0.121469841058603, !- Hour 5 + 0.366180268451559, !- Hour 6 + 0.833258955739606, !- Hour 7 + 0.999999987228391, !- Hour 8 + 0.995483090581232, !- Hour 9 + 0.916474762598139, !- Hour 10 + 0.800898393293271, !- Hour 11 + 0.682564390940485, !- Hour 12 + 0.590066600109555, !- Hour 13 + 0.522371887032053, !- Hour 14 + 0.466005974303267, !- Hour 15 + 0.46573704253214, !- Hour 16 + 0.527514234916123, !- Hour 17 + 0.637905701335668, !- Hour 18 + 0.727588642310272, !- Hour 19 + 0.732551127624518, !- Hour 20 + 0.681468471942116, !- Hour 21 + 0.610804704600985, !- Hour 22 + 0.464292318119835, !- Hour 23 + 0.299867724445383; !- Hour 24 + +Schedule:Week:Compact, + RefrigeratorWeek, !- Name + For: AllDays, !- DayType List 1 + RefrigeratorDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + MiscPlugLoadWeek, !- Name + For: AllDays, !- DayType List 1 + MiscPlugLoadDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + CookingRangeWeek, !- Name + For: AllDays, !- DayType List 1 + CookingRangeDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + DishwasherWeek, !- Name + For: Weekdays, !- DayType List 1 + DishwasherWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + DishwasherVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + DishwasherWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + ClothesWasherWeek, !- Name + For: Weekdays, !- DayType List 1 + ClothesWasherWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ClothesWasherVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ClothesWasherWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + dhw_profile_week, !- Name + AllDays, !- DayType List 1 + dhw_profile_day; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + ClothesDryerWeek, !- Name + For: Weekdays, !- DayType List 1 + ClothesDryerWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ClothesDryerVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ClothesDryerWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + SinksWeek, !- Name + For: Weekdays, !- DayType List 1 + SinksWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + SinksVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + SinksWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + ShowersWeek, !- Name + For: Weekdays, !- DayType List 1 + ShowersWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + ShowersVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + ShowersWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + BathsWeek, !- Name + For: Weekdays, !- DayType List 1 + BathsWeekday, !- ScheduleDay Name 1 + For: CustomDay1, !- DayType List 2 + BathsVacation, !- ScheduleDay Name 2 + For: AllOtherDays, !- DayType List 3 + BathsWeekend; !- ScheduleDay Name 3 + +Schedule:Week:Compact, + DHWDistWeek, !- Name + For: AllDays, !- DayType List 1 + DHWDistDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + OccupancyWeek, !- Name + AllDays, !- DayType List 1 + OccupancyDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek, !- Name + For: AllDays, !- DayType List 1 + LightingDay; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting_interior_controls, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting_OccSensors; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + LightingProfileWeek_EELighting_garage_controls, !- Name + For: AllDays, !- DayType List 1 + LightingDay_EELighting_Garage_OccSensors; !- ScheduleDay Name 1 + +Schedule:Week:Compact, + ExteriorLightingProfileWeek, !- Name + For: AllDays, !- DayType List 1 + ExteriorLightingDay; !- ScheduleDay Name 1 + +Schedule:Year, + Occupancy, !- Name + Fraction, !- Schedule Type Limits Name + OccupancyWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLighting, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE_OS, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting_interior_controls, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + InteriorLightingHE_VS, !- Name + Fraction, !- Schedule Type Limits Name + LightingProfileWeek_EELighting_garage_controls, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ExteriorLighting, !- Name + Fraction, !- Schedule Type Limits Name + ExteriorLightingProfileWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Refrigerator, !- Name + Fraction, !- Schedule Type Limits Name + RefrigeratorWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + MiscPlugLoad, !- Name + Fraction, !- Schedule Type Limits Name + MiscPlugLoadWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + CookingRange, !- Name + Fraction, !- Schedule Type Limits Name + CookingRangeWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + dhw_sch, !- Name + fraction, !- Schedule Type Limits Name + dhw_profile_week, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Dishwasher, !- Name + Fraction, !- Schedule Type Limits Name + DishwasherWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ClothesWasher, !- Name + Fraction, !- Schedule Type Limits Name + ClothesWasherWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + ClothesDryer, !- Name + Fraction, !- Schedule Type Limits Name + ClothesDryerWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Sinks, !- Name + Fraction, !- Schedule Type Limits Name + SinksWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Showers, !- Name + Fraction, !- Schedule Type Limits Name + ShowersWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + Baths, !- Name + Fraction, !- Schedule Type Limits Name + BathsWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + DHWDist, !- Name + Fraction, !- Schedule Type Limits Name + DHWDistWeek, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Compact, + BA_shower_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.00205406666666667, !- Field 4 + Until: 2:00, !- Field 5 + 0.000933666666666667, !- Field 6 + Until: 3:00, !- Field 7 + 0.0005602, !- Field 8 + Until: 4:00, !- Field 9 + 0.000933666666666667, !- Field 10 + Until: 5:00, !- Field 11 + 0.00261426666666667, !- Field 12 + Until: 6:00, !- Field 13 + 0.00971013333333333, !- Field 14 + Until: 7:00, !- Field 15 + 0.0220345333333333, !- Field 16 + Until: 8:00, !- Field 17 + 0.0218478, !- Field 18 + Until: 9:00, !- Field 19 + 0.0177396666666667, !- Field 20 + Until: 10:00, !- Field 21 + 0.0138182666666667, !- Field 22 + Until: 11:00, !- Field 23 + 0.011204, !- Field 24 + Until: 12:00, !- Field 25 + 0.00877646666666667, !- Field 26 + Until: 13:00, !- Field 27 + 0.00634893333333333, !- Field 28 + Until: 14:00, !- Field 29 + 0.00541526666666667, !- Field 30 + Until: 15:00, !- Field 31 + 0.00485506666666667, !- Field 32 + Until: 16:00, !- Field 33 + 0.00466833333333333, !- Field 34 + Until: 17:00, !- Field 35 + 0.005602, !- Field 36 + Until: 18:00, !- Field 37 + 0.0072826, !- Field 38 + Until: 19:00, !- Field 39 + 0.0078428, !- Field 40 + Until: 20:00, !- Field 41 + 0.0078428, !- Field 42 + Until: 21:00, !- Field 43 + 0.0078428, !- Field 44 + Until: 22:00, !- Field 45 + 0.00765606666666667, !- Field 46 + Until: 23:00, !- Field 47 + 0.00541526666666667, !- Field 48 + Until: 24:00, !- Field 49 + 0.0039214; !- Field 50 + +Schedule:Compact, + BA_bath_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.000191181818181818, !- Field 4 + Until: 2:00, !- Field 5 + 9.55909090909091e-05, !- Field 6 + Until: 3:00, !- Field 7 + 9.55909090909091e-05, !- Field 8 + Until: 4:00, !- Field 9 + 9.55909090909091e-05, !- Field 10 + Until: 5:00, !- Field 11 + 0.000191181818181818, !- Field 12 + Until: 6:00, !- Field 13 + 0.000454056818181818, !- Field 14 + Until: 7:00, !- Field 15 + 0.00109929545454545, !- Field 16 + Until: 8:00, !- Field 17 + 0.00138606818181818, !- Field 18 + Until: 9:00, !- Field 19 + 0.00157725, !- Field 20 + Until: 10:00, !- Field 21 + 0.00138606818181818, !- Field 22 + Until: 11:00, !- Field 23 + 0.00109929545454545, !- Field 24 + Until: 12:00, !- Field 25 + 0.000836420454545455, !- Field 26 + Until: 13:00, !- Field 27 + 0.000740829545454545, !- Field 28 + Until: 14:00, !- Field 29 + 0.000549647727272727, !- Field 30 + Until: 15:00, !- Field 31 + 0.000549647727272727, !- Field 32 + Until: 16:00, !- Field 33 + 0.000549647727272727, !- Field 34 + Until: 17:00, !- Field 35 + 0.000932011363636364, !- Field 36 + Until: 18:00, !- Field 37 + 0.00109929545454545, !- Field 38 + Until: 19:00, !- Field 39 + 0.001840125, !- Field 40 + Until: 20:00, !- Field 41 + 0.00238977272727273, !- Field 42 + Until: 21:00, !- Field 43 + 0.00238977272727273, !- Field 44 + Until: 22:00, !- Field 45 + 0.001840125, !- Field 46 + Until: 23:00, !- Field 47 + 0.00157725, !- Field 48 + Until: 24:00, !- Field 49 + 0.000932011363636364; !- Field 50 + +Schedule:Compact, + BA_sink_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 1:00, !- Field 3 + 0.00460157894736842, !- Field 4 + Until: 2:00, !- Field 5 + 0.00230078947368421, !- Field 6 + Until: 3:00, !- Field 7 + 0.00164342105263158, !- Field 8 + Until: 4:00, !- Field 9 + 0.00164342105263158, !- Field 10 + Until: 5:00, !- Field 11 + 0.00230078947368421, !- Field 12 + Until: 6:00, !- Field 13 + 0.00591631578947368, !- Field 14 + Until: 7:00, !- Field 15 + 0.0138047368421053, !- Field 16 + Until: 8:00, !- Field 17 + 0.0203784210526316, !- Field 18 + Until: 9:00, !- Field 19 + 0.0216931578947368, !- Field 20 + Until: 10:00, !- Field 21 + 0.0203784210526316, !- Field 22 + Until: 11:00, !- Field 23 + 0.017748947368421, !- Field 24 + Until: 12:00, !- Field 25 + 0.0164342105263158, !- Field 26 + Until: 13:00, !- Field 27 + 0.0161055263157895, !- Field 28 + Until: 14:00, !- Field 29 + 0.0147907894736842, !- Field 30 + Until: 15:00, !- Field 31 + 0.0141334210526316, !- Field 32 + Until: 16:00, !- Field 33 + 0.0134760526315789, !- Field 34 + Until: 17:00, !- Field 35 + 0.0157768421052632, !- Field 36 + Until: 18:00, !- Field 37 + 0.0213644736842105, !- Field 38 + Until: 19:00, !- Field 39 + 0.0246513157894737, !- Field 40 + Until: 20:00, !- Field 41 + 0.0226792105263158, !- Field 42 + Until: 21:00, !- Field 43 + 0.018735, !- Field 44 + Until: 22:00, !- Field 45 + 0.0157768421052632, !- Field 46 + Until: 23:00, !- Field 47 + 0.0131473684210526, !- Field 48 + Until: 24:00, !- Field 49 + 0.00887447368421052; !- Field 50 + +Schedule:Compact, + activity_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 117.28; !- Field 4 + +Schedule:Compact, + inf_sch, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + zone_control_type, !- Name + control_type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 4; !- Field 4 + +Schedule:Compact, + shading_2012iecc, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + shading_2009iecc, !- Name + any number, !- Schedule Type Limits Name + Through: 5/30, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 0.85, !- Field 4 + Through: 8/31, !- Field 5 + For: AllDays, !- Field 6 + Until 24:00, !- Field 7 + 0.7, !- Field 8 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00, !- Field 11 + 0.85; !- Field 12 + +Schedule:Compact, + dhw_setpt, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 48; !- Field 4 + +Schedule:Compact, + dhw_setpt_hpwh, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until 24:00, !- Field 3 + 44; !- Field 4 + +Schedule:Compact, + Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 12; !- Field 4 + +Schedule:Compact, + always_avail, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +Schedule:Compact, + always_off, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Compact, + heating_sch_HRef, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 20; !- Field 4 + +Schedule:Compact, + cooling_sch_HRef, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 25.55; !- Field 4 + +Schedule:Compact, + heating_sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 22.22; !- Field 4 + +Schedule:Compact, + cooling_sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 23.88; !- Field 4 + +Schedule:Compact, + fan_cycle, !- Name + any number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 0; !- Field 4 + +Schedule:Constant, + DWWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + CWWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + SinkSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.687777777777778; !- Hourly Value + +Schedule:Constant, + SinkLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.312222222222222; !- Hourly Value + +Schedule:Constant, + ShowerSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.51280276816609; !- Hourly Value + +Schedule:Constant, + ShowerLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0.48719723183391; !- Hourly Value + +Schedule:Constant, + BathSensSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + BathLatSchedule, !- Name + Fraction, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + SSBWaterTempSchedule, !- Name + Temperature, !- Schedule Type Limits Name + 40.5555555555556; !- Hourly Value + +Schedule:Constant, + WaterHeaterSP1Schedule, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + WaterHeaterSP2Schedule, !- Name + Temperature, !- Schedule Type Limits Name + 40.5555555555556; !- Hourly Value + +Schedule:Constant, + DHWSupplySetpoint, !- Name + Temperature, !- Schedule Type Limits Name + 48.8888888888889; !- Hourly Value + +Schedule:Constant, + boiler_setpt, !- Name + Temperature, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + Compressor Setpoint, !- Name + Temperature, !- Schedule Type Limits Name + 50; !- Hourly Value + +Schedule:Constant, + DOAShightemp, !- Name + Temperature, !- Schedule Type Limits Name + 200; !- Hourly Value + +Schedule:Constant, + DOASlowtemp, !- Name + Temperature, !- Schedule Type Limits Name + -60; !- Hourly Value + +Material, + sheathing_consol_layer, !- Name + Rough, !- Roughness + 0.0127, !- Thickness + 0.0940184, !- Conductivity + 685.008, !- Density + 1172.332; !- Specific Heat + +Material, + ceil_consol_layer, !- Name + Rough, !- Roughness + 0.400206234336168, !- Thickness + 0.0617176, !- Conductivity + 41.9286, !- Density + 776.25126; !- Specific Heat + +Material, + floor_consol_layer, !- Name + Rough, !- Roughness + 0.23495, !- Thickness + 0.0515515, !- Conductivity + 55.074, !- Density + 916.9311; !- Specific Heat + +Material, + bsmtwall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.0601465789473684, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + crawlwall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.0601465789473684, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + wall_consol_layer, !- Name + Rough, !- Roughness + 0.1397, !- Thickness + 0.057165, !- Conductivity + 120.801, !- Density + 1036.25775; !- Specific Heat + +Material, + Very High Reflectivity Surface, !- Name + Smooth, !- Roughness + 0.0005, !- Thickness + 237, !- Conductivity + 2702, !- Density + 903, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.05, !- Solar Absorptance + 0.05; !- Visible Absorptance + +Material, + GypsumBoard-5/16in, !- Name + Rough, !- Roughness + 0.00793953, !- Thickness + 0.15862, !- Conductivity + 640, !- Density + 1129.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.1; !- Visible Absorptance + +Material, + CopperPipe, !- Name + MediumRough, !- Roughness + 0.0190500386169072, !- Thickness + 401, !- Conductivity + 2243, !- Density + 837, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + +Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness + 45.28, !- Conductivity + 7824, !- Density + 500; !- Specific Heat + +Material, + Concrete_4in, !- Name + Rough, !- Roughness + 0.1014984, !- Thickness + 1.312098, !- Conductivity + 2242.8, !- Density + 465.2; !- Specific Heat + +Material, + Asphalt_shingle, !- Name + MediumRough, !- Roughness + 0.006339853, !- Thickness + 0.08186, !- Conductivity + 1121.2917044623, !- Density + 1255.20000949809, !- Specific Heat + , !- Thermal Absorptance + 0.75; !- Solar Absorptance + +Material, + Wood_shingle, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.11388, !- Conductivity + 426.090847695673, !- Density + 1631.76001234752; !- Specific Heat + +Material, + Slate_shingle, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 1.44219, !- Conductivity + 1601.845292089, !- Density + 1255.20000949809; !- Specific Heat + +Material, + cement_stucco, !- Name + MediumSmooth, !- Roughness + 0.01905, !- Thickness + 0.721, !- Conductivity + 1865.58, !- Density + 878.640006648665; !- Specific Heat + +Material, + syn_stucco, !- Name + MediumSmooth, !- Roughness + 0.003048, !- Thickness + 0.0865, !- Conductivity + 400, !- Density + 878.640006648665; !- Specific Heat + +Material, + Drywall_1/2in, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.16009, !- Conductivity + 800.922646044499, !- Density + 1087.84000823168; !- Specific Heat + +Material, + OSB_5/8in, !- Name + MediumSmooth, !- Roughness + 0.015875032180756, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149; !- Specific Heat + +Material, + OSB_7/16in, !- Name + MediumSmooth, !- Roughness + 0.0111125, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149; !- Specific Heat + +Material, + Blown_R30, !- Name + MediumRough, !- Roughness + 0.212598430964684, !- Thickness + 0.04119, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062; !- Specific Heat + +Material, + Blown_R30_top, !- Name + MediumRough, !- Roughness + 0.117348237880148, !- Thickness + 0.04119, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Plywood_3/4in, !- Name + Rough, !- Roughness + 0.01905, !- Thickness + 0.1154577, !- Conductivity + 544.68, !- Density + 674.54, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Batt_R19, !- Name + MediumRough, !- Roughness + 0.0254000514892096, !- Thickness + 0.00347522, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Lumber_2x4, !- Name + Rough, !- Roughness + 0.0890016, !- Thickness + 0.1154577, !- Conductivity + 512.64, !- Density + 767.58, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Carpet_n_pad, !- Name + MediumSmooth, !- Roughness + 0.0254000514892096, !- Thickness + 0.0601314018580031, !- Conductivity + 32.03690584178, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Batt_R13, !- Name + MediumRough, !- Roughness + 0.0889, !- Thickness + 0.03876, !- Conductivity + 9.61107175253399, !- Density + 836.800006332062, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + OSB_1/2in, !- Name + MediumSmooth, !- Roughness + 0.0127000257446048, !- Thickness + 0.1163, !- Conductivity + 544.627399310259, !- Density + 1213.36000918149, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + soil_12in, !- Name + Rough, !- Roughness + 0.3048, !- Thickness + 1.731, !- Conductivity + 1842.3, !- Density + 232.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + door_const, !- Name + Smooth, !- Roughness + 0.0396277251435213, !- Thickness + 0.0720096, !- Conductivity + 512.64, !- Density + 767.58; !- Specific Heat + +Material, + Gyp_board_1/2in, !- Name + Rough, !- Roughness + 0.01271016, !- Thickness + 0.15862, !- Conductivity + 640, !- Density + 1129.6, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.1; !- Visible Absorptance + +Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness + 0.12, !- Conductivity + 540, !- Density + 1210, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + Pipe Insulation, !- Name + VeryRough, !- Roughness + 0.0127032520325203, !- Thickness + 0.03317175, !- Conductivity + 91, !- Density + 836, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material:NoMass, + Manf_wall_airgap, !- Name + Smooth, !- Roughness + 0.12; !- Thermal Resistance + +Material:NoMass, + Bldg_paper_felt, !- Name + Smooth, !- Roughness + 0.0105666113069662; !- Thermal Resistance + +Material:NoMass, + R_high, !- Name + MediumRough, !- Roughness + 177; !- Thermal Resistance + +Material:AirGap, + Air_4_in_vert, !- Name + 0.158499169604493; !- Thermal Resistance + +Material:AirGap, + 3/4in_air_space, !- Name + 0.08513; !- Thermal Resistance + +Material:AirGap, + 3/4in_Reflective_air_space, !- Name + 0.246554; !- Thermal Resistance + +WindowMaterial:SimpleGlazingSystem, + Glass, !- Name + 1.817152, !- UFactor + 0.3344, !- Solar Heat Gain Coefficient + 0.88; !- Visible Transmittance + +WindowMaterial:Glazing, + Clear Acrylic Plastic, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.92, !- Solar Transmittance at Normal Incidence + 0.05, !- Front Side Solar Reflectance at Normal Incidence + 0.05, !- Back Side Solar Reflectance at Normal Incidence + 0.92, !- Visible Transmittance at Normal Incidence + 0.05, !- Front Side Visible Reflectance at Normal Incidence + 0.05, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Glazing, + Diffusing Acrylic Plastic, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.0022, !- Thickness + 0.9, !- Solar Transmittance at Normal Incidence + 0.08, !- Front Side Solar Reflectance at Normal Incidence + 0.08, !- Back Side Solar Reflectance at Normal Incidence + 0.9, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity + +WindowMaterial:Blind, + int_blind, !- Name + Horizontal, !- Slat Orientation + 0.025, !- Slat Width + 0.01875, !- Slat Separation + 0.001, !- Slat Thickness + 45, !- Slat Angle + 221, !- Slat Conductivity + 0, !- Slat Beam Solar Transmittance + 0.5, !- Front Side Slat Beam Solar Reflectance + 0.5, !- Back Side Slat Beam Solar Reflectance + 0, !- Slat Diffuse Solar Transmittance + 0.5, !- Front Side Slat Diffuse Solar Reflectance + 0.5, !- Back Side Slat Diffuse Solar Reflectance + 0, !- Slat Beam Visible Transmittance + 0.5, !- Front Side Slat Beam Visible Reflectance + 0.5, !- Back Side Slat Beam Visible Reflectance + 0, !- Slat Diffuse Visible Transmittance + 0.5, !- Front Side Slat Diffuse Visible Reflectance + 0.5, !- Back Side Slat Diffuse Visible Reflectance + 0, !- Slat Infrared Hemispherical Transmittance + 0.9, !- Front Side Slat Infrared Hemispherical Emissivity + 0.9, !- Back Side Slat Infrared Hemispherical Emissivity + 0.05, !- Blind to Glass Distance + 0.5, !- Blind Top Opening Multiplier + 0.5, !- Blind Bottom Opening Multiplier + 0.5, !- Blind Left Side Opening Multiplier + 0.5, !- Blind Right Side Opening Multiplier + , !- Minimum Slat Angle + ; !- Maximum Slat Angle + +Construction, + Exterior Wall, !- Name + syn_stucco, !- Outside Layer + sheathing_consol_layer, !- Layer 2 + OSB_7/16in, !- Layer 3 + wall_consol_layer, !- Layer 4 + Drywall_1/2in; !- Layer 5 + +Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + +Construction, + ceiling-floor-layer, !- Name + Lumber_2x4; !- Outside Layer + +Construction, + Exterior Floor, !- Name + floor_consol_layer, !- Outside Layer + Plywood_3/4in, !- Layer 2 + Carpet_n_pad; !- Layer 3 + +Construction, + Interior Floor, !- Name + Plywood_3/4in, !- Outside Layer + Carpet_n_pad; !- Layer 2 + +Construction, + Interior Ceiling, !- Name + ceil_consol_layer, !- Outside Layer + Drywall_1/2in; !- Layer 2 + +Construction, + attic floor, !- Name + Drywall_1/2in, !- Outside Layer + ceil_consol_layer; !- Layer 2 + +Construction, + fndn_roof, !- Name + Carpet_n_pad, !- Outside Layer + Plywood_3/4in, !- Layer 2 + ceil_consol_layer; !- Layer 3 + +Construction, + interiorwall, !- Name + Drywall_1/2in, !- Outside Layer + OSB_5/8in, !- Layer 2 + Drywall_1/2in; !- Layer 3 + +Construction, + Interior Wall, !- Name + Drywall_1/2in, !- Outside Layer + Air_4_in_vert, !- Layer 2 + Drywall_1/2in; !- Layer 3 + +Construction, + Exterior Roof, !- Name + Asphalt_shingle, !- Outside Layer + OSB_1/2in; !- Layer 2 + +Construction, + Exterior Window, !- Name + Glass; !- Outside Layer + +Construction, + Interior Window, !- Name + Glass; !- Outside Layer + +Construction, + Exterior Door, !- Name + door_const; !- Outside Layer + +Construction, + Interior Door, !- Name + door_const; !- Outside Layer + +Construction, + Gable_end, !- Name + cement_stucco, !- Outside Layer + Bldg_paper_felt, !- Layer 2 + OSB_5/8in, !- Layer 3 + Air_4_in_vert, !- Layer 4 + Drywall_1/2in; !- Layer 5 + +Construction, + crawl_floor, !- Name + R_high, !- Outside Layer + soil_12in; !- Layer 2 + +Construction, + window_w_blinds, !- Name + Glass, !- Outside Layer + int_blind; !- Layer 2 + +Construction, + Insulated Pipe, !- Name + Pipe Insulation, !- Outside Layer + CopperPipe; !- Layer 2 + +Construction, + Plain Pipe, !- Name + CopperPipe; !- Outside Layer + +Construction, + TDD Pipe, !- Name + Very High Reflectivity Surface; !- Outside Layer + +Construction, + TDD Dome, !- Name + Clear Acrylic Plastic; !- Outside Layer + +Construction, + TDD Diffuser, !- Name + Diffusing Acrylic Plastic; !- Outside Layer + +GlobalGeometryRules, + LowerLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative; !- Coordinate System + +Zone, + living_unit1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + , !- Type + 1; !- Multiplier + +Zone, + attic_unit1, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + , !- Type + 1; !- Multiplier +! +! BuildingSurface:Detailed, +! Inter zone floor 1, !- Name +! Floor, !- Surface Type +! Interior Floor, !- Construction Name +! living_unit1, !- Zone Name +! Adiabatic, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! NoSun, !- Sun Exposure +! NoWind, !- Wind Exposure +! 0, !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 2.59246341463415, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 2.59246341463415, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 2.59246341463415, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 2.59246341463415; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! ceiling_unit1, !- Name +! Ceiling, !- Surface Type +! Interior Ceiling, !- Construction Name +! living_unit1, !- Zone Name +! Zone, !- Outside Boundary Condition +! attic_unit1, !- Outside Boundary Condition Object +! NoSun, !- Sun Exposure +! NoWind, !- Wind Exposure +! 0, !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 5.18392682926829, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 5.18392682926829, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 5.18392682926829, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 9.09981820971244, !- Vertex 4 Ycoordinate +! 5.18392682926829; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Roof_front_unit1, !- Name +! Roof, !- Surface Type +! Exterior Roof, !- Construction Name +! attic_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! 0, !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 5.18392682926829, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 5.18392682926829, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 4.54990910485622, !- Vertex 3 Ycoordinate +! 6.6995631975537, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 4.54990910485622, !- Vertex 4 Ycoordinate +! 6.6995631975537; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Roof_back_unit1, !- Name +! Roof, !- Surface Type +! Exterior Roof, !- Construction Name +! attic_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! 0, !- View Factor to Ground +! 4, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 5.18392682926829, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 5.18392682926829, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 4.54990910485622, !- Vertex 3 Ycoordinate +! 6.6995631975537, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 4.54990910485622, !- Vertex 4 Ycoordinate +! 6.6995631975537; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Roof_right_unit1, !- Name +! Wall, !- Surface Type +! Gable_end, !- Construction Name +! attic_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 3, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 5.18392682926829, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 5.18392682926829, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 4.54990910485622, !- Vertex 3 Ycoordinate +! 6.6995631975537; !- Vertex 3 Zcoordinate +! +! BuildingSurface:Detailed, +! Roof_left_unit1, !- Name +! Wall, !- Surface Type +! Gable_end, !- Construction Name +! attic_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 3, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 5.18392682926829, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 5.18392682926829, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 4.54990910485622, !- Vertex 3 Ycoordinate +! 6.6995631975537; !- Vertex 3 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_ldf_1.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 0.001, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 0.001, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 0, !- Vertex 3 Ycoordinate +! 2.59246341463415, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 2.59246341463415; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_sdr_1.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 0.001, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 0.001, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 2.59246341463415, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 2.59246341463415; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_ldb_1.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 0.001, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 0.001, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 2.59246341463415, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 9.09981820971244, !- Vertex 4 Ycoordinate +! 2.59246341463415; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_sdl_1.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 0.001, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 0.001, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 0, !- Vertex 3 Ycoordinate +! 2.59246341463415, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 9.09981820971244, !- Vertex 4 Ycoordinate +! 2.59246341463415; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_ldf_2.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 2.59246341463415, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 2.59246341463415, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 0, !- Vertex 3 Ycoordinate +! 5.18392682926829, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 5.18392682926829; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_sdr_2.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 2.59246341463415, !- Vertex 1 Zcoordinate +! 12.1330909462833, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 2.59246341463415, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 5.18392682926829, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 5.18392682926829; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_ldb_2.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 12.1330909462833, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 2.59246341463415, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 2.59246341463415, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 5.18392682926829, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 9.09981820971244, !- Vertex 4 Ycoordinate +! 5.18392682926829; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Wall_sdl_2.unit1, !- Name +! Wall, !- Surface Type +! Exterior Wall, !- Construction Name +! living_unit1, !- Zone Name +! Outdoors, !- Outside Boundary Condition +! , !- Outside Boundary Condition Object +! SunExposed, !- Sun Exposure +! WindExposed, !- Wind Exposure +! , !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 9.09981820971244, !- Vertex 1 Ycoordinate +! 2.59246341463415, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 0, !- Vertex 2 Ycoordinate +! 2.59246341463415, !- Vertex 2 Zcoordinate +! 0, !- Vertex 3 Xcoordinate +! 0, !- Vertex 3 Ycoordinate +! 5.18392682926829, !- Vertex 3 Zcoordinate +! 0, !- Vertex 4 Xcoordinate +! 9.09981820971244, !- Vertex 4 Ycoordinate +! 5.18392682926829; !- Vertex 4 Zcoordinate +! +! BuildingSurface:Detailed, +! Floor_unit1, !- Name +! Floor, !- Surface Type +! Interior Floor, !- Construction Name +! living_unit1, !- Zone Name +! GroundSlabPreprocessorAverage, !- Outside Boundary Condition +! surfPropOthSdCoefSlabAverage, !- Outside Boundary Condition Object +! NoSun, !- Sun Exposure +! NoWind, !- Wind Exposure +! 0, !- View Factor to Ground +! 4, !- Number of Vertices +! 0, !- Vertex 1 Xcoordinate +! 0, !- Vertex 1 Ycoordinate +! 0.001, !- Vertex 1 Zcoordinate +! 0, !- Vertex 2 Xcoordinate +! 9.09981820971244, !- Vertex 2 Ycoordinate +! 0.001, !- Vertex 2 Zcoordinate +! 12.1330909462833, !- Vertex 3 Xcoordinate +! 9.09981820971244, !- Vertex 3 Ycoordinate +! 0.001, !- Vertex 3 Zcoordinate +! 12.1330909462833, !- Vertex 4 Xcoordinate +! 0, !- Vertex 4 Ycoordinate +! 0.001; !- Vertex 4 Zcoordinate + +Door, + Door_ldb_unit1, !- Name + Exterior Door, !- Construction Name + Wall_ldb_1.unit1, !- Building Surface Name + 1, !- Multiplier + 0.5, !- Starting X Coordinate + 0, !- Starting Z Coordinate + 1.74190122145513, !- Length + 2.13414634146341; !- Height + +InternalMass, + Internalmass_unit1, !- Name + InteriorFurnishings, !- Construction Name + living_unit1, !- Zone or ZoneList Name + 9.89591078066915; !- Surface Area + +Shading:Overhang, + Overhang_sdr_1.unit1, !- Name + Window_sdr_1.unit1, !- Window or Door Name + 0, !- Height above Window or Door + 90, !- Tilt Angle from WindowDoor + 0, !- Left extension from WindowDoor Width + 0, !- Right extension from WindowDoor Width + 0.0152439024390244; !- Depth + +Shading:Overhang, + Overhang_sdr_2.unit1, !- Name + Window_sdr_2.unit1, !- Window or Door Name + 0, !- Height above Window or Door + 90, !- Tilt Angle from WindowDoor + 0, !- Left extension from WindowDoor Width + 0, !- Right extension from WindowDoor Width + 0.0152439024390244; !- Depth +! +! GroundHeatTransfer:Control, +! gtp_control, !- Name +! no, !- Run Basement Preprocessor +! yes; !- Run Slab Preprocessor +! +! GroundHeatTransfer:Slab:Materials, +! 2, !- NMAT Number of materials +! 0.16, !- ALBEDO Surface Albedo No Snow +! 0.4, !- ALBEDO Surface Albedo Snow +! 0.9, !- EPSLW Surface Emissivity No Snow +! 0.9, !- EPSLW Surface Emissivity Snow +! 0.75, !- Z0 Surface Roughness No Snow +! 0.05, !- Z0 Surface Roughness Snow +! 6, !- HIN Indoor HConv Downward Flow +! 9; !- HIN Indoor HConv Upward +! +! GroundHeatTransfer:Slab:MatlProps, +! 2300, !- RHO Slab Material density +! 1200, !- RHO Soil Density +! 650, !- CP Slab CP +! 1200, !- CP Soil CP +! 0.9, !- TCON Slab k +! 1; !- TCON Soil k +! +! GroundHeatTransfer:Slab:BoundConds, +! FALSE, !- EVTR Is surface evapotranspiration modeled +! TRUE, !- FIXBC is the lower boundary at a fixed temperature +! 10, !- TDEEPin +! FALSE; !- USRHflag Is the ground surface h specified by the user +! +! GroundHeatTransfer:Slab:BldgProps, +! 10, !- IYRS Number of years to iterate +! 0, !- Shape Slab shape +! 4, !- HBLDG Building height +! 22.22, !- TIN1 January Indoor Average Temperature Setpoint +! 22.22, !- TIN2 February Indoor Average Temperature Setpoint +! 22.22, !- TIN3 March Indoor Average Temperature Setpoint +! 22.22, !- TIN4 April Indoor Average Temperature Setpoint +! 22.22, !- TIN5 May Indoor Average Temperature Setpoint +! 23.88, !- TIN6 June Indoor Average Temperature Setpoint +! 23.88, !- TIN7 July Indoor Average Temperature Setpoint +! 23.88, !- TIN8 August Indoor Average Temperature Setpoint +! 23.88, !- TIN9 September Indoor Average Temperature Setpoint +! 22.22, !- TIN10 October Indoor Average Temperature Setpoint +! 22.22, !- TIN11 November Indoor Average Temperature Setpoint +! 22.22, !- TIN12 December Indoor Average Temperature Setpoint +! 0, !- TINAmp Daily Indoor sine wave variation amplitude +! 0.1; !- ConvTol Convergence Tolerance +! +! GroundHeatTransfer:Slab:Insulation, +! 0, !- RINS R value of under slab insulation +! 0, !- DINS Width of strip of under slab insulation +! 1.76099742894375, !- RVINS R value of vertical insulation +! 1.5, !- ZVINS Depth of vertical insulation +! 1; !- IVINS Flag Is there vertical insulation +! +! GroundHeatTransfer:Slab:EquivalentSlab, +! 2.59947574997227, !- APRatio The area to perimeter ratio for this slab +! 0.1, !- SLABDEPTH Thickness of slab on grade +! 15, !- CLEARANCE Distance from edge of slab to domain edge +! 15; !- ZCLEARANCE Distance from bottom of slab to domain bottom +! +! GroundHeatTransfer:Basement:SimParameters, +! 0.1, !- F Multiplier for the ADI solution +! 15; !- IYRS Maximum number of yearly iterations +! +! GroundHeatTransfer:Basement:MatlProps, +! 6, !- NMAT Number of materials in this domain +! 2243, !- Density for Foundation Wall +! 2243, !- density for Floor Slab +! 311, !- density for Ceiling +! 1500, !- density for Soil +! 2000, !- density for Gravel +! 449, !- density for Wood +! 880, !- Specific heat for foundation wall +! 880, !- Specific heat for floor slab +! 1530, !- Specific heat for ceiling +! 840, !- Specific heat for soil +! 720, !- Specific heat for gravel +! 1530, !- Specific heat for wood +! 1.4, !- Thermal conductivity for foundation wall +! 1.4, !- Thermal conductivity for floor slab +! 0.09, !- Thermal conductivity for ceiling +! 1.1, !- thermal conductivity for soil +! 1.9, !- thermal conductivity for gravel +! 0.12; !- thermal conductivity for wood +! +! GroundHeatTransfer:Basement:Insulation, +! 3.34589511499313, !- REXT R Value of any exterior insulation +! True; !- INSFULL Flag Is the wall fully insulated +! +! GroundHeatTransfer:Basement:SurfaceProps, +! 0.16, !- ALBEDO Surface albedo for No snow conditions +! 0.4, !- ALBEDO Surface albedo for snow conditions +! 0.94, !- EPSLN Surface emissivity No Snow +! 0.86, !- EPSLN Surface emissivity with Snow +! 6, !- VEGHT Surface roughness No snow conditions +! 0.25, !- VEGHT Surface roughness Snow conditions +! False; !- PET Flag Potential evapotranspiration on +! +! GroundHeatTransfer:Basement:BldgData, +! 0.200000006162114, !- DWALL Wall thickness +! 0.243828108701145, !- DSLAB Floor slab thickness +! 0.3, !- DGRAVXY Width of gravel pit beside basement wall +! 0.2, !- DGRAVZN Gravel depth extending above the floor slab +! 0.1; !- DGRAVZP Gravel depth below the floor slab +! +! GroundHeatTransfer:Basement:Interior, +! True, !- COND Flag Is the basement conditioned +! 0.92, !- HIN Downward convection only heat transfer coefficient +! 4.04, !- HIN Upward convection only heat transfer coefficient +! 3.08, !- HIN Horizontal convection only heat transfer coefficient +! 6.13, !- HIN Downward combined convection and radiation heat transfer coefficient +! 9.26, !- HIN Upward combined convection and radiation heat transfer coefficient +! 8.29; !- HIN Horizontal combined convection and radiation heat transfer coefficient +! +! GroundHeatTransfer:Basement:ComBldg, +! 21, !- January average temperature +! 21, !- February average temperature +! 21, !- March average temperature +! 21, !- April average temperature +! 24, !- May average temperature +! 24, !- June average temperature +! 24, !- July average temperature +! 24, !- August average temperature +! 24, !- September average temperature +! 24, !- October average temperature +! 21, !- November average temperature +! 21, !- December average temperature +! 21; !- Daily variation sine wave amplitude +! +! GroundHeatTransfer:Basement:EquivSlab, +! 2.59947574997227, !- APRatio The area to perimeter ratio for this slab +! True; !- EquivSizing Flag +! +! GroundHeatTransfer:Basement:EquivAutoGrid, +! 15, !- CLEARANCE Distance from outside of wall to edge of 3D ground domain +! 0.1, !- SlabDepth Thickness of the floor slab +! 1.21914054350572; !- BaseDepth Depth of the basement wall below grade + +People, + people_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + Occupancy, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 3, !- Number of People + , !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0, !- Fraction Radiant + autocalculate, !- Sensible Heat Fraction + activity_sch, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged; !- Mean Radiant Temperature Calculation Type + +Lights, + Living Hardwired Lighting1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLightingHE, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 1.26962207647227, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Fraction Replaceable + +Lights, + Living Plug-in Lighting1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLightingHE, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 0.478467682251396, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.6, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Fraction Replaceable + +ElectricEquipment, + dishwasher1, !- Name + living_unit1, !- Zone or ZoneList Name + DishWasher, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 65.698787492023, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.15, !- Fraction Latent + 0.6, !- Fraction Radiant + 0.25, !- Fraction Lost + dishwasher; !- EndUse Subcategory + +ElectricEquipment, + refrigerator1, !- Name + living_unit1, !- Zone or ZoneList Name + Refrigerator, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 91.0575745202123, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 1, !- Fraction Radiant + 0, !- Fraction Lost + refrigerator; !- EndUse Subcategory + +ElectricEquipment, + clotheswasher1, !- Name + living_unit1, !- Zone or ZoneList Name + ClothesWasher, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 28.4784377542718, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.8, !- Fraction Radiant + 0.2, !- Fraction Lost + clotheswasher; !- EndUse Subcategory + +ElectricEquipment, + electric_dryer1, !- Name + living_unit1, !- Zone or ZoneList Name + ClothesDryer, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 213.064557285022, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.05, !- Fraction Latent + 0.15, !- Fraction Radiant + 0.8, !- Fraction Lost + electric_dryer; !- EndUse Subcategory + +ElectricEquipment, + electric_range1, !- Name + living_unit1, !- Zone or ZoneList Name + CookingRange, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 248.154224774405, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.3, !- Fraction Latent + 0.4, !- Fraction Radiant + 0.3, !- Fraction Lost + electric_range; !- EndUse Subcategory + +ElectricEquipment, + television1, !- Name + living_unit1, !- Zone or ZoneList Name + InteriorLighting, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 1, !- Fraction Radiant + 0, !- Fraction Lost + television; !- EndUse Subcategory + +ElectricEquipment, + electric_mels1, !- Name + living_unit1, !- Zone or ZoneList Name + MiscPlugLoad, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 567.464237516869, !- Design Level + , !- Watts per Zone Floor Area + , !- Watts per Person + 0.06, !- Fraction Latent + 0.69, !- Fraction Radiant + 0.25, !- Fraction Lost + electric_mels; !- EndUse Subcategory + +ElectricEquipment, + IECC_Adj1, !- Name + living_unit1, !- Zone or ZoneList Name + MiscPlugLoad, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 1.54356736989469, !- Watts per Zone Floor Area + , !- Watts per Person + 0.0624390461422629, !- Fraction Latent + 0.41190936353998, !- Fraction Radiant + 0.251045347957769, !- Fraction Lost + IECC_adj; !- EndUse Subcategory + +ZoneInfiltration:EffectiveLeakageArea, + Living_ShermanGrimsrud_unit1, !- Name + living_unit1, !- Zone Name + always_avail, !- Schedule Name + 357.402730122675, !- Effective Air Leakage Area + 0.00029, !- Stack Coefficient + 0.000231; !- Wind Coefficient + +ZoneInfiltration:EffectiveLeakageArea, + AtticVent_unit1, !- Name + attic_unit1, !- Zone Name + always_avail, !- Schedule Name + 370, !- Effective Air Leakage Area + 0.00029, !- Stack Coefficient + 0.000231; !- Wind Coefficient + +ZoneVentilation:DesignFlowRate, + Ventilation_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + always_avail, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 0.0283168464628752, !- Design Flow Rate + , !- Flow Rate per Zone Floor Area + , !- Flow Rate per Person + , !- Air Changes per Hour + Exhaust, !- Ventilation Type + 0, !- Fan Pressure Rise + 1, !- Fan Total Efficiency + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0, !- Velocity Squared Term Coefficient + -100, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 100, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + -100, !- Delta Temperature + , !- Delta Temperature Schedule Name + -100, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 100, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +Exterior:Lights, + Exterior-Lights_unit1, !- Name + ExteriorLighting, !- Schedule Name + 52.1797739245505, !- Design Level + , !- Control Option + Exterior-Lights; !- EndUse Subcategory + +Exterior:Lights, + Garage-Lights_unit1, !- Name + InteriorLightingHE, !- Schedule Name + 8.64337749389251, !- Design Level + , !- Control Option + Garage-Lights; !- EndUse Subcategory + +DesignSpecification:OutdoorAir, + SZ_DSOA_living_unit1, !- Name + Flow/Zone, !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person + , !- Outdoor Air Flow per Zone Floor Area + 0.0283168464628752; !- Outdoor Air Flow per Zone + +Sizing:Zone, + living_unit1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12, !- Zone Cooling Design Supply Air Temperature + , !- Zone Cooling Design Supply Air Temperature Difference + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature + , !- Zone Heating Design Supply Air Temperature Difference + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio + 0.008, !- Zone Heating Design Supply Air Humidity Ratio + SZ_DSOA_living_unit1, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area + , !- Cooling Minimum Air Flow + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area + 0.1415762, !- Heating Maximum Air Flow + 0.3; !- Heating Maximum Air Flow Fraction + +Sizing:System, + Central System_unit1, !- AirLoop Name + Sensible, !- Type of Load to Size On + autosize, !- Design Outdoor Air Flow Rate + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature + 0.008, !- Preheat Design Humidity Ratio + 11, !- Precool Design Temperature + 0.008, !- Precool Design Humidity Ratio + 12, !- Central Cooling Design Supply Air Temperature + 50, !- Central Heating Design Supply Air Temperature + 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 + 0.008, !- Central Heating Design Supply Air Humidity Ratio + DesignDay, !- Cooling Supply Air Flow Rate Method + , !- Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Floor Area + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity + DesignDay, !- Heating Supply Air Flow Rate Method + , !- Heating Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Floor Area + , !- 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 + , !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity + , !- Cooling Design Capacity Per Floor Area + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity + , !- Heating Design Capacity Per Floor Area + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +Sizing:Plant, + DHW Loop_unit1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 48.8888888888889, !- Design Loop Exit Temperature + 5.55555555555556; !- Loop Design Temperature Difference + +ZoneControl:Thermostat, + Zone Thermostat_unit1, !- Name + living_unit1, !- Zone or ZoneList Name + zone_control_type, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + thermostat_living Dual SP Control; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + thermostat_living Dual SP Control, !- Name + heating_sch, !- Heating Setpoint Temperature Schedule Name + cooling_sch; !- Cooling Setpoint Temperature Schedule Name + +AirTerminal:SingleDuct:Uncontrolled, + ZoneDirectAir_unit1, !- Name + always_avail, !- Availability Schedule Name + Zone Inlet Node_unit1, !- Zone Supply Air Node Name + autosize; !- Maximum Air Flow Rate + +ZoneHVAC:EquipmentConnections, + living_unit1, !- Zone Name + ZoneEquipment_unit1, !- Zone Conditioning Equipment List Name + zone inlet nodes_unit1, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Zone Node_unit1, !- Zone Air Node Name + Zone Outlet Node_unit1; !- Zone Return Air Node or NodeList Name + +Fan:OnOff, + Supply Fan_unit1, !- Name + always_avail, !- Availability Schedule Name + 0.377, !- Fan Total Efficiency + 400, !- Pressure Rise + autosize, !- Maximum Flow Rate + 0.65, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + air loop inlet node_unit1, !- Air Inlet Node Name + cooling coil air inlet node_unit1, !- Air Outlet Node Name + , !- Fan Power Ratio Function of Speed Ratio Curve Name + , !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + General; !- EndUse Subcategory + +Coil:Cooling:DX:SingleSpeed, + DX Cooling Coil_unit1, !- Name + always_avail, !- Availability Schedule Name + autosize, !- Gross Rated Total Cooling Capacity + autosize, !- Gross Rated Sensible Heat Ratio + 3.97008850025305, !- Gross Rated Cooling COP + autosize, !- Rated Air Flow Rate + , !- Rated Evaporator Fan Power Per Volume Flow Rate + Cooling Coil Air Inlet Node_unit1, !- Air Inlet Node Name + Heating Coil Air Inlet Node_unit1, !- Air Outlet Node Name + Cool-Cap-FT, !- Total Cooling Capacity Function of Temperature Curve Name + ConstantCubic, !- Total Cooling Capacity Function of Flow Fraction Curve Name + Cool-EIR-FT, !- Energy Input Ratio Function of Temperature Curve Name + ConstantCubic, !- Energy Input Ratio Function of Flow Fraction Curve Name + Cool-PLF-fPLR; !- Part Load Fraction Correlation Curve Name + +Coil:Heating:Fuel, + Main Fuel heating coil_unit1, !- Name + always_avail, !- Availability Schedule Name + FuelOil#2, !- Fuel Type + 0.78, !- Burner Efficiency + autosize, !- Nominal Capacity + heating coil air inlet node_unit1, !- Air Inlet Node Name + air loop outlet node_unit1; !- Air Outlet Node Name + +AirLoopHVAC:UnitaryHeatCool, + ACandF_unit1, !- Name + always_avail, !- Availability Schedule Name + air loop inlet node_unit1, !- Unitary System Air Inlet Node Name + air loop outlet node_unit1, !- Unitary System Air Outlet Node Name + fan_cycle, !- Supply Air Fan Operating Mode Schedule Name + 80, !- Maximum Supply Air Temperature + autosize, !- Cooling Supply Air Flow Rate + autosize, !- Heating Supply Air Flow Rate + 0, !- No Load Supply Air Flow Rate + living_unit1, !- Controlling Zone or Thermostat Location + Fan:OnOff, !- Supply Fan Object Type + Supply Fan_unit1, !- Supply Fan Name + BlowThrough, !- Fan Placement + Coil:Heating:Fuel, !- Heating Coil Object Type + Main Fuel Heating Coil_unit1, !- Heating Coil Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + DX Cooling Coil_unit1, !- Cooling Coil Name + None; !- Dehumidification Control Type + +AirLoopHVAC, + Central System_unit1, !- Name + , !- Controller List Name + availability list, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate + Air Loop Branches_unit1, !- Branch List Name + , !- Connector List Name + Air Loop Inlet Node_unit1, !- Supply Side Inlet Node Name + Return Air Mixer Outlet_unit1, !- Demand Side Outlet Node Name + Zone Equipment Inlet Node_unit1, !- Demand Side Inlet Node Names + Air Loop Outlet Node_unit1; !- Supply Side Outlet Node Names + +AirLoopHVAC:ZoneSplitter, + Zone Supply Air Splitter_unit1, !- Name + Zone Equipment Inlet Node_unit1, !- Inlet Node Name + Zone Inlet Node_unit1; !- Outlet 1 Node Name + +AirLoopHVAC:SupplyPath, + SupplyPath_unit1, !- Name + Zone Equipment Inlet Node_unit1, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter, !- Component 1 Object Type + Zone Supply Air Splitter_unit1; !- Component 1 Name + +AirLoopHVAC:ZoneMixer, + Zone Return Air Mixer_unit1, !- Name + Return Air Mixer Outlet_unit1, !- Outlet Node Name + Zone Outlet Node_unit1; !- Inlet 1 Node Name + +AirLoopHVAC:ReturnPath, + ReturnPath_unit1, !- Name + Return Air Mixer Outlet_unit1, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Zone Return Air Mixer_unit1; !- Component 1 Name + +Branch, + Air Loop Main Branch_unit1, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:UnitaryHeatCool, !- Component 1 Object Type + ACandF_unit1, !- Component 1 Name + Air Loop Inlet Node_unit1, !- Component 1 Inlet Node Name + Air loop outlet node_unit1; !- Component 1 Outlet Node Name + +Branch, + Mains Inlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Mains Pressure_unit1, !- Component 1 Name + Mains Inlet Node_unit1, !- Component 1 Inlet Node Name + Mains Pressure Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + DHW Supply Outlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + DHW Supply Outlet Pipe_unit1, !- Component 1 Name + DHW Supply Outlet Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name + DHW Supply Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + DHW Demand Inlet Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + DHW Demand Inlet Pipe_unit1, !- Component 1 Name + DHW Demand Inlet Node_unit1, !- Component 1 Inlet Node Name + DHW Demand Inlet Pipe Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Sink Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Sinks_unit1, !- Component 1 Name + Water Sink Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Sink outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Shower Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Showers_unit1, !- Component 1 Name + Water Shower Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Shower Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water ClothesWasher Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW ClothesWasher_unit1, !- Component 1 Name + Water ClothesWasher Inlet Node_unit1, !- Component 1 Inlet Node Name + Water ClothesWasher Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Dishwasher Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW DishWasher_unit1, !- Component 1 Name + Water DishWasher Inlet Node_unit1, !- Component 1 Inlet Node Name + Water DishWasher outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Bath Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + DHW Baths_unit1, !- Component 1 Name + Water Bath Inlet Node_unit1, !- Component 1 Inlet Node Name + Water bath Outlet Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Mains Makeup Branch_unit1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Mains Makeup Pipe_unit1, !- Component 1 Name + Mains Makeup Pipe Inlet Node_unit1, !- Component 1 Inlet Node Name + Mains Makeup Node_unit1; !- Component 1 Outlet Node Name + +Branch, + Water Heater Branch_unit1, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + Water Heater_unit1, !- Component 1 Name + Water Heater Use Inlet Node_unit1, !- Component 1 Inlet Node Name + Water Heater Use Outlet Node_unit1; !- Component 1 Outlet Node Name + +BranchList, + Air Loop Branches_unit1, !- Name + Air Loop Main Branch_unit1; !- Branch 1 Name + +BranchList, + DHW Supply Branches_unit1, !- Name + Mains Inlet Branch_unit1, !- Branch 1 Name + Water Heater Branch_unit1, !- Branch 2 Name + DHW Supply Outlet Branch_unit1; !- Branch 3 Name + +BranchList, + DHW Demand Branches_unit1, !- Name + DHW Demand Inlet Branch_unit1, !- Branch 1 Name + Water Sink Branch_unit1, !- Branch 2 Name + Water Shower Branch_unit1, !- Branch 3 Name + Water ClothesWasher Branch_unit1, !- Branch 4 Name + Water Dishwasher Branch_unit1, !- Branch 5 Name + Water Bath Branch_unit1, !- Branch 6 Name + Mains Makeup Branch_unit1; !- Branch 7 Name + +Connector:Splitter, + DHW Demand Splitter_unit1, !- Name + DHW Demand Inlet Branch_unit1, !- Inlet Branch Name + Water Sink Branch_unit1, !- Outlet Branch 1 Name + Water Shower Branch_unit1, !- Outlet Branch 2 Name + Water ClothesWasher Branch_unit1, !- Outlet Branch 3 Name + Water Dishwasher Branch_unit1, !- Outlet Branch 4 Name + Water Bath Branch_unit1; !- Outlet Branch 5 Name + +Connector:Splitter, + DHW Supply Splitter_unit1, !- Name + Mains Inlet Branch_unit1, !- Inlet Branch Name + Water Heater Branch_unit1; !- Outlet Branch 1 Name + +Connector:Mixer, + DHW Demand Mixer_unit1, !- Name + Mains Makeup Branch_unit1, !- Outlet Branch Name + Water Sink Branch_unit1, !- Inlet Branch 1 Name + Water Shower Branch_unit1, !- Inlet Branch 2 Name + Water ClothesWasher Branch_unit1, !- Inlet Branch 3 Name + Water Dishwasher Branch_unit1, !- Inlet Branch 4 Name + Water Bath Branch_unit1; !- Inlet Branch 5 Name + +Connector:Mixer, + DHW Supply Mixer_unit1, !- Name + DHW Supply Outlet Branch_unit1, !- Outlet Branch Name + Water Heater Branch_unit1; !- Inlet Branch 1 Name + +ConnectorList, + DHW Demand Connectors_unit1, !- Name + Connector:Splitter, !- Connector 1 Object Type + DHW Demand Splitter_unit1, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + DHW Demand Mixer_unit1; !- Connector 2 Name + +ConnectorList, + DHW Supply Connectors_unit1, !- Name + Connector:Splitter, !- Connector 1 Object Type + DHW Supply Splitter_unit1, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + DHW Supply Mixer_unit1; !- Connector 2 Name + +NodeList, + Zone Inlet Nodes_unit1, !- Name + Zone Inlet Node_unit1; !- Node 1 Name + +OutdoorAir:Node, + outside air inlet node_unit1, !- Name + 0.914355407629293; !- Height Above Ground + +OutdoorAir:NodeList, + outdoor air node_unit1; !- Node or NodeList Name 1 + +Pipe:Adiabatic, + DHW Supply Outlet Pipe_unit1, !- Name + DHW Supply Outlet Pipe Inlet Node_unit1, !- Inlet Node Name + DHW Supply Outlet Node_unit1; !- Outlet Node Name + +Pipe:Adiabatic, + Mains Makeup Pipe_unit1, !- Name + Mains Makeup Pipe Inlet Node_unit1, !- Inlet Node Name + Mains Makeup Node_unit1; !- Outlet Node Name + +Pipe:Adiabatic, + DHW Demand Inlet Pipe_unit1, !- Name + DHW Demand Inlet Node_unit1, !- Inlet Node Name + DHW Demand Inlet Pipe Outlet Node_unit1; !- Outlet Node Name + +Pump:VariableSpeed, + Mains Pressure_unit1, !- Name + Mains Inlet Node_unit1, !- Inlet Node Name + Mains Pressure Outlet Node_unit1, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate + 1, !- Design Pump Head + 0, !- Design Power Consumption + 1, !- Motor Efficiency + 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 + Intermittent; !- Pump Control Type + +WaterHeater:Mixed, + Water Heater_unit1, !- Name + 0.196841372, !- Tank Volume + dhw_setpt, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference + 50, !- Maximum Temperature Limit + Cycle, !- Heater Control Type + autosize, !- Heater Maximum Capacity + 0, !- Heater Minimum Capacity + 0, !- Heater Ignition Minimum Flow Rate + , !- Heater Ignition Delay + FuelOil#1, !- Heater Fuel Type + 0.8, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate + , !- Off Cycle Parasitic Fuel Type + , !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + living_unit1, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 6.27714230487778, !- Off Cycle Loss Coefficient to Ambient Temperature + 1, !- Off Cycle Loss Fraction to Zone + 6.27714230487778, !- On Cycle Loss Coefficient to Ambient Temperature + 1, !- On Cycle Loss Fraction to Zone + 0, !- Peak Use Flow Rate + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Water Heater use inlet node_unit1, !- Use Side Inlet Node Name + Water Heater use outlet node_unit1, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + autosize, !- Use Side Design Flow Rate + 0, !- Source Side Design Flow Rate + 1.5; !- Indirect Water Heating Recovery Time + +WaterHeater:Sizing, + Water Heater_unit1, !- WaterHeater Name + ResidentialHUD-FHAMinimum, !- Design Mode + , !- Time Storage Can Meet Peak Draw + , !- Time for Tank Recovery + , !- Nominal Tank Volume for Autosizing Plant Connections + 3, !- Number of Bedrooms + 3; !- Number of Bathrooms + +PlantLoop, + DHW Loop_unit1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + DHW Loop Operation_unit1, !- Plant Equipment Operation Scheme Name + DHW Supply Outlet Node_unit1, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature + 0, !- Minimum Loop Temperature + autosize, !- Maximum Loop Flow Rate + 0, !- Minimum Loop Flow Rate + autocalculate, !- Plant Loop Volume + Mains Inlet Node_unit1, !- Plant Side Inlet Node Name + DHW Supply Outlet Node_unit1, !- Plant Side Outlet Node Name + DHW Supply Branches_unit1, !- Plant Side Branch List Name + DHW Supply Connectors_unit1, !- Plant Side Connector List Name + DHW Demand Inlet Node_unit1, !- Demand Side Inlet Node Name + Mains Makeup Node_unit1, !- Demand Side Outlet Node Name + DHW Demand Branches_unit1, !- Demand Side Branch List Name + DHW Demand Connectors_unit1, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +PlantEquipmentList, + DHW Plant Equipment_unit1, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + Water Heater_unit1; !- Equipment 1 Name + +PlantEquipmentOperation:HeatingLoad, + DHW Control Scheme_unit1, !- Name + 0, !- Load Range 1 Lower Limit + 1000000000000000, !- Load Range 1 Upper Limit + DHW Plant Equipment_unit1; !- Range 1 Equipment List Name + +PlantEquipmentOperationSchemes, + DHW Loop Operation_unit1, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + DHW Control Scheme_unit1, !- Control Scheme 1 Name + always_avail; !- Control Scheme 1 Schedule Name + +AvailabilityManager:Scheduled, + System availability, !- Name + always_avail; !- Schedule Name + +AvailabilityManagerAssignmentList, + availability list, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + System availability; !- Availability Manager 1 Name + +SetpointManager:Scheduled, + DHW Loop Setpoint Manager_unit1, !- Name + Temperature, !- Control Variable + DHWSupplySetpoint, !- Schedule Name + DHW Supply Outlet Node_unit1; !- Setpoint Node or NodeList Name + +WaterUse:Equipment, + Clothes Washer_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 1.6219189818e-06, !- Peak Flow Rate + ClothesWasher, !- Flow Rate Fraction Schedule Name + CWWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Dishwasher_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 6.36685353e-07, !- Peak Flow Rate + Dishwasher, !- Flow Rate Fraction Schedule Name + DWWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Sinks_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 7.1934e-05, !- Peak Flow Rate + BA_sink_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Showers_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 0.000141975, !- Peak Flow Rate + BA_shower_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Equipment, + Baths_unit1, !- Name + Domestic Hot Water, !- EndUse Subcategory + 0.00027764, !- Peak Flow Rate + BA_bath_sch, !- Flow Rate Fraction Schedule Name + SSBWaterTempSchedule; !- Target Temperature Schedule Name + +WaterUse:Connections, + DHW Sinks_unit1, !- Name + Water Sink Inlet Node_unit1, !- Inlet Node Name + Water Sink Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Sinks_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW Showers_unit1, !- Name + Water Shower Inlet Node_unit1, !- Inlet Node Name + Water Shower Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Showers_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW ClothesWasher_unit1, !- Name + Water ClothesWasher Inlet Node_unit1, !- Inlet Node Name + Water ClothesWasher Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Clothes Washer_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW DishWasher_unit1, !- Name + Water DishWasher Inlet Node_unit1, !- Inlet Node Name + Water DishWasher Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Dishwasher_unit1; !- Water Use Equipment 1 Name + +WaterUse:Connections, + DHW Baths_unit1, !- Name + Water Bath Inlet Node_unit1, !- Inlet Node Name + Water Bath Outlet Node_unit1, !- 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 + None, !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger UFactor Times Area + Baths_unit1; !- Water Use Equipment 1 Name + +Curve:Quadratic, + HPACCoolCapFFF, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Quadratic, + HPACCOOLEIRFFF, !- Name + 1.156, !- Coefficient1 Constant + -0.1816, !- Coefficient2 x + 0.0256, !- Coefficient3 x2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Quadratic, + HPACCOOLPLFFPLR, !- Name + 0.85, !- Coefficient1 Constant + 0.15, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPACHeatEIRFFF, !- Name + 1.3824, !- Coefficient1 Constant + -0.4336, !- Coefficient2 x + 0.0512, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + ACCoolingCAPFFF, !- Name + 0.718605468, !- Coefficient1 Constant + 0.410099989, !- Coefficient2 x + -0.128705457, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACCoolingEIRFFF, !- Name + 1.32299905, !- Coefficient1 Constant + -0.477711207, !- Coefficient2 x + 0.154712157, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACCoolingPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPCoolingCAPFFF, !- Name + 0.718664047, !- Coefficient1 Constant + 0.41797409, !- Coefficient2 x + -0.136638137, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPCoolingEIRFFF, !- Name + 1.143487507, !- Coefficient1 Constant + -0.13943972, !- Coefficient2 x + -0.004047787, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPCOOLPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPHeatingCAPFFF, !- Name + 0.694045465, !- Coefficient1 Constant + 0.474207981, !- Coefficient2 x + -0.168253446, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHeatingEIRFFF, !- Name + 2.185418751, !- Coefficient1 Constant + -1.942827919, !- Coefficient2 x + 0.757409168, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHeatPLFFPLR, !- Name + 0.9, !- Coefficient1 Constant + 0.1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPLowStageHeatingCAPFFF, !- Name + 0.741466907, !- Coefficient1 Constant + 0.378645444, !- Coefficient2 x + -0.119754733, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPLowStageHeatingEIRFFF, !- Name + 2.153618211, !- Coefficient1 Constant + -1.737190609, !- Coefficient2 x + 0.584269478, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageHeatingCAPFFF, !- Name + 0.76634609, !- Coefficient1 Constant + 0.32840943, !- Coefficient2 x + -0.094701495, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageHeatingEIRFFF, !- Name + 2.001041353, !- Coefficient1 Constant + -1.58869128, !- Coefficient2 x + 0.587593517, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HP2StageHeatingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + HPLowStageCoolingCAPFFF, !- Name + 0.655239515, !- Coefficient1 Constant + 0.511655216, !- Coefficient2 x + -0.166894731, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPLowStageCoolingEIRFFF, !- Name + 1.639108268, !- Coefficient1 Constant + -0.998953996, !- Coefficient2 x + 0.359845728, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageCoolingCAPFFF, !- Name + 0.618281092, !- Coefficient1 Constant + 0.569060264, !- Coefficient2 x + -0.187341356, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HPHighStageCoolingEIRFFF, !- Name + 1.570774717, !- Coefficient1 Constant + -0.914152018, !- Coefficient2 x + 0.343377302, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + HP2StageCoolingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + ACLowStageCoolingCAPFFF, !- Name + 0.65673024, !- Coefficient1 Constant + 0.516470835, !- Coefficient2 x + -0.172887149, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACLowStageCoolingEIRFFF, !- Name + 1.562945114, !- Coefficient1 Constant + -0.791859997, !- Coefficient2 x + 0.230030877, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACHighStageCoolingCAPFFF, !- Name + 0.690334551, !- Coefficient1 Constant + 0.464383753, !- Coefficient2 x + -0.154507638, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + ACHighStageCoolingEIRFFF, !- Name + 1.31565404, !- Coefficient1 Constant + -0.482467162, !- Coefficient2 x + 0.166239001, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1.5, !- Maximum Value of x + 0, !- Minimum Curve Output + 2, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless; !- Output Unit Type + +Curve:Quadratic, + AC2StageCoolingPLFFPLR, !- Name + 0.93, !- Coefficient1 Constant + 0.07, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +Curve:Quadratic, + Cool-PLF-fPLR, !- Name + 0.80141423, !- Coefficient1 Constant + 0.23744685, !- Coefficient2 x + -0.0393773, !- Coefficient3 x2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0.7, !- Minimum Curve Output + 1; !- Maximum Curve Output + +Curve:Cubic, + HPACHeatCapFT, !- Name + 0.758746, !- Coefficient1 Constant + 0.027626, !- Coefficient2 x + 0.000148716, !- Coefficient3 x2 + 3.4992e-06, !- Coefficient4 x3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +Curve:Cubic, + HPACHeatCapFFF, !- Name + 0.84, !- Coefficient1 Constant + 0.16, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + +Curve:Cubic, + HPACHeatEIRFT, !- Name + 1.19248, !- Coefficient1 Constant + -0.0300438, !- Coefficient2 x + 0.00103745, !- Coefficient3 x2 + -2.3328e-05, !- Coefficient4 x3 + -20, !- Minimum Value of x + 20; !- Maximum Value of x + +Curve:Cubic, + Fan-EIR-fPLR, !- Name + 0, !- Coefficient1 Constant + 1, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0, !- Minimum Curve Output + 1; !- Maximum Curve Output + +Curve:Cubic, + ConstantCubic, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 x3 + -100, !- Minimum Value of x + 100; !- Maximum Value of x + +Curve:Biquadratic, + HPWHHeatingCapFTemp, !- Name + 0.369827, !- Coefficient1 Constant + 0.043341, !- Coefficient2 x + -0.00023, !- Coefficient3 x2 + 0.000466, !- Coefficient4 y + 2.6e-05, !- Coefficient5 y2 + -0.00027, !- Coefficient6 xy + 0, !- Minimum Value of x + 40, !- Maximum Value of x + 20, !- Minimum Value of y + 90, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPWHHeatingCOPFTemp, !- Name + 1.19713, !- Coefficient1 Constant + 0.077849, !- Coefficient2 x + -1.6e-06, !- Coefficient3 x2 + -0.02675, !- Coefficient4 y + 0.000296, !- Coefficient5 y2 + -0.00112, !- Coefficient6 xy + 0, !- Minimum Value of x + 40, !- Maximum Value of x + 20, !- Minimum Value of y + 90, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPACCoolCapFT, !- Name + 0.766956, !- Coefficient1 Constant + 0.0107756, !- Coefficient2 x + -4.14703e-05, !- Coefficient3 x2 + 0.00134961, !- Coefficient4 y + -0.000261144, !- Coefficient5 y2 + 0.000457488, !- Coefficient6 xy + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +Curve:Biquadratic, + HPACCOOLEIRFT, !- Name + 0.297145, !- Coefficient1 Constant + 0.0430933, !- Coefficient2 x + -0.000748766, !- Coefficient3 x2 + 0.00597727, !- Coefficient4 y + 0.000482112, !- Coefficient5 y2 + -0.000956448, !- Coefficient6 xy + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 21.11111, !- Minimum Value of y + 46.11111; !- Maximum Value of y + +Curve:Biquadratic, + Defrost_EIR_FT, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 y + 0, !- Coefficient5 y2 + 0, !- Coefficient6 xy + 0, !- Minimum Value of x + 100, !- Maximum Value of x + 0, !- Minimum Value of y + 100; !- Maximum Value of y + +Curve:Biquadratic, + dummy-waste-heat-curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x2 + 0, !- Coefficient4 y + 0, !- Coefficient5 y2 + 0, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 1, !- Minimum Curve Output + 1, !- Maximum Curve Output + Dimensionless, !- Input Unit Type for X + Dimensionless, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACCoolingCAPFTemp, !- Name + 1.5509, !- Coefficient1 Constant + -0.07505, !- Coefficient2 x + 0.0031, !- Coefficient3 x2 + 0.0024, !- Coefficient4 y + -5e-05, !- Coefficient5 y2 + -0.00043, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACCoolingEIRFTemp, !- Name + -0.30428, !- Coefficient1 Constant + 0.11805, !- Coefficient2 x + -0.00342, !- Coefficient3 x2 + -0.00626, !- Coefficient4 y + 0.0007, !- Coefficient5 y2 + -0.00047, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPCoolingCAPFTemp, !- Name + 1.55736, !- Coefficient1 Constant + -0.074448, !- Coefficient2 x + 0.003099, !- Coefficient3 x2 + 0.00146, !- Coefficient4 y + -4.1e-05, !- Coefficient5 y2 + -0.000427, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPCoolingEIRFTemp, !- Name + -0.350448, !- Coefficient1 Constant + 0.11681, !- Coefficient2 x + -0.0034, !- Coefficient3 x2 + -0.001226, !- Coefficient4 y + 0.000601, !- Coefficient5 y2 + -0.000467, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHeatingCAPFTemp, !- Name + 0.876825, !- Coefficient1 Constant + -0.002955, !- Coefficient2 x + -5.8e-05, !- Coefficient3 x2 + 0.025335, !- Coefficient4 y + 0.000196, !- Coefficient5 y2 + -4.3e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHeatingEIRFTemp, !- Name + 0.704658, !- Coefficient1 Constant + 0.008767, !- Coefficient2 x + 0.000625, !- Coefficient3 x2 + -0.009037, !- Coefficient4 y + 0.000738, !- Coefficient5 y2 + -0.001025, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageHeatingCAPFTemp, !- Name + 0.84613, !- Coefficient1 Constant + -0.002279, !- Coefficient2 x + -4.7e-05, !- Coefficient3 x2 + 0.026703, !- Coefficient4 y + 0.000201, !- Coefficient5 y2 + -7.9e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageHeatingEIRFTemp, !- Name + 0.551837, !- Coefficient1 Constant + 0.02038, !- Coefficient2 x + 0.000546, !- Coefficient3 x2 + -0.009638, !- Coefficient4 y + 0.000785, !- Coefficient5 y2 + -0.00125, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageHeatingCAPFTemp, !- Name + 0.818223, !- Coefficient1 Constant + 0.001981, !- Coefficient2 x + -0.000203, !- Coefficient3 x2 + 0.028703, !- Coefficient4 y + 0.000207, !- Coefficient5 y2 + -7.1e-05, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageHeatingEIRFTemp, !- Name + 0.81584, !- Coefficient1 Constant + -0.00615, !- Coefficient2 x + 0.001021, !- Coefficient3 x2 + -0.001301, !- Coefficient4 y + 0.001083, !- Coefficient5 y2 + -0.001487, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageCoolingCAPFTemp, !- Name + 1.658788, !- Coefficient1 Constant + -0.083453, !- Coefficient2 x + 0.003424, !- Coefficient3 x2 + 0.002433, !- Coefficient4 y + -4.5e-05, !- Coefficient5 y2 + -0.000534, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPLowStageCoolingEIRFTemp, !- Name + -0.582916, !- Coefficient1 Constant + 0.158101, !- Coefficient2 x + -0.004398, !- Coefficient3 x2 + -0.020335, !- Coefficient4 y + 0.00108, !- Coefficient5 y2 + -0.00064, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageCoolingCAPFTemp, !- Name + 1.472738, !- Coefficient1 Constant + -0.067222, !- Coefficient2 x + 0.00292, !- Coefficient3 x2 + 5.2e-05, !- Coefficient4 y + -3e-05, !- Coefficient5 y2 + -0.000359, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + HPHighStageCoolingEIRFTemp, !- Name + -0.488196, !- Coefficient1 Constant + 0.099162, !- Coefficient2 x + -0.00237, !- Coefficient3 x2 + 0.019503, !- Coefficient4 y + 0.00043, !- Coefficient5 y2 + -0.001097, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACLowStageCoolingCAPFTemp, !- Name + 1.66458, !- Coefficient1 Constant + -0.08039, !- Coefficient2 x + 0.0033, !- Coefficient3 x2 + 0.00124, !- Coefficient4 y + -3e-05, !- Coefficient5 y2 + -0.00052, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACLowStageCoolingEIRFTemp, !- Name + -0.42738, !- Coefficient1 Constant + 0.14191, !- Coefficient2 x + -0.00412, !- Coefficient3 x2 + -0.01406, !- Coefficient4 y + 0.00083, !- Coefficient5 y2 + -0.00043, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACHighStageCoolingCAPFTemp, !- Name + 1.36788, !- Coefficient1 Constant + -0.06257, !- Coefficient2 x + 0.0028, !- Coefficient3 x2 + 0.00504, !- Coefficient4 y + -7e-05, !- Coefficient5 y2 + -0.00045, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + ACHighStageCoolingEIRFTemp, !- Name + 0.04232, !- Coefficient1 Constant + 0.07892, !- Coefficient2 x + -0.00238, !- Coefficient3 x2 + -0.00304, !- Coefficient4 y + 0.00053, !- Coefficient5 y2 + -0.00032, !- Coefficient6 xy + 0, !- Minimum Value of x + 50, !- Maximum Value of x + 0, !- Minimum Value of y + 50, !- Maximum Value of y + 0, !- Minimum Curve Output + 5, !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + +Curve:Biquadratic, + Cool-Cap-fT, !- Name + 1.26489391, !- Coefficient1 Constant + -0.035054982, !- Coefficient2 x + 0.00211086, !- Coefficient3 x2 + -0.001526886, !- Coefficient4 y + -7.0308e-06, !- Coefficient5 y2 + -0.0004691844, !- Coefficient6 xy + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + +Curve:Biquadratic, + Cool-EIR-fT, !- Name + 0.38402403, !- Coefficient1 Constant + 0.029696724, !- Coefficient2 x + -0.0011329308, !- Coefficient3 x2 + 0.006490674, !- Coefficient4 y + 0.0002626992, !- Coefficient5 y2 + -0.0001207224, !- Coefficient6 xy + -100, !- Minimum Value of x + 100, !- Maximum Value of x + -100, !- Minimum Value of y + 100; !- Maximum Value of y + +Output:VariableDictionary, + Regular; !- Key Field + +OUTPUT:VARIABLEDICTIONARY, + IDF; !- Key Field + +OUTPUT:SCHEDULES, + Hourly; !- Key Field + +Output:Constructions, + Constructions, !- Details Type 1 + Materials; !- Details Type 2 + +OUTPUT:TABLE:SUMMARYREPORTS, + AllSummary; !- Report 1 Name + +Output:Table:Monthly, + FanSplit, !- Name + 3, !- Digits After Decimal + Air System Cooling Coil Total Cooling Energy, !- Variable or Meter 1 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 1 + Air System Fan Electric Energy, !- Variable or Meter 2 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 2 + Air System Heating Coil Total Heating Energy, !- Variable or Meter 3 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 3 + Air System Fan Electric Energy, !- Variable or Meter 4 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 4 + Air System Fan Electric Energy, !- Variable or Meter 5 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 5 + +Output:Table:Monthly, + CoilLoads, !- Name + 2, !- Digits After Decimal + Heating Coil Total Heating Rate, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating Coil Air Heating Rate, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Cooling Coil Total Cooling Rate, !- Variable or Meter 3 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 3 + +Output:Table:Monthly, + Water Heater: Loads, !- Name + 2, !- Digits After Decimal + Water Heater Total Demand Rate, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Water Heater Total Demand Energy, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Water Heater Heating Rate, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Water Heater Heating Energy, !- Variable or Meter 4 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 4 + +Output:Table:Monthly, + Heating and Cooling Loads, !- Name + 2, !- Digits After Decimal + Zone/Sys Sensible Cooling Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone/Sys Sensible Heating Energy, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + Lighting Loads, !- Name + 2, !- Digits After Decimal + Zone Lights Electric Consumption, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Exterior Lights Electric Consumption, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + +Output:Table:Monthly, + InternalGains, !- Name + 2, !- Digits After Decimal + Zone People Total Heat Gain, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Lights Total Heat Gain, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Zone Electric Equipment Total Heat Gain, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Zone Gas Equipment Total Heat Gain, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Zone Other Equipment Total Heat Gain, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Zone Total Internal Total Heat Gain, !- Variable or Meter 6 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 6 + +OUTPUTCONTROL:TABLE:STYLE, + CommaAndHTML, !- Column Separator + None; !- Unit Conversion + +OUTPUT:VARIABLE, + *, !- Key Value + Air System Outdoor Air Minimum Flow Fraction, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Air System Total Cooling Energy, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Air System Total Heating Energy, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Heat Exchanger Latent Effectiveness, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Heat Exchanger Sensible Effectiveness, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Heat Exchanger Total Heating Rate, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Water Heater Heating Energy, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Zone Ideal Loads Zone Total Cooling Energy, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Zone Ideal Loads Zone Total Heating Energy, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Zone Thermostat Cooling Setpoint Temperature, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:VARIABLE, + *, !- Key Value + Zone Thermostat Heating Setpoint Temperature, !- Variable Name + Hourly; !- Reporting Frequency + +OUTPUT:METER, + Baseboard:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Cooling:DistrictCooling, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Cooling:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Cooling:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Cooling:Gas, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + CoolingCoils:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Electricity:Facility, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Fans:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Gas:Facility, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + HeatRejection:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + HeatRejection:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Heating:DistrictHeating, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Heating:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Heating:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Heating:Gas, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + HeatingCoils:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Pumps:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Refrigeration:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + Refrigeration:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + WaterSystems:Electricity, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:METER, + WaterSystems:EnergyTransfer, !- Key Name + Monthly; !- Reporting Frequency + +OUTPUT:SQLITE, + SimpleAndTabular; !- Option Type +! +! ------------------------------------------------------------- +! New objects created from ExpandObjects +! ------------------------------------------------------------- +! + +BuildingSurface:Detailed, + Inter zone floor 1, !- Name + Floor, !- Surface Type + Interior Floor, !- Construction Name + living_unit1, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 2.59246341463415, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 2.59246341463415, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 2.59246341463415, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 2.59246341463415; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + ceiling_unit1, !- Name + Ceiling, !- Surface Type + Interior Ceiling, !- Construction Name + living_unit1, !- Zone Name + Zone, !- Outside Boundary Condition + attic_unit1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 5.18392682926829, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 5.18392682926829, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 5.18392682926829, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 9.09981820971244, !- Vertex 4 Y-coordinate + 5.18392682926829; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Roof_front_unit1, !- Name + Roof, !- Surface Type + Exterior Roof, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 5.18392682926829, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 5.18392682926829, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 4.54990910485622, !- Vertex 3 Y-coordinate + 6.6995631975537, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 4.54990910485622, !- Vertex 4 Y-coordinate + 6.6995631975537; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Roof_back_unit1, !- Name + Roof, !- Surface Type + Exterior Roof, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 5.18392682926829, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 5.18392682926829, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 4.54990910485622, !- Vertex 3 Y-coordinate + 6.6995631975537, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 4.54990910485622, !- Vertex 4 Y-coordinate + 6.6995631975537; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Roof_right_unit1, !- Name + Wall, !- Surface Type + Gable_end, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 3, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 5.18392682926829, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 5.18392682926829, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 4.54990910485622, !- Vertex 3 Y-coordinate + 6.6995631975537; !- Vertex 3 Z-coordinate + +BuildingSurface:Detailed, + Roof_left_unit1, !- Name + Wall, !- Surface Type + Gable_end, !- Construction Name + attic_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 3, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 5.18392682926829, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 5.18392682926829, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 4.54990910485622, !- Vertex 3 Y-coordinate + 6.6995631975537; !- Vertex 3 Z-coordinate + +BuildingSurface:Detailed, + Wall_ldf_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 0.001, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 0.001, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 0, !- Vertex 3 Y-coordinate + 2.59246341463415, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 2.59246341463415; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_sdr_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 0.001, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 0.001, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 2.59246341463415, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 2.59246341463415; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_ldb_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 0.001, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 0.001, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 2.59246341463415, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 9.09981820971244, !- Vertex 4 Y-coordinate + 2.59246341463415; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_sdl_1.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 0.001, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 0.001, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 0, !- Vertex 3 Y-coordinate + 2.59246341463415, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 9.09981820971244, !- Vertex 4 Y-coordinate + 2.59246341463415; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_ldf_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 2.59246341463415, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 2.59246341463415, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 0, !- Vertex 3 Y-coordinate + 5.18392682926829, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 5.18392682926829; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_sdr_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 2.59246341463415, !- Vertex 1 Z-coordinate + 12.1330909462833, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 2.59246341463415, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 5.18392682926829, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 5.18392682926829; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_ldb_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 12.1330909462833, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 2.59246341463415, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 2.59246341463415, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 5.18392682926829, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 9.09981820971244, !- Vertex 4 Y-coordinate + 5.18392682926829; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Wall_sdl_2.unit1, !- Name + Wall, !- Surface Type + Exterior Wall, !- Construction Name + living_unit1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 9.09981820971244, !- Vertex 1 Y-coordinate + 2.59246341463415, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 0, !- Vertex 2 Y-coordinate + 2.59246341463415, !- Vertex 2 Z-coordinate + 0, !- Vertex 3 X-coordinate + 0, !- Vertex 3 Y-coordinate + 5.18392682926829, !- Vertex 3 Z-coordinate + 0, !- Vertex 4 X-coordinate + 9.09981820971244, !- Vertex 4 Y-coordinate + 5.18392682926829; !- Vertex 4 Z-coordinate + +BuildingSurface:Detailed, + Floor_unit1, !- Name + Floor, !- Surface Type + Interior Floor, !- Construction Name + living_unit1, !- Zone Name + OtherSideCoefficients, !- Outside Boundary Condition + surfPropOthSdCoefSlabAverage, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0, !- Vertex 1 X-coordinate + 0, !- Vertex 1 Y-coordinate + 0.001, !- Vertex 1 Z-coordinate + 0, !- Vertex 2 X-coordinate + 9.09981820971244, !- Vertex 2 Y-coordinate + 0.001, !- Vertex 2 Z-coordinate + 12.1330909462833, !- Vertex 3 X-coordinate + 9.09981820971244, !- Vertex 3 Y-coordinate + 0.001, !- Vertex 3 Z-coordinate + 12.1330909462833, !- Vertex 4 X-coordinate + 0, !- Vertex 4 Y-coordinate + 0.001; !- Vertex 4 Z-coordinate diff --git a/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0.idf b/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0.idf new file mode 100644 index 000000000..6692fca7d --- /dev/null +++ b/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0.idf @@ -0,0 +1,2215 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + No, !- Do Zone Sizing Calculation + No, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +Building, + Building, !- Name + 0, !- North Axis + Suburbs, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + ; !- Minimum Number of Warmup Days + +ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 20, !- Calculation Frequency + 15000, !- Maximum Figures in Shadow Overlap Calculations + SutherlandHodgman, !- Polygon Clipping Algorithm + SimpleSkyDiffuseModeling; !- Sky Diffuse Modeling Algorithm + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200, !- Surface Temperature Upper Limit + 0.1, !- Minimum Surface Convection Heat Transfer Coefficient Value + 1000; !- Maximum Surface Convection Heat Transfer Coefficient Value + +Timestep, + 4; !- Number of Timesteps per Hour + +ConvergenceLimits, + 1, !- Minimum System Timestep + 50; !- Maximum HVAC Iterations + +RunPeriod, + ArchSim, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + , !- 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 + ; !- Treat Weather as Actual + +RunPeriodControl:DaylightSavingTime, + Last Sunday in March, !- Start Date + Last Sunday in October; !- End Date + +Site:GroundTemperature:BuildingSurface, + 14, !- January Ground Temperature + 14, !- February Ground Temperature + 14, !- March Ground Temperature + 14, !- April Ground Temperature + 14, !- May Ground Temperature + 14, !- June Ground Temperature + 14, !- July Ground Temperature + 14, !- August Ground Temperature + 14, !- September Ground Temperature + 14, !- October Ground Temperature + 14, !- November Ground Temperature + 14; !- December Ground Temperature + +Site:GroundReflectance, + 0.2, !- January Ground Reflectance + 0.2, !- February Ground Reflectance + 0.2, !- March Ground Reflectance + 0.2, !- April Ground Reflectance + 0.2, !- May Ground Reflectance + 0.2, !- June Ground Reflectance + 0.2, !- July Ground Reflectance + 0.2, !- August Ground Reflectance + 0.2, !- September Ground Reflectance + 0.2, !- October Ground Reflectance + 0.2, !- November Ground Reflectance + 0.2; !- December Ground Reflectance + +Site:GroundReflectance:SnowModifier, + 1.0, !- Ground Reflected Solar Modifier + 1.0; !- Daylighting Ground Reflected Solar Modifier + +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, + Control GasType, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + +Schedule:Day:Hourly, + B_Off_D_Occ_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.2, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.5, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 0.3, !- Hour 18 + 0.2, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Occ_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Het_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Het_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Off, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Col_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Col_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Dhw_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.2, !- Hour 7 + 0.4, !- Hour 8 + 0.4, !- Hour 9 + 0.4, !- Hour 10 + 0.4, !- Hour 11 + 0.6, !- Hour 12 + 0.6, !- Hour 13 + 0.4, !- Hour 14 + 0.4, !- Hour 15 + 0.4, !- Hour 16 + 0.4, !- Hour 17 + 0.4, !- Hour 18 + 0.4, !- Hour 19 + 0.2, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Dhw_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Lgt_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.3, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.8, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 0.5, !- Hour 18 + 0.3, !- Hour 19 + 0.3, !- Hour 20 + 0.2, !- Hour 21 + 0.2, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Lgt_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0.1, !- Hour 21 + 0.1, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Plg_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.3, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.8, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 0.3, !- Hour 19 + 0.3, !- Hour 20 + 0.2, !- Hour 21 + 0.2, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Plg_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0.1, !- Hour 21 + 0.1, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Nat_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Nat_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Week:Daily, + B_Off_W_Occ, !- Name + B_Off_D_Occ_WE, !- Sunday ScheduleDay Name + B_Off_D_Occ_WD, !- Monday ScheduleDay Name + B_Off_D_Occ_WD, !- Tuesday ScheduleDay Name + B_Off_D_Occ_WD, !- Wednesday ScheduleDay Name + B_Off_D_Occ_WD, !- Thursday ScheduleDay Name + B_Off_D_Occ_WD, !- Friday ScheduleDay Name + B_Off_D_Occ_WE, !- Saturday ScheduleDay Name + B_Off_D_Occ_WE, !- Holiday ScheduleDay Name + B_Off_D_Occ_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Occ_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Occ_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Occ_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Het, !- Name + B_Off_D_Het_WE, !- Sunday ScheduleDay Name + B_Off_D_Het_WD, !- Monday ScheduleDay Name + B_Off_D_Het_WD, !- Tuesday ScheduleDay Name + B_Off_D_Het_WD, !- Wednesday ScheduleDay Name + B_Off_D_Het_WD, !- Thursday ScheduleDay Name + B_Off_D_Het_WD, !- Friday ScheduleDay Name + B_Off_D_Het_WE, !- Saturday ScheduleDay Name + B_Off_D_Het_WE, !- Holiday ScheduleDay Name + B_Off_D_Het_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Het_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Het_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Het_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Off, !- Name + B_Off_D_Off, !- Sunday ScheduleDay Name + B_Off_D_Off, !- Monday ScheduleDay Name + B_Off_D_Off, !- Tuesday ScheduleDay Name + B_Off_D_Off, !- Wednesday ScheduleDay Name + B_Off_D_Off, !- Thursday ScheduleDay Name + B_Off_D_Off, !- Friday ScheduleDay Name + B_Off_D_Off, !- Saturday ScheduleDay Name + B_Off_D_Off, !- Holiday ScheduleDay Name + B_Off_D_Off, !- SummerDesignDay ScheduleDay Name + B_Off_D_Off, !- WinterDesignDay ScheduleDay Name + B_Off_D_Off, !- CustomDay1 ScheduleDay Name + B_Off_D_Off; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Col, !- Name + B_Off_D_Col_WE, !- Sunday ScheduleDay Name + B_Off_D_Col_WD, !- Monday ScheduleDay Name + B_Off_D_Col_WD, !- Tuesday ScheduleDay Name + B_Off_D_Col_WD, !- Wednesday ScheduleDay Name + B_Off_D_Col_WD, !- Thursday ScheduleDay Name + B_Off_D_Col_WD, !- Friday ScheduleDay Name + B_Off_D_Col_WE, !- Saturday ScheduleDay Name + B_Off_D_Col_WE, !- Holiday ScheduleDay Name + B_Off_D_Col_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Col_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Col_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Col_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Dhw, !- Name + B_Off_D_Dhw_WE, !- Sunday ScheduleDay Name + B_Off_D_Dhw_WD, !- Monday ScheduleDay Name + B_Off_D_Dhw_WD, !- Tuesday ScheduleDay Name + B_Off_D_Dhw_WD, !- Wednesday ScheduleDay Name + B_Off_D_Dhw_WD, !- Thursday ScheduleDay Name + B_Off_D_Dhw_WD, !- Friday ScheduleDay Name + B_Off_D_Dhw_WE, !- Saturday ScheduleDay Name + B_Off_D_Dhw_WE, !- Holiday ScheduleDay Name + B_Off_D_Dhw_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Dhw_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Dhw_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Dhw_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Lgt, !- Name + B_Off_D_Lgt_WE, !- Sunday ScheduleDay Name + B_Off_D_Lgt_WD, !- Monday ScheduleDay Name + B_Off_D_Lgt_WD, !- Tuesday ScheduleDay Name + B_Off_D_Lgt_WD, !- Wednesday ScheduleDay Name + B_Off_D_Lgt_WD, !- Thursday ScheduleDay Name + B_Off_D_Lgt_WD, !- Friday ScheduleDay Name + B_Off_D_Lgt_WE, !- Saturday ScheduleDay Name + B_Off_D_Lgt_WE, !- Holiday ScheduleDay Name + B_Off_D_Lgt_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Lgt_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Lgt_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Lgt_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Plg, !- Name + B_Off_D_Plg_WE, !- Sunday ScheduleDay Name + B_Off_D_Plg_WD, !- Monday ScheduleDay Name + B_Off_D_Plg_WD, !- Tuesday ScheduleDay Name + B_Off_D_Plg_WD, !- Wednesday ScheduleDay Name + B_Off_D_Plg_WD, !- Thursday ScheduleDay Name + B_Off_D_Plg_WD, !- Friday ScheduleDay Name + B_Off_D_Plg_WE, !- Saturday ScheduleDay Name + B_Off_D_Plg_WE, !- Holiday ScheduleDay Name + B_Off_D_Plg_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Plg_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Plg_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Plg_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Nat, !- Name + B_Off_D_Nat_WE, !- Sunday ScheduleDay Name + B_Off_D_Nat_WD, !- Monday ScheduleDay Name + B_Off_D_Nat_WD, !- Tuesday ScheduleDay Name + B_Off_D_Nat_WD, !- Wednesday ScheduleDay Name + B_Off_D_Nat_WD, !- Thursday ScheduleDay Name + B_Off_D_Nat_WD, !- Friday ScheduleDay Name + B_Off_D_Nat_WE, !- Saturday ScheduleDay Name + B_Off_D_Nat_WE, !- Holiday ScheduleDay Name + B_Off_D_Nat_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Nat_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Nat_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Nat_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Year, + B_Off_Y_Occ, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Occ, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Het, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Het, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 4, !- End Month 1 + 30, !- End Day 1 + B_Off_W_Off, !- ScheduleWeek Name 2 + 5, !- Start Month 2 + 1, !- Start Day 2 + 9, !- End Month 2 + 30, !- End Day 2 + B_Off_W_Het, !- ScheduleWeek Name 3 + 10, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Year, + B_Off_Y_Col, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Off, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 3, !- End Month 1 + 31, !- End Day 1 + B_Off_W_Col, !- ScheduleWeek Name 2 + 4, !- Start Month 2 + 1, !- Start Day 2 + 9, !- End Month 2 + 30, !- End Day 2 + B_Off_W_Off, !- ScheduleWeek Name 3 + 10, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Year, + B_Off_Y_Dhw, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Dhw, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Lgt, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Lgt, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Plg, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Plg, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Nat, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Off, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 3, !- End Month 1 + 31, !- End Day 1 + B_Off_W_Nat, !- ScheduleWeek Name 2 + 4, !- Start Month 2 + 1, !- Start Day 2 + 10, !- End Month 2 + 31, !- End Day 2 + B_Off_W_Off, !- ScheduleWeek Name 3 + 11, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Constant, + On, !- Name + On/Off, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + Off, !- Name + On/Off, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + PerimPeopleActivity, !- Name + Any Number, !- Schedule Type Limits Name + 125.28; !- Hourly Value + +Schedule:Constant, + PerimAirVelocity, !- Name + Any Number, !- Schedule Type Limits Name + 0.2; !- Hourly Value + +Schedule:Constant, + PerimWorkEfficiency, !- Name + Any Number, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + PerimHeating_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + PerimCooling_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 24; !- Hourly Value + +Schedule:Constant, + PerimZoneControlTypeSched, !- Name + Any Number, !- Schedule Type Limits Name + 4; !- Hourly Value + +Schedule:Constant, + PerimHumidMin, !- Name + Any Number, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + PerimHumidMax, !- Name + Any Number, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + NATVENT_AVAIL_SCHED_Perim, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + DHW Supply Temperature Perim, !- Name + Temperature, !- Schedule Type Limits Name + 55; !- Hourly Value + +Schedule:Constant, + DHW Mains Temperature Perim, !- Name + Temperature, !- Schedule Type Limits Name + 16; !- Hourly Value + +Schedule:Constant, + CorePeopleActivity, !- Name + Any Number, !- Schedule Type Limits Name + 125.28; !- Hourly Value + +Schedule:Constant, + CoreAirVelocity, !- Name + Any Number, !- Schedule Type Limits Name + 0.2; !- Hourly Value + +Schedule:Constant, + CoreWorkEfficiency, !- Name + Any Number, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + CoreHeating_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + CoreCooling_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 24; !- Hourly Value + +Schedule:Constant, + CoreZoneControlTypeSched, !- Name + Any Number, !- Schedule Type Limits Name + 4; !- Hourly Value + +Schedule:Constant, + CoreHumidMin, !- Name + Any Number, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + CoreHumidMax, !- Name + Any Number, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + NATVENT_AVAIL_SCHED_Core, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + DHW Supply Temperature Core, !- Name + Temperature, !- Schedule Type Limits Name + 55; !- Hourly Value + +Schedule:Constant, + DHW Mains Temperature Core, !- Name + Temperature, !- Schedule Type Limits Name + 16; !- Hourly Value + +Material, + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.42, !- Conductivity + 900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Softwood_General_0.02_B_Off_Thm_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.13, !- Conductivity + 496, !- Density + 1630, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Clay_Brick_H_0.06_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.06, !- Thickness + 0.41, !- Conductivity + 1000, !- Density + 920, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material, + B_XPS_Board_0.02_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.25, !- Conductivity + 880, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.05, !- Thickness + 0.043, !- Conductivity + 12, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.015_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.015, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.42, !- Conductivity + 900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Softwood_General_0.02_B_Off_Par_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.13, !- Conductivity + 496, !- Density + 1630, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Urethane_Carpet_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.045, !- Conductivity + 110, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.8, !- Conductivity + 1900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.8, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 0.7, !- Conductivity + 1.2, !- Density + 1000, !- Specific Heat + 0.01, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_XPS_Board_0.02_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.04, !- Thickness + 1.65, !- Conductivity + 2100, !- Density + 1040, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.03, !- Thickness + 0.8, !- Conductivity + 1900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.8, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material, + B_Ceramic_Tile_0.02_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.8, !- Conductivity + 2243, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.4; !- Visible Absorptance + +Material, + B_XPS_Board_0.1_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.1, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.65, !- Conductivity + 2100, !- Density + 1040, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.2, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 0.7, !- Conductivity + 1.2, !- Density + 1000, !- Specific Heat + 0.01, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.02_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +WindowMaterial:Glazing, + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Name + SpectralAverage, !- Optical Data Type + SpectralAverage, !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.83, !- Solar Transmittance at Normal Incidence + 0.07, !- Front Side Solar Reflectance at Normal Incidence + 0.07, !- Back Side Solar Reflectance at Normal Incidence + 0.89, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity + 1; !- Dirt Correction Factor for Solar and Visible Transmittance + +WindowMaterial:Gas, + AIR_0.006_B_Dbl_Air_Cl, !- Name + AIR, !- Gas Type + 0.006; !- Thickness + +Construction, + B_Off_Thm_0, !- Name + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Thm_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Thm_0; !- Layer 3 + +Construction, + B_Off_Thm_0_FLIPPED, !- Name + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Thm_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Thm_0; !- Layer 3 + +Construction, + B_Off_Fac_0, !- Name + B_Clay_Brick_H_0.06_B_Off_Fac_0, !- Outside Layer + B_XPS_Board_0.02_B_Off_Fac_0, !- Layer 2 + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Layer 3 + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Layer 4 + B_Gypsum_Board_0.015_B_Off_Fac_0; !- Layer 5 + +Construction, + B_Off_Fac_0_FLIPPED, !- Name + B_Gypsum_Board_0.015_B_Off_Fac_0, !- Outside Layer + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Layer 2 + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Layer 3 + B_XPS_Board_0.02_B_Off_Fac_0, !- Layer 4 + B_Clay_Brick_H_0.06_B_Off_Fac_0; !- Layer 5 + +Construction, + B_Off_Par_0, !- Name + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Par_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Par_0; !- Layer 3 + +Construction, + B_Off_Par_0_FLIPPED, !- Name + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Par_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Par_0; !- Layer 3 + +Construction, + B_Off_Inf_0, !- Name + B_Urethane_Carpet_0.02_B_Off_Inf_0, !- Outside Layer + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Layer 2 + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Layer 3 + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Layer 4 + B_Gypsum_Board_0.02_B_Off_Inf_0; !- Layer 5 + +Construction, + B_Off_Inf_0_FLIPPED, !- Name + B_Gypsum_Board_0.02_B_Off_Inf_0, !- Outside Layer + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Layer 2 + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Layer 3 + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Layer 4 + B_Urethane_Carpet_0.02_B_Off_Inf_0; !- Layer 5 + +Construction, + B_Off_Gro_0, !- Name + B_XPS_Board_0.02_B_Off_Gro_0, !- Outside Layer + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Layer 2 + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Layer 3 + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Layer 4 + B_Ceramic_Tile_0.02_B_Off_Gro_0; !- Layer 5 + +Construction, + B_Off_Gro_0_FLIPPED, !- Name + B_Ceramic_Tile_0.02_B_Off_Gro_0, !- Outside Layer + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Layer 2 + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Layer 3 + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Layer 4 + B_XPS_Board_0.02_B_Off_Gro_0; !- Layer 5 + +Construction, + B_Off_Rof_0, !- Name + B_XPS_Board_0.1_B_Off_Rof_0, !- Outside Layer + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Layer 2 + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Layer 3 + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Layer 4 + B_Gypsum_Board_0.02_B_Off_Rof_0; !- Layer 5 + +Construction, + B_Off_Rof_0_FLIPPED, !- Name + B_Gypsum_Board_0.02_B_Off_Rof_0, !- Outside Layer + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Layer 2 + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Layer 3 + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Layer 4 + B_XPS_Board_0.1_B_Off_Rof_0; !- Layer 5 + +Construction, + B_Dbl_Air_Cl, !- Name + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Outside Layer + AIR_0.006_B_Dbl_Air_Cl, !- Layer 2 + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl; !- Layer 3 + +Construction, + B_Dbl_Air_Cl_FLIPPED, !- Name + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Outside Layer + AIR_0.006_B_Dbl_Air_Cl, !- Layer 2 + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl; !- Layer 3 + +GlobalGeometryRules, + LowerLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + Relative; !- Coordinate System + +Zone, + Perim, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1.0, !- Multiplier + , !- Ceiling Height + 21.00199975, !- Volume + 6.30059992500001, !- Floor Area + TARP, !- Zone Inside Convection Algorithm + DOE-2; !- Zone Outside Convection Algorithm + +Zone, + Core, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1.0, !- Multiplier + , !- Ceiling Height + 3.99800025, !- Volume + 1.199400075, !- Floor Area + TARP, !- Zone Inside Convection Algorithm + DOE-2; !- Zone Outside Convection Algorithm + +BuildingSurface:Detailed, + Perim:f0, !- Name + Wall, !- Surface Type + B_Off_Fac_0, !- Construction Name + Perim, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f1, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Surface, !- Outside Boundary Condition + Core:f0, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f2, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f3, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f4, !- Name + Floor, !- Surface Type + B_Off_Inf_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 3.0651, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 3.0651, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f5, !- Name + Floor, !- Surface Type + B_Off_Gro_0, !- Construction Name + Perim, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 1, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 3.0651, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 3.0651, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f6, !- Name + Ceiling, !- Surface Type + B_Off_Inf_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 3.0651, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 3.0651, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f7, !- Name + Roof, !- Surface Type + B_Off_Rof_0, !- Construction Name + Perim, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 3.0651, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 3.0651, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f0, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Surface, !- Outside Boundary Condition + Perim:f1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f1, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f2, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f3, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f4, !- Name + Floor, !- Surface Type + B_Off_Inf_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.0985, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.0985, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f5, !- Name + Floor, !- Surface Type + B_Off_Gro_0, !- Construction Name + Core, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 1, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.0985, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.0985, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f6, !- Name + Ceiling, !- Surface Type + B_Off_Inf_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.0985, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.0985, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f7, !- Name + Roof, !- Surface Type + B_Off_Rof_0, !- Construction Name + Core, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.0985, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.0985, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + Perim:f0:w0, !- Name + Window, !- Surface Type + B_Dbl_Air_Cl, !- Construction Name + Perim:f0, !- Building Surface Name + , !- Outside Boundary Condition Object + Autocalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + -1.6323, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 0.85, !- Vertex 1 Zcoordinate + -1.6323, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 2.2786, !- Vertex 2 Zcoordinate + 1.1677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 2.2786, !- Vertex 3 Zcoordinate + 1.1677, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0.85; !- Vertex 4 Zcoordinate + +InternalMass, + PerimInternalMass, !- Name + B_Off_Thm_0, !- Construction Name + Perim, !- Zone or ZoneList Name + 6.61562992125001; !- Surface Area + +InternalMass, + CoreInternalMass, !- Name + B_Off_Thm_0, !- Construction Name + Core, !- Zone or ZoneList Name + 1.25937007875; !- Surface Area + +People, + People Perim, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Occ, !- Number of People Schedule Name + People/Area, !- Number of People Calculation Method + , !- Number of People + 0.055, !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + PerimPeopleActivity, !- Activity Level Schedule Name + 3.82e-08, !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + PerimWorkEfficiency, !- Work Efficiency Schedule Name + DynamicClothingModelASHRAE55, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + , !- Clothing Insulation Schedule Name + PerimAirVelocity, !- Air Velocity Schedule Name + AdaptiveASH55; !- Thermal Comfort Model 1 Type + +People, + People Core, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Occ, !- Number of People Schedule Name + People/Area, !- Number of People Calculation Method + , !- Number of People + 0.055, !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + CorePeopleActivity, !- Activity Level Schedule Name + 3.82e-08, !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + CoreWorkEfficiency, !- Work Efficiency Schedule Name + DynamicClothingModelASHRAE55, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + , !- Clothing Insulation Schedule Name + CoreAirVelocity, !- Air Velocity Schedule Name + AdaptiveASH55; !- Thermal Comfort Model 1 Type + +Lights, + Perim General lighting, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Lgt, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 12, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.42, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + ; !- EndUse Subcategory + +Lights, + Core General lighting, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Lgt, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 12, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.42, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + ; !- EndUse Subcategory + +ElectricEquipment, + Perim Equipment 1, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Plg, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 8, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.2, !- Fraction Radiant + 0, !- Fraction Lost + ; !- EndUse Subcategory + +ElectricEquipment, + Core Equipment 1, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Plg, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 8, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.2, !- Fraction Radiant + 0, !- Fraction Lost + ; !- EndUse Subcategory + +ZoneInfiltration:DesignFlowRate, + PerimInfiltration, !- Name + Perim, !- Zone or ZoneList Name + On, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + 0.35, !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + CoreInfiltration, !- Name + Core, !- Zone or ZoneList Name + On, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + 0.35, !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneVentilation:WindandStackOpenArea, + PerimNatVent_Buoy, !- Name + Perim, !- Zone Name + 3.2, !- Opening Area + NATVENT_AVAIL_SCHED_Perim, !- Opening Area Fraction Schedule Name + 0, !- Opening Effectiveness + 0, !- Effective Angle + 0.357142857142857, !- Height Difference + 0.6, !- Discharge Coefficient for Opening + 22, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 100, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + 1, !- Delta Temperature + , !- Delta Temperature Schedule Name + 20, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +DesignSpecification:OutdoorAir, + PerimMinFreshAir, !- Name + Sum, !- Outdoor Air Method + 2.5e-06, !- Outdoor Air Flow per Person + 3E-07, !- Outdoor Air Flow per Zone Floor Area + , !- Outdoor Air Flow per Zone + , !- Outdoor Air Flow Air Changes per Hour + B_Off_Y_Occ; !- Outdoor Air Schedule Name + +DesignSpecification:OutdoorAir, + CoreMinFreshAir, !- Name + Sum, !- Outdoor Air Method + 2.5e-06, !- Outdoor Air Flow per Person + 3E-07, !- Outdoor Air Flow per Zone Floor Area + , !- Outdoor Air Flow per Zone + , !- Outdoor Air Flow Air Changes per Hour + B_Off_Y_Occ; !- Outdoor Air Schedule Name + +ZoneControl:Humidistat, + PerimHumidistat, !- Name + Perim, !- Zone Name + PerimHumidMin, !- Humidifying Relative Humidity Setpoint Schedule Name + PerimHumidMax; !- Dehumidifying Relative Humidity Setpoint Schedule Name + +ZoneControl:Humidistat, + CoreHumidistat, !- Name + Core, !- Zone Name + CoreHumidMin, !- Humidifying Relative Humidity Setpoint Schedule Name + CoreHumidMax; !- Dehumidifying Relative Humidity Setpoint Schedule Name + +ZoneControl:Thermostat, + Perim Thermostat, !- Name + Perim, !- Zone or ZoneList Name + PerimZoneControlTypeSched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint - Zone Perim; !- Control 1 Name + +ZoneControl:Thermostat, + Core Thermostat, !- Name + Core, !- Zone or ZoneList Name + CoreZoneControlTypeSched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint - Zone Core; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + Dual Setpoint - Zone Perim, !- Name + PerimHeating_SP_Sch, !- Heating Setpoint Temperature Schedule Name + PerimCooling_SP_Sch; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Dual Setpoint - Zone Core, !- Name + CoreHeating_SP_Sch, !- Heating Setpoint Temperature Schedule Name + CoreCooling_SP_Sch; !- Cooling Setpoint Temperature Schedule Name + +ZoneHVAC:IdealLoadsAirSystem, + Perim Ideal Loads Air, !- Name + , !- Availability Schedule Name + Node Perim In, !- Zone Supply Air Node Name + , !- Zone Exhaust Air Node Name + , !- System Inlet Air Node Name + 30, !- Maximum Heating Supply Air Temperature + 18, !- Minimum Cooling Supply Air Temperature + 0.01, !- Maximum Heating Supply Air Humidity Ratio + 0.008, !- Minimum Cooling Supply Air Humidity Ratio + NoLimit, !- Heating Limit + 100, !- Maximum Heating Air Flow Rate + , !- Maximum Sensible Heating Capacity + LimitFlowRateAndCapacity, !- Cooling Limit + 0.0005, !- Maximum Cooling Air Flow Rate + 630.059992500001, !- Maximum Total Cooling Capacity + B_Off_Y_Het, !- Heating Availability Schedule Name + B_Off_Y_Col, !- Cooling Availability Schedule Name + None, !- Dehumidification Control Type + , !- Cooling Sensible Heat Ratio + None, !- Humidification Control Type + PerimMinFreshAir, !- Design Specification Outdoor Air Object Name + Perim_OutDoorInlet, !- Outdoor Air Inlet Node Name + OccupancySchedule, !- Demand Controlled Ventilation Type + NoEconomizer, !- Outdoor Air Economizer Type + None, !- Heat Recovery Type + 0.7, !- Sensible Heat Recovery Effectiveness + 0.65; !- Latent Heat Recovery Effectiveness + +ZoneHVAC:IdealLoadsAirSystem, + Core Ideal Loads Air, !- Name + , !- Availability Schedule Name + Node Core In, !- Zone Supply Air Node Name + , !- Zone Exhaust Air Node Name + , !- System Inlet Air Node Name + 30, !- Maximum Heating Supply Air Temperature + 18, !- Minimum Cooling Supply Air Temperature + 0.01, !- Maximum Heating Supply Air Humidity Ratio + 0.008, !- Minimum Cooling Supply Air Humidity Ratio + NoLimit, !- Heating Limit + 100, !- Maximum Heating Air Flow Rate + , !- Maximum Sensible Heating Capacity + LimitFlowRateAndCapacity, !- Cooling Limit + 0.0005, !- Maximum Cooling Air Flow Rate + 119.9400075, !- Maximum Total Cooling Capacity + B_Off_Y_Het, !- Heating Availability Schedule Name + B_Off_Y_Col, !- Cooling Availability Schedule Name + None, !- Dehumidification Control Type + , !- Cooling Sensible Heat Ratio + None, !- Humidification Control Type + CoreMinFreshAir, !- Design Specification Outdoor Air Object Name + Core_OutDoorInlet, !- Outdoor Air Inlet Node Name + OccupancySchedule, !- Demand Controlled Ventilation Type + NoEconomizer, !- Outdoor Air Economizer Type + None, !- Heat Recovery Type + 0.7, !- Sensible Heat Recovery Effectiveness + 0.65; !- Latent Heat Recovery Effectiveness + +ZoneHVAC:EquipmentList, + Perim Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment 1 Object Type + Perim Ideal Loads Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + Core Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment 1 Object Type + Core Ideal Loads Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentConnections, + Perim, !- Zone Name + Perim Equipment, !- Zone Conditioning Equipment List Name + Perim Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node Perim Zone, !- Zone Air Node Name + Node Perim Out; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core, !- Zone Name + Core Equipment, !- Zone Conditioning Equipment List Name + Core Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node Core Zone, !- Zone Air Node Name + Node Core Out; !- Zone Return Air Node or NodeList Name + +NodeList, + Perim Inlets, !- Name + Node Perim In; !- Node 1 Name + +NodeList, + Core Inlets, !- Name + Node Core In; !- Node 1 Name + +EnergyManagementSystem:Sensor, + OutdoorTemp, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Drybulb Temperature; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + OutdoorRelHumid, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Relative Humidity; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + USRNATVENT_Perim, !- Name + B_Off_Y_Nat, !- OutputVariable or OutputMeter Index Key Name + Schedule Value; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + USRNATVENT_Core, !- Name + B_Off_Y_Nat, !- OutputVariable or OutputMeter Index Key Name + Schedule Value; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Actuator, + NATVENT_AVAIL_SCHED_ACTUATOR_Perim, !- Name + NATVENT_AVAIL_SCHED_Perim, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:Actuator, + NATVENT_AVAIL_SCHED_ACTUATOR_Core, !- Name + NATVENT_AVAIL_SCHED_Core, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:ProgramCallingManager, + My Perim_Setpoint_Schedule_Calculator_Example, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Perim_ErlEnforceBinary; !- Program Name 1 + +EnergyManagementSystem:ProgramCallingManager, + My Core_Setpoint_Schedule_Calculator_Example, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Core_ErlEnforceBinary; !- Program Name 1 + +EnergyManagementSystem:Program, + Perim_ErlEnforceBinary, !- Name + IF (USRNATVENT_Perim > 0), !- Program Line 1 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Perim = 1, !- Program Line 2 + ELSE, !- Program Line 3 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Perim = 0, !- Program Line 4 + ENDIF; !- Program Line 5 + +EnergyManagementSystem:Program, + Core_ErlEnforceBinary, !- Name + IF (USRNATVENT_Core > 0), !- Program Line 1 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Core = 1, !- Program Line 2 + ELSE, !- Program Line 3 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Core = 0, !- Program Line 4 + ENDIF; !- Program Line 5 + +WaterUse:Equipment, + DHW Perim, !- Name + DHW Perim, !- EndUse Subcategory + 3.67534995625e-07, !- Peak Flow Rate + B_Off_Y_Dhw, !- Flow Rate Fraction Schedule Name + DHW Supply Temperature Perim, !- Target Temperature Schedule Name + DHW Supply Temperature Perim, !- Hot Water Supply Temperature Schedule Name + DHW Mains Temperature Perim, !- Cold Water Supply Temperature Schedule Name + , !- Zone Name + , !- Sensible Fraction Schedule Name + ; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + DHW Core, !- Name + DHW Core, !- EndUse Subcategory + 6.9965e-08, !- Peak Flow Rate + B_Off_Y_Dhw, !- Flow Rate Fraction Schedule Name + DHW Supply Temperature Core, !- Target Temperature Schedule Name + DHW Supply Temperature Core, !- Hot Water Supply Temperature Schedule Name + DHW Mains Temperature Core, !- Cold Water Supply Temperature Schedule Name + , !- Zone Name + , !- Sensible Fraction Schedule Name + ; !- Latent Fraction Schedule Name + +Output:VariableDictionary, + IDF; !- Key Field + +Output:Surfaces:List, + Details; !- Report Type + +Output:Surfaces:Drawing, + DXF, !- Report Type + Triangulate3DFace; !- Report Specifications 1 + +Output:EnergyManagementSystem, + Verbose, !- Actuator Availability Dictionary Reporting + Verbose, !- Internal Variable Availability Dictionary Reporting + Verbose; !- EMS Runtime Language Debug Output Level + +Output:Variable, + *, !- Key Value + Zone People Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Lights Electric Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Electric Equipment Electric Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Windows Total Transmitted Solar Radiation Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Mean Air Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Operative Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Total Heat Loss Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Total Heat Gain Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Total Heat Loss Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Total Heat Gain Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Air Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Air Relative Humidity, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Supply Air Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Supply Air Total Cooling Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Zone Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Water Use Equipment Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Air Change Rate, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Air Change Rate, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Diagnostics, + DisplayAdvancedReportVariables; !- Key 1 \ No newline at end of file diff --git a/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0V9-2-0.idf b/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0V9-2-0.idf new file mode 100644 index 000000000..6692fca7d --- /dev/null +++ b/tests/input_data/problematic/nat_ventilation_SAMPLE0V9-2-0V9-2-0.idf @@ -0,0 +1,2215 @@ +!- Darwin Line endings + +Version, + 9.2; !- Version Identifier + +SimulationControl, + No, !- Do Zone Sizing Calculation + No, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods + +Building, + Building, !- Name + 0, !- North Axis + Suburbs, !- Terrain + 0.04, !- Loads Convergence Tolerance Value + 0.4, !- Temperature Convergence Tolerance Value + FullExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + ; !- Minimum Number of Warmup Days + +ShadowCalculation, + AverageOverDaysInFrequency, !- Calculation Method + 20, !- Calculation Frequency + 15000, !- Maximum Figures in Shadow Overlap Calculations + SutherlandHodgman, !- Polygon Clipping Algorithm + SimpleSkyDiffuseModeling; !- Sky Diffuse Modeling Algorithm + +SurfaceConvectionAlgorithm:Inside, + TARP; !- Algorithm + +SurfaceConvectionAlgorithm:Outside, + DOE-2; !- Algorithm + +HeatBalanceAlgorithm, + ConductionTransferFunction, !- Algorithm + 200, !- Surface Temperature Upper Limit + 0.1, !- Minimum Surface Convection Heat Transfer Coefficient Value + 1000; !- Maximum Surface Convection Heat Transfer Coefficient Value + +Timestep, + 4; !- Number of Timesteps per Hour + +ConvergenceLimits, + 1, !- Minimum System Timestep + 50; !- Maximum HVAC Iterations + +RunPeriod, + ArchSim, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + , !- 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 + ; !- Treat Weather as Actual + +RunPeriodControl:DaylightSavingTime, + Last Sunday in March, !- Start Date + Last Sunday in October; !- End Date + +Site:GroundTemperature:BuildingSurface, + 14, !- January Ground Temperature + 14, !- February Ground Temperature + 14, !- March Ground Temperature + 14, !- April Ground Temperature + 14, !- May Ground Temperature + 14, !- June Ground Temperature + 14, !- July Ground Temperature + 14, !- August Ground Temperature + 14, !- September Ground Temperature + 14, !- October Ground Temperature + 14, !- November Ground Temperature + 14; !- December Ground Temperature + +Site:GroundReflectance, + 0.2, !- January Ground Reflectance + 0.2, !- February Ground Reflectance + 0.2, !- March Ground Reflectance + 0.2, !- April Ground Reflectance + 0.2, !- May Ground Reflectance + 0.2, !- June Ground Reflectance + 0.2, !- July Ground Reflectance + 0.2, !- August Ground Reflectance + 0.2, !- September Ground Reflectance + 0.2, !- October Ground Reflectance + 0.2, !- November Ground Reflectance + 0.2; !- December Ground Reflectance + +Site:GroundReflectance:SnowModifier, + 1.0, !- Ground Reflected Solar Modifier + 1.0; !- Daylighting Ground Reflected Solar Modifier + +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, + Control GasType, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + +ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + +Schedule:Day:Hourly, + B_Off_D_Occ_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.2, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.5, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 0.3, !- Hour 18 + 0.2, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Occ_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Het_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Het_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Off, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Col_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Col_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Dhw_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.2, !- Hour 7 + 0.4, !- Hour 8 + 0.4, !- Hour 9 + 0.4, !- Hour 10 + 0.4, !- Hour 11 + 0.6, !- Hour 12 + 0.6, !- Hour 13 + 0.4, !- Hour 14 + 0.4, !- Hour 15 + 0.4, !- Hour 16 + 0.4, !- Hour 17 + 0.4, !- Hour 18 + 0.4, !- Hour 19 + 0.2, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Dhw_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Lgt_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.3, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.8, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 0.5, !- Hour 18 + 0.3, !- Hour 19 + 0.3, !- Hour 20 + 0.2, !- Hour 21 + 0.2, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Lgt_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0.1, !- Hour 21 + 0.1, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Plg_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.3, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 0.8, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 0.3, !- Hour 19 + 0.3, !- Hour 20 + 0.2, !- Hour 21 + 0.2, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Plg_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0.1, !- Hour 1 + 0.1, !- Hour 2 + 0.1, !- Hour 3 + 0.1, !- Hour 4 + 0.1, !- Hour 5 + 0.1, !- Hour 6 + 0.1, !- Hour 7 + 0.1, !- Hour 8 + 0.1, !- Hour 9 + 0.1, !- Hour 10 + 0.1, !- Hour 11 + 0.1, !- Hour 12 + 0.1, !- Hour 13 + 0.1, !- Hour 14 + 0.1, !- Hour 15 + 0.1, !- Hour 16 + 0.1, !- Hour 17 + 0.1, !- Hour 18 + 0.1, !- Hour 19 + 0.1, !- Hour 20 + 0.1, !- Hour 21 + 0.1, !- Hour 22 + 0.1, !- Hour 23 + 0.1; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Nat_WD, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 1, !- Hour 7 + 1, !- Hour 8 + 1, !- Hour 9 + 1, !- Hour 10 + 1, !- Hour 11 + 1, !- Hour 12 + 1, !- Hour 13 + 1, !- Hour 14 + 1, !- Hour 15 + 1, !- Hour 16 + 1, !- Hour 17 + 1, !- Hour 18 + 1, !- Hour 19 + 1, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Day:Hourly, + B_Off_D_Nat_WE, !- Name + Fraction, !- Schedule Type Limits Name + 0, !- Hour 1 + 0, !- Hour 2 + 0, !- Hour 3 + 0, !- Hour 4 + 0, !- Hour 5 + 0, !- Hour 6 + 0, !- Hour 7 + 0, !- Hour 8 + 0, !- Hour 9 + 0, !- Hour 10 + 0, !- Hour 11 + 0, !- Hour 12 + 0, !- Hour 13 + 0, !- Hour 14 + 0, !- Hour 15 + 0, !- Hour 16 + 0, !- Hour 17 + 0, !- Hour 18 + 0, !- Hour 19 + 0, !- Hour 20 + 0, !- Hour 21 + 0, !- Hour 22 + 0, !- Hour 23 + 0; !- Hour 24 + +Schedule:Week:Daily, + B_Off_W_Occ, !- Name + B_Off_D_Occ_WE, !- Sunday ScheduleDay Name + B_Off_D_Occ_WD, !- Monday ScheduleDay Name + B_Off_D_Occ_WD, !- Tuesday ScheduleDay Name + B_Off_D_Occ_WD, !- Wednesday ScheduleDay Name + B_Off_D_Occ_WD, !- Thursday ScheduleDay Name + B_Off_D_Occ_WD, !- Friday ScheduleDay Name + B_Off_D_Occ_WE, !- Saturday ScheduleDay Name + B_Off_D_Occ_WE, !- Holiday ScheduleDay Name + B_Off_D_Occ_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Occ_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Occ_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Occ_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Het, !- Name + B_Off_D_Het_WE, !- Sunday ScheduleDay Name + B_Off_D_Het_WD, !- Monday ScheduleDay Name + B_Off_D_Het_WD, !- Tuesday ScheduleDay Name + B_Off_D_Het_WD, !- Wednesday ScheduleDay Name + B_Off_D_Het_WD, !- Thursday ScheduleDay Name + B_Off_D_Het_WD, !- Friday ScheduleDay Name + B_Off_D_Het_WE, !- Saturday ScheduleDay Name + B_Off_D_Het_WE, !- Holiday ScheduleDay Name + B_Off_D_Het_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Het_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Het_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Het_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Off, !- Name + B_Off_D_Off, !- Sunday ScheduleDay Name + B_Off_D_Off, !- Monday ScheduleDay Name + B_Off_D_Off, !- Tuesday ScheduleDay Name + B_Off_D_Off, !- Wednesday ScheduleDay Name + B_Off_D_Off, !- Thursday ScheduleDay Name + B_Off_D_Off, !- Friday ScheduleDay Name + B_Off_D_Off, !- Saturday ScheduleDay Name + B_Off_D_Off, !- Holiday ScheduleDay Name + B_Off_D_Off, !- SummerDesignDay ScheduleDay Name + B_Off_D_Off, !- WinterDesignDay ScheduleDay Name + B_Off_D_Off, !- CustomDay1 ScheduleDay Name + B_Off_D_Off; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Col, !- Name + B_Off_D_Col_WE, !- Sunday ScheduleDay Name + B_Off_D_Col_WD, !- Monday ScheduleDay Name + B_Off_D_Col_WD, !- Tuesday ScheduleDay Name + B_Off_D_Col_WD, !- Wednesday ScheduleDay Name + B_Off_D_Col_WD, !- Thursday ScheduleDay Name + B_Off_D_Col_WD, !- Friday ScheduleDay Name + B_Off_D_Col_WE, !- Saturday ScheduleDay Name + B_Off_D_Col_WE, !- Holiday ScheduleDay Name + B_Off_D_Col_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Col_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Col_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Col_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Dhw, !- Name + B_Off_D_Dhw_WE, !- Sunday ScheduleDay Name + B_Off_D_Dhw_WD, !- Monday ScheduleDay Name + B_Off_D_Dhw_WD, !- Tuesday ScheduleDay Name + B_Off_D_Dhw_WD, !- Wednesday ScheduleDay Name + B_Off_D_Dhw_WD, !- Thursday ScheduleDay Name + B_Off_D_Dhw_WD, !- Friday ScheduleDay Name + B_Off_D_Dhw_WE, !- Saturday ScheduleDay Name + B_Off_D_Dhw_WE, !- Holiday ScheduleDay Name + B_Off_D_Dhw_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Dhw_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Dhw_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Dhw_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Lgt, !- Name + B_Off_D_Lgt_WE, !- Sunday ScheduleDay Name + B_Off_D_Lgt_WD, !- Monday ScheduleDay Name + B_Off_D_Lgt_WD, !- Tuesday ScheduleDay Name + B_Off_D_Lgt_WD, !- Wednesday ScheduleDay Name + B_Off_D_Lgt_WD, !- Thursday ScheduleDay Name + B_Off_D_Lgt_WD, !- Friday ScheduleDay Name + B_Off_D_Lgt_WE, !- Saturday ScheduleDay Name + B_Off_D_Lgt_WE, !- Holiday ScheduleDay Name + B_Off_D_Lgt_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Lgt_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Lgt_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Lgt_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Plg, !- Name + B_Off_D_Plg_WE, !- Sunday ScheduleDay Name + B_Off_D_Plg_WD, !- Monday ScheduleDay Name + B_Off_D_Plg_WD, !- Tuesday ScheduleDay Name + B_Off_D_Plg_WD, !- Wednesday ScheduleDay Name + B_Off_D_Plg_WD, !- Thursday ScheduleDay Name + B_Off_D_Plg_WD, !- Friday ScheduleDay Name + B_Off_D_Plg_WE, !- Saturday ScheduleDay Name + B_Off_D_Plg_WE, !- Holiday ScheduleDay Name + B_Off_D_Plg_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Plg_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Plg_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Plg_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Week:Daily, + B_Off_W_Nat, !- Name + B_Off_D_Nat_WE, !- Sunday ScheduleDay Name + B_Off_D_Nat_WD, !- Monday ScheduleDay Name + B_Off_D_Nat_WD, !- Tuesday ScheduleDay Name + B_Off_D_Nat_WD, !- Wednesday ScheduleDay Name + B_Off_D_Nat_WD, !- Thursday ScheduleDay Name + B_Off_D_Nat_WD, !- Friday ScheduleDay Name + B_Off_D_Nat_WE, !- Saturday ScheduleDay Name + B_Off_D_Nat_WE, !- Holiday ScheduleDay Name + B_Off_D_Nat_WD, !- SummerDesignDay ScheduleDay Name + B_Off_D_Nat_WD, !- WinterDesignDay ScheduleDay Name + B_Off_D_Nat_WD, !- CustomDay1 ScheduleDay Name + B_Off_D_Nat_WD; !- CustomDay2 ScheduleDay Name + +Schedule:Year, + B_Off_Y_Occ, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Occ, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Het, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Het, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 4, !- End Month 1 + 30, !- End Day 1 + B_Off_W_Off, !- ScheduleWeek Name 2 + 5, !- Start Month 2 + 1, !- Start Day 2 + 9, !- End Month 2 + 30, !- End Day 2 + B_Off_W_Het, !- ScheduleWeek Name 3 + 10, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Year, + B_Off_Y_Col, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Off, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 3, !- End Month 1 + 31, !- End Day 1 + B_Off_W_Col, !- ScheduleWeek Name 2 + 4, !- Start Month 2 + 1, !- Start Day 2 + 9, !- End Month 2 + 30, !- End Day 2 + B_Off_W_Off, !- ScheduleWeek Name 3 + 10, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Year, + B_Off_Y_Dhw, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Dhw, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Lgt, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Lgt, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Plg, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Plg, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +Schedule:Year, + B_Off_Y_Nat, !- Name + Fraction, !- Schedule Type Limits Name + B_Off_W_Off, !- ScheduleWeek Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 3, !- End Month 1 + 31, !- End Day 1 + B_Off_W_Nat, !- ScheduleWeek Name 2 + 4, !- Start Month 2 + 1, !- Start Day 2 + 10, !- End Month 2 + 31, !- End Day 2 + B_Off_W_Off, !- ScheduleWeek Name 3 + 11, !- Start Month 3 + 1, !- Start Day 3 + 12, !- End Month 3 + 31; !- End Day 3 + +Schedule:Constant, + On, !- Name + On/Off, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + Off, !- Name + On/Off, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + PerimPeopleActivity, !- Name + Any Number, !- Schedule Type Limits Name + 125.28; !- Hourly Value + +Schedule:Constant, + PerimAirVelocity, !- Name + Any Number, !- Schedule Type Limits Name + 0.2; !- Hourly Value + +Schedule:Constant, + PerimWorkEfficiency, !- Name + Any Number, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + PerimHeating_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + PerimCooling_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 24; !- Hourly Value + +Schedule:Constant, + PerimZoneControlTypeSched, !- Name + Any Number, !- Schedule Type Limits Name + 4; !- Hourly Value + +Schedule:Constant, + PerimHumidMin, !- Name + Any Number, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + PerimHumidMax, !- Name + Any Number, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + NATVENT_AVAIL_SCHED_Perim, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + DHW Supply Temperature Perim, !- Name + Temperature, !- Schedule Type Limits Name + 55; !- Hourly Value + +Schedule:Constant, + DHW Mains Temperature Perim, !- Name + Temperature, !- Schedule Type Limits Name + 16; !- Hourly Value + +Schedule:Constant, + CorePeopleActivity, !- Name + Any Number, !- Schedule Type Limits Name + 125.28; !- Hourly Value + +Schedule:Constant, + CoreAirVelocity, !- Name + Any Number, !- Schedule Type Limits Name + 0.2; !- Hourly Value + +Schedule:Constant, + CoreWorkEfficiency, !- Name + Any Number, !- Schedule Type Limits Name + 0; !- Hourly Value + +Schedule:Constant, + CoreHeating_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + CoreCooling_SP_Sch, !- Name + Temperature, !- Schedule Type Limits Name + 24; !- Hourly Value + +Schedule:Constant, + CoreZoneControlTypeSched, !- Name + Any Number, !- Schedule Type Limits Name + 4; !- Hourly Value + +Schedule:Constant, + CoreHumidMin, !- Name + Any Number, !- Schedule Type Limits Name + 20; !- Hourly Value + +Schedule:Constant, + CoreHumidMax, !- Name + Any Number, !- Schedule Type Limits Name + 80; !- Hourly Value + +Schedule:Constant, + NATVENT_AVAIL_SCHED_Core, !- Name + Fraction, !- Schedule Type Limits Name + 1; !- Hourly Value + +Schedule:Constant, + DHW Supply Temperature Core, !- Name + Temperature, !- Schedule Type Limits Name + 55; !- Hourly Value + +Schedule:Constant, + DHW Mains Temperature Core, !- Name + Temperature, !- Schedule Type Limits Name + 16; !- Hourly Value + +Material, + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.42, !- Conductivity + 900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Softwood_General_0.02_B_Off_Thm_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.13, !- Conductivity + 496, !- Density + 1630, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Clay_Brick_H_0.06_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.06, !- Thickness + 0.41, !- Conductivity + 1000, !- Density + 920, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +Material, + B_XPS_Board_0.02_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.25, !- Conductivity + 880, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.05, !- Thickness + 0.043, !- Conductivity + 12, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.015_B_Off_Fac_0, !- Name + Rough, !- Roughness + 0.015, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.42, !- Conductivity + 900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Softwood_General_0.02_B_Off_Par_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.13, !- Conductivity + 496, !- Density + 1630, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Urethane_Carpet_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.045, !- Conductivity + 110, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.8, !- Conductivity + 1900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.8, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 0.7, !- Conductivity + 1.2, !- Density + 1000, !- Specific Heat + 0.01, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.02_B_Off_Inf_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_XPS_Board_0.02_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.04, !- Thickness + 1.65, !- Conductivity + 2100, !- Density + 1040, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.03, !- Thickness + 0.8, !- Conductivity + 1900, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.8, !- Solar Absorptance + 0.8; !- Visible Absorptance + +Material, + B_Ceramic_Tile_0.02_B_Off_Gro_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.8, !- Conductivity + 2243, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.4; !- Visible Absorptance + +Material, + B_XPS_Board_0.1_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.1, !- Thickness + 0.037, !- Conductivity + 40, !- Density + 1200, !- Specific Heat + 0.6, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +Material, + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 1.65, !- Conductivity + 2100, !- Density + 1040, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.2, !- Thickness + 1.75, !- Conductivity + 2400, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.15, !- Thickness + 0.7, !- Conductivity + 1.2, !- Density + 1000, !- Specific Heat + 0.01, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +Material, + B_Gypsum_Board_0.02_B_Off_Rof_0, !- Name + Rough, !- Roughness + 0.02, !- Thickness + 0.16, !- Conductivity + 950, !- Density + 840, !- Specific Heat + 0.9, !- Thermal Absorptance + 0.6, !- Solar Absorptance + 0.6; !- Visible Absorptance + +WindowMaterial:Glazing, + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Name + SpectralAverage, !- Optical Data Type + SpectralAverage, !- Window Glass Spectral Data Set Name + 0.003, !- Thickness + 0.83, !- Solar Transmittance at Normal Incidence + 0.07, !- Front Side Solar Reflectance at Normal Incidence + 0.07, !- Back Side Solar Reflectance at Normal Incidence + 0.89, !- Visible Transmittance at Normal Incidence + 0.08, !- Front Side Visible Reflectance at Normal Incidence + 0.08, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity + 1; !- Dirt Correction Factor for Solar and Visible Transmittance + +WindowMaterial:Gas, + AIR_0.006_B_Dbl_Air_Cl, !- Name + AIR, !- Gas Type + 0.006; !- Thickness + +Construction, + B_Off_Thm_0, !- Name + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Thm_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Thm_0; !- Layer 3 + +Construction, + B_Off_Thm_0_FLIPPED, !- Name + B_Gypsum_Plaster_0.02_B_Off_Thm_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Thm_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Thm_0; !- Layer 3 + +Construction, + B_Off_Fac_0, !- Name + B_Clay_Brick_H_0.06_B_Off_Fac_0, !- Outside Layer + B_XPS_Board_0.02_B_Off_Fac_0, !- Layer 2 + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Layer 3 + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Layer 4 + B_Gypsum_Board_0.015_B_Off_Fac_0; !- Layer 5 + +Construction, + B_Off_Fac_0_FLIPPED, !- Name + B_Gypsum_Board_0.015_B_Off_Fac_0, !- Outside Layer + B_Fiberglass_Batts_0.05_B_Off_Fac_0, !- Layer 2 + B_Concrete_Block_H_0.15_B_Off_Fac_0, !- Layer 3 + B_XPS_Board_0.02_B_Off_Fac_0, !- Layer 4 + B_Clay_Brick_H_0.06_B_Off_Fac_0; !- Layer 5 + +Construction, + B_Off_Par_0, !- Name + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Par_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Par_0; !- Layer 3 + +Construction, + B_Off_Par_0_FLIPPED, !- Name + B_Gypsum_Plaster_0.02_B_Off_Par_0, !- Outside Layer + B_Softwood_General_0.02_B_Off_Par_0, !- Layer 2 + B_Gypsum_Plaster_0.02_B_Off_Par_0; !- Layer 3 + +Construction, + B_Off_Inf_0, !- Name + B_Urethane_Carpet_0.02_B_Off_Inf_0, !- Outside Layer + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Layer 2 + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Layer 3 + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Layer 4 + B_Gypsum_Board_0.02_B_Off_Inf_0; !- Layer 5 + +Construction, + B_Off_Inf_0_FLIPPED, !- Name + B_Gypsum_Board_0.02_B_Off_Inf_0, !- Outside Layer + B_Air_Floor_15cm_0.15_B_Off_Inf_0, !- Layer 2 + B_Concrete_RC_Dense_0.15_B_Off_Inf_0, !- Layer 3 + B_Cement_Mortar_0.02_B_Off_Inf_0, !- Layer 4 + B_Urethane_Carpet_0.02_B_Off_Inf_0; !- Layer 5 + +Construction, + B_Off_Gro_0, !- Name + B_XPS_Board_0.02_B_Off_Gro_0, !- Outside Layer + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Layer 2 + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Layer 3 + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Layer 4 + B_Ceramic_Tile_0.02_B_Off_Gro_0; !- Layer 5 + +Construction, + B_Off_Gro_0_FLIPPED, !- Name + B_Ceramic_Tile_0.02_B_Off_Gro_0, !- Outside Layer + B_Cement_Mortar_0.03_B_Off_Gro_0, !- Layer 2 + B_Concrete_MC_Light_0.04_B_Off_Gro_0, !- Layer 3 + B_Concrete_RC_Dense_0.15_B_Off_Gro_0, !- Layer 4 + B_XPS_Board_0.02_B_Off_Gro_0; !- Layer 5 + +Construction, + B_Off_Rof_0, !- Name + B_XPS_Board_0.1_B_Off_Rof_0, !- Outside Layer + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Layer 2 + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Layer 3 + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Layer 4 + B_Gypsum_Board_0.02_B_Off_Rof_0; !- Layer 5 + +Construction, + B_Off_Rof_0_FLIPPED, !- Name + B_Gypsum_Board_0.02_B_Off_Rof_0, !- Outside Layer + B_Air_Floor_15cm_0.15_B_Off_Rof_0, !- Layer 2 + B_Concrete_RC_Dense_0.2_B_Off_Rof_0, !- Layer 3 + B_Concrete_MC_Light_0.15_B_Off_Rof_0, !- Layer 4 + B_XPS_Board_0.1_B_Off_Rof_0; !- Layer 5 + +Construction, + B_Dbl_Air_Cl, !- Name + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Outside Layer + AIR_0.006_B_Dbl_Air_Cl, !- Layer 2 + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl; !- Layer 3 + +Construction, + B_Dbl_Air_Cl_FLIPPED, !- Name + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl, !- Outside Layer + AIR_0.006_B_Dbl_Air_Cl, !- Layer 2 + B_Glass_Clear_3_0.003_B_Dbl_Air_Cl; !- Layer 3 + +GlobalGeometryRules, + LowerLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + Relative; !- Coordinate System + +Zone, + Perim, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1.0, !- Multiplier + , !- Ceiling Height + 21.00199975, !- Volume + 6.30059992500001, !- Floor Area + TARP, !- Zone Inside Convection Algorithm + DOE-2; !- Zone Outside Convection Algorithm + +Zone, + Core, !- Name + 0, !- Direction of Relative North + 0, !- X Origin + 0, !- Y Origin + 0, !- Z Origin + 1, !- Type + 1.0, !- Multiplier + , !- Ceiling Height + 3.99800025, !- Volume + 1.199400075, !- Floor Area + TARP, !- Zone Inside Convection Algorithm + DOE-2; !- Zone Outside Convection Algorithm + +BuildingSurface:Detailed, + Perim:f0, !- Name + Wall, !- Surface Type + B_Off_Fac_0, !- Construction Name + Perim, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f1, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Surface, !- Outside Boundary Condition + Core:f0, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f2, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f3, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f4, !- Name + Floor, !- Surface Type + B_Off_Inf_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 3.0651, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 3.0651, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f5, !- Name + Floor, !- Surface Type + B_Off_Gro_0, !- Construction Name + Perim, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 1, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 3.0651, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 3.0651, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f6, !- Name + Ceiling, !- Surface Type + B_Off_Inf_0, !- Construction Name + Perim, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 3.0651, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 3.0651, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Perim:f7, !- Name + Roof, !- Surface Type + B_Off_Rof_0, !- Construction Name + Perim, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 3.0651, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 3.0651, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f0, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Surface, !- Outside Boundary Condition + Perim:f1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f1, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f2, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + -1.7323, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f3, !- Name + Wall, !- Surface Type + B_Off_Par_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 1.9652, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + 1.2677, !- Vertex 3 Xcoordinate + 2.365, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f4, !- Name + Floor, !- Surface Type + B_Off_Inf_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 2.0985, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.0985, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.365, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f5, !- Name + Floor, !- Surface Type + B_Off_Gro_0, !- Construction Name + Core, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 1, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.0985, !- Vertex 1 Ycoordinate + 0, !- Vertex 1 Zcoordinate + 1.2677, !- Vertex 2 Xcoordinate + 1.9652, !- Vertex 2 Ycoordinate + 0, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 0, !- Vertex 3 Zcoordinate + -1.7323, !- Vertex 4 Xcoordinate + 2.0985, !- Vertex 4 Ycoordinate + 0; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f6, !- Name + Ceiling, !- Surface Type + B_Off_Inf_0, !- Construction Name + Core, !- Zone Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.365, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.365, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 2.0985, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 2.0985, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +BuildingSurface:Detailed, + Core:f7, !- Name + Roof, !- Surface Type + B_Off_Rof_0, !- Construction Name + Core, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 1.2677, !- Vertex 1 Xcoordinate + 2.0985, !- Vertex 1 Ycoordinate + 3.3333, !- Vertex 1 Zcoordinate + -1.7323, !- Vertex 2 Xcoordinate + 2.0985, !- Vertex 2 Ycoordinate + 3.3333, !- Vertex 2 Zcoordinate + -1.7323, !- Vertex 3 Xcoordinate + 1.9652, !- Vertex 3 Ycoordinate + 3.3333, !- Vertex 3 Zcoordinate + 1.2677, !- Vertex 4 Xcoordinate + 1.9652, !- Vertex 4 Ycoordinate + 3.3333; !- Vertex 4 Zcoordinate + +FenestrationSurface:Detailed, + Perim:f0:w0, !- Name + Window, !- Surface Type + B_Dbl_Air_Cl, !- Construction Name + Perim:f0, !- Building Surface Name + , !- Outside Boundary Condition Object + Autocalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + -1.6323, !- Vertex 1 Xcoordinate + 4.4652, !- Vertex 1 Ycoordinate + 0.85, !- Vertex 1 Zcoordinate + -1.6323, !- Vertex 2 Xcoordinate + 4.4652, !- Vertex 2 Ycoordinate + 2.2786, !- Vertex 2 Zcoordinate + 1.1677, !- Vertex 3 Xcoordinate + 4.4652, !- Vertex 3 Ycoordinate + 2.2786, !- Vertex 3 Zcoordinate + 1.1677, !- Vertex 4 Xcoordinate + 4.4652, !- Vertex 4 Ycoordinate + 0.85; !- Vertex 4 Zcoordinate + +InternalMass, + PerimInternalMass, !- Name + B_Off_Thm_0, !- Construction Name + Perim, !- Zone or ZoneList Name + 6.61562992125001; !- Surface Area + +InternalMass, + CoreInternalMass, !- Name + B_Off_Thm_0, !- Construction Name + Core, !- Zone or ZoneList Name + 1.25937007875; !- Surface Area + +People, + People Perim, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Occ, !- Number of People Schedule Name + People/Area, !- Number of People Calculation Method + , !- Number of People + 0.055, !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + PerimPeopleActivity, !- Activity Level Schedule Name + 3.82e-08, !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + PerimWorkEfficiency, !- Work Efficiency Schedule Name + DynamicClothingModelASHRAE55, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + , !- Clothing Insulation Schedule Name + PerimAirVelocity, !- Air Velocity Schedule Name + AdaptiveASH55; !- Thermal Comfort Model 1 Type + +People, + People Core, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Occ, !- Number of People Schedule Name + People/Area, !- Number of People Calculation Method + , !- Number of People + 0.055, !- People per Zone Floor Area + , !- Zone Floor Area per Person + 0.3, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + CorePeopleActivity, !- Activity Level Schedule Name + 3.82e-08, !- Carbon Dioxide Generation Rate + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface NameAngle Factor List Name + CoreWorkEfficiency, !- Work Efficiency Schedule Name + DynamicClothingModelASHRAE55, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + , !- Clothing Insulation Schedule Name + CoreAirVelocity, !- Air Velocity Schedule Name + AdaptiveASH55; !- Thermal Comfort Model 1 Type + +Lights, + Perim General lighting, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Lgt, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 12, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.42, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + ; !- EndUse Subcategory + +Lights, + Core General lighting, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Lgt, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level + 12, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Return Air Fraction + 0.42, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + ; !- EndUse Subcategory + +ElectricEquipment, + Perim Equipment 1, !- Name + Perim, !- Zone or ZoneList Name + B_Off_Y_Plg, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 8, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.2, !- Fraction Radiant + 0, !- Fraction Lost + ; !- EndUse Subcategory + +ElectricEquipment, + Core Equipment 1, !- Name + Core, !- Zone or ZoneList Name + B_Off_Y_Plg, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level + 8, !- Watts per Zone Floor Area + , !- Watts per Person + 0, !- Fraction Latent + 0.2, !- Fraction Radiant + 0, !- Fraction Lost + ; !- EndUse Subcategory + +ZoneInfiltration:DesignFlowRate, + PerimInfiltration, !- Name + Perim, !- Zone or ZoneList Name + On, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + 0.35, !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneInfiltration:DesignFlowRate, + CoreInfiltration, !- Name + Core, !- Zone or ZoneList Name + On, !- Schedule Name + AirChanges/Hour, !- Design Flow Rate Calculation Method + , !- Design Flow Rate + , !- Flow per Zone Floor Area + , !- Flow per Exterior Surface Area + 0.35, !- Air Changes per Hour + 1, !- Constant Term Coefficient + 0, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0; !- Velocity Squared Term Coefficient + +ZoneVentilation:WindandStackOpenArea, + PerimNatVent_Buoy, !- Name + Perim, !- Zone Name + 3.2, !- Opening Area + NATVENT_AVAIL_SCHED_Perim, !- Opening Area Fraction Schedule Name + 0, !- Opening Effectiveness + 0, !- Effective Angle + 0.357142857142857, !- Height Difference + 0.6, !- Discharge Coefficient for Opening + 22, !- Minimum Indoor Temperature + , !- Minimum Indoor Temperature Schedule Name + 100, !- Maximum Indoor Temperature + , !- Maximum Indoor Temperature Schedule Name + 1, !- Delta Temperature + , !- Delta Temperature Schedule Name + 20, !- Minimum Outdoor Temperature + , !- Minimum Outdoor Temperature Schedule Name + 26, !- Maximum Outdoor Temperature + , !- Maximum Outdoor Temperature Schedule Name + 40; !- Maximum Wind Speed + +DesignSpecification:OutdoorAir, + PerimMinFreshAir, !- Name + Sum, !- Outdoor Air Method + 2.5e-06, !- Outdoor Air Flow per Person + 3E-07, !- Outdoor Air Flow per Zone Floor Area + , !- Outdoor Air Flow per Zone + , !- Outdoor Air Flow Air Changes per Hour + B_Off_Y_Occ; !- Outdoor Air Schedule Name + +DesignSpecification:OutdoorAir, + CoreMinFreshAir, !- Name + Sum, !- Outdoor Air Method + 2.5e-06, !- Outdoor Air Flow per Person + 3E-07, !- Outdoor Air Flow per Zone Floor Area + , !- Outdoor Air Flow per Zone + , !- Outdoor Air Flow Air Changes per Hour + B_Off_Y_Occ; !- Outdoor Air Schedule Name + +ZoneControl:Humidistat, + PerimHumidistat, !- Name + Perim, !- Zone Name + PerimHumidMin, !- Humidifying Relative Humidity Setpoint Schedule Name + PerimHumidMax; !- Dehumidifying Relative Humidity Setpoint Schedule Name + +ZoneControl:Humidistat, + CoreHumidistat, !- Name + Core, !- Zone Name + CoreHumidMin, !- Humidifying Relative Humidity Setpoint Schedule Name + CoreHumidMax; !- Dehumidifying Relative Humidity Setpoint Schedule Name + +ZoneControl:Thermostat, + Perim Thermostat, !- Name + Perim, !- Zone or ZoneList Name + PerimZoneControlTypeSched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint - Zone Perim; !- Control 1 Name + +ZoneControl:Thermostat, + Core Thermostat, !- Name + Core, !- Zone or ZoneList Name + CoreZoneControlTypeSched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Dual Setpoint - Zone Core; !- Control 1 Name + +ThermostatSetpoint:DualSetpoint, + Dual Setpoint - Zone Perim, !- Name + PerimHeating_SP_Sch, !- Heating Setpoint Temperature Schedule Name + PerimCooling_SP_Sch; !- Cooling Setpoint Temperature Schedule Name + +ThermostatSetpoint:DualSetpoint, + Dual Setpoint - Zone Core, !- Name + CoreHeating_SP_Sch, !- Heating Setpoint Temperature Schedule Name + CoreCooling_SP_Sch; !- Cooling Setpoint Temperature Schedule Name + +ZoneHVAC:IdealLoadsAirSystem, + Perim Ideal Loads Air, !- Name + , !- Availability Schedule Name + Node Perim In, !- Zone Supply Air Node Name + , !- Zone Exhaust Air Node Name + , !- System Inlet Air Node Name + 30, !- Maximum Heating Supply Air Temperature + 18, !- Minimum Cooling Supply Air Temperature + 0.01, !- Maximum Heating Supply Air Humidity Ratio + 0.008, !- Minimum Cooling Supply Air Humidity Ratio + NoLimit, !- Heating Limit + 100, !- Maximum Heating Air Flow Rate + , !- Maximum Sensible Heating Capacity + LimitFlowRateAndCapacity, !- Cooling Limit + 0.0005, !- Maximum Cooling Air Flow Rate + 630.059992500001, !- Maximum Total Cooling Capacity + B_Off_Y_Het, !- Heating Availability Schedule Name + B_Off_Y_Col, !- Cooling Availability Schedule Name + None, !- Dehumidification Control Type + , !- Cooling Sensible Heat Ratio + None, !- Humidification Control Type + PerimMinFreshAir, !- Design Specification Outdoor Air Object Name + Perim_OutDoorInlet, !- Outdoor Air Inlet Node Name + OccupancySchedule, !- Demand Controlled Ventilation Type + NoEconomizer, !- Outdoor Air Economizer Type + None, !- Heat Recovery Type + 0.7, !- Sensible Heat Recovery Effectiveness + 0.65; !- Latent Heat Recovery Effectiveness + +ZoneHVAC:IdealLoadsAirSystem, + Core Ideal Loads Air, !- Name + , !- Availability Schedule Name + Node Core In, !- Zone Supply Air Node Name + , !- Zone Exhaust Air Node Name + , !- System Inlet Air Node Name + 30, !- Maximum Heating Supply Air Temperature + 18, !- Minimum Cooling Supply Air Temperature + 0.01, !- Maximum Heating Supply Air Humidity Ratio + 0.008, !- Minimum Cooling Supply Air Humidity Ratio + NoLimit, !- Heating Limit + 100, !- Maximum Heating Air Flow Rate + , !- Maximum Sensible Heating Capacity + LimitFlowRateAndCapacity, !- Cooling Limit + 0.0005, !- Maximum Cooling Air Flow Rate + 119.9400075, !- Maximum Total Cooling Capacity + B_Off_Y_Het, !- Heating Availability Schedule Name + B_Off_Y_Col, !- Cooling Availability Schedule Name + None, !- Dehumidification Control Type + , !- Cooling Sensible Heat Ratio + None, !- Humidification Control Type + CoreMinFreshAir, !- Design Specification Outdoor Air Object Name + Core_OutDoorInlet, !- Outdoor Air Inlet Node Name + OccupancySchedule, !- Demand Controlled Ventilation Type + NoEconomizer, !- Outdoor Air Economizer Type + None, !- Heat Recovery Type + 0.7, !- Sensible Heat Recovery Effectiveness + 0.65; !- Latent Heat Recovery Effectiveness + +ZoneHVAC:EquipmentList, + Perim Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment 1 Object Type + Perim Ideal Loads Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentList, + Core Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:IdealLoadsAirSystem, !- Zone Equipment 1 Object Type + Core Ideal Loads Air, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or NoLoad Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +ZoneHVAC:EquipmentConnections, + Perim, !- Zone Name + Perim Equipment, !- Zone Conditioning Equipment List Name + Perim Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node Perim Zone, !- Zone Air Node Name + Node Perim Out; !- Zone Return Air Node or NodeList Name + +ZoneHVAC:EquipmentConnections, + Core, !- Zone Name + Core Equipment, !- Zone Conditioning Equipment List Name + Core Inlets, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node Core Zone, !- Zone Air Node Name + Node Core Out; !- Zone Return Air Node or NodeList Name + +NodeList, + Perim Inlets, !- Name + Node Perim In; !- Node 1 Name + +NodeList, + Core Inlets, !- Name + Node Core In; !- Node 1 Name + +EnergyManagementSystem:Sensor, + OutdoorTemp, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Drybulb Temperature; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + OutdoorRelHumid, !- Name + Environment, !- OutputVariable or OutputMeter Index Key Name + Site Outdoor Air Relative Humidity; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + USRNATVENT_Perim, !- Name + B_Off_Y_Nat, !- OutputVariable or OutputMeter Index Key Name + Schedule Value; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Sensor, + USRNATVENT_Core, !- Name + B_Off_Y_Nat, !- OutputVariable or OutputMeter Index Key Name + Schedule Value; !- OutputVariable or OutputMeter Name + +EnergyManagementSystem:Actuator, + NATVENT_AVAIL_SCHED_ACTUATOR_Perim, !- Name + NATVENT_AVAIL_SCHED_Perim, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:Actuator, + NATVENT_AVAIL_SCHED_ACTUATOR_Core, !- Name + NATVENT_AVAIL_SCHED_Core, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + +EnergyManagementSystem:ProgramCallingManager, + My Perim_Setpoint_Schedule_Calculator_Example, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Perim_ErlEnforceBinary; !- Program Name 1 + +EnergyManagementSystem:ProgramCallingManager, + My Core_Setpoint_Schedule_Calculator_Example, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + Core_ErlEnforceBinary; !- Program Name 1 + +EnergyManagementSystem:Program, + Perim_ErlEnforceBinary, !- Name + IF (USRNATVENT_Perim > 0), !- Program Line 1 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Perim = 1, !- Program Line 2 + ELSE, !- Program Line 3 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Perim = 0, !- Program Line 4 + ENDIF; !- Program Line 5 + +EnergyManagementSystem:Program, + Core_ErlEnforceBinary, !- Name + IF (USRNATVENT_Core > 0), !- Program Line 1 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Core = 1, !- Program Line 2 + ELSE, !- Program Line 3 + Set NATVENT_AVAIL_SCHED_ACTUATOR_Core = 0, !- Program Line 4 + ENDIF; !- Program Line 5 + +WaterUse:Equipment, + DHW Perim, !- Name + DHW Perim, !- EndUse Subcategory + 3.67534995625e-07, !- Peak Flow Rate + B_Off_Y_Dhw, !- Flow Rate Fraction Schedule Name + DHW Supply Temperature Perim, !- Target Temperature Schedule Name + DHW Supply Temperature Perim, !- Hot Water Supply Temperature Schedule Name + DHW Mains Temperature Perim, !- Cold Water Supply Temperature Schedule Name + , !- Zone Name + , !- Sensible Fraction Schedule Name + ; !- Latent Fraction Schedule Name + +WaterUse:Equipment, + DHW Core, !- Name + DHW Core, !- EndUse Subcategory + 6.9965e-08, !- Peak Flow Rate + B_Off_Y_Dhw, !- Flow Rate Fraction Schedule Name + DHW Supply Temperature Core, !- Target Temperature Schedule Name + DHW Supply Temperature Core, !- Hot Water Supply Temperature Schedule Name + DHW Mains Temperature Core, !- Cold Water Supply Temperature Schedule Name + , !- Zone Name + , !- Sensible Fraction Schedule Name + ; !- Latent Fraction Schedule Name + +Output:VariableDictionary, + IDF; !- Key Field + +Output:Surfaces:List, + Details; !- Report Type + +Output:Surfaces:Drawing, + DXF, !- Report Type + Triangulate3DFace; !- Report Specifications 1 + +Output:EnergyManagementSystem, + Verbose, !- Actuator Availability Dictionary Reporting + Verbose, !- Internal Variable Availability Dictionary Reporting + Verbose; !- EMS Runtime Language Debug Output Level + +Output:Variable, + *, !- Key Value + Zone People Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Lights Electric Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Electric Equipment Electric Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Windows Total Transmitted Solar Radiation Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Mean Radiant Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Mean Air Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Operative Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Total Heat Loss Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Total Heat Gain Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Total Heat Loss Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Total Heat Gain Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Air Temperature, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Air Relative Humidity, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Supply Air Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Supply Air Total Cooling Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ideal Loads Zone Total Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Water Use Equipment Heating Energy, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Infiltration Air Change Rate, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Variable, + *, !- Key Value + Zone Ventilation Air Change Rate, !- Variable Name + Monthly; !- Reporting Frequency + +Output:Diagnostics, + DisplayAdvancedReportVariables; !- Key 1 \ No newline at end of file diff --git a/tests/input_data/umi_samples/BostonTemplateLibrary_2.json b/tests/input_data/umi_samples/BostonTemplateLibrary_2.json index 702e1796e..d9b6340be 100755 --- a/tests/input_data/umi_samples/BostonTemplateLibrary_2.json +++ b/tests/input_data/umi_samples/BostonTemplateLibrary_2.json @@ -109,9 +109,7 @@ "Density": 2500.0, "EmbodiedCarbon": 10.1, "EmbodiedEnergy": 191.8, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -138,9 +136,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -167,9 +163,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -196,9 +190,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -223,10 +215,7 @@ "Density": 650.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.4, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -249,9 +238,7 @@ "Density": 880.0, "EmbodiedCarbon": 0.08, "EmbodiedEnergy": 0.71, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -274,9 +261,7 @@ "Density": 1.2, "EmbodiedCarbon": 0.0, "EmbodiedEnergy": 0.0, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.0, "TransportDistance": 0.0, @@ -299,9 +284,7 @@ "Density": 2400.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -324,9 +307,7 @@ "Density": 2100.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -349,9 +330,7 @@ "Density": 1900.0, "EmbodiedCarbon": 0.08, "EmbodiedEnergy": 0.71, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -374,11 +353,7 @@ "Density": 950.0, "EmbodiedCarbon": 0.38, "EmbodiedEnergy": 6.75, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -401,9 +376,7 @@ "Density": 1000.0, "EmbodiedCarbon": 0.22, "EmbodiedEnergy": 3.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -426,9 +399,7 @@ "Density": 1.2, "EmbodiedCarbon": 0.0, "EmbodiedEnergy": 0.0, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.0, "TransportDistance": 0.0, @@ -451,10 +422,7 @@ "Density": 2243.0, "EmbodiedCarbon": 0.59, "EmbodiedEnergy": 9.0, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -477,11 +445,7 @@ "Density": 40.0, "EmbodiedCarbon": 2.7, "EmbodiedEnergy": 86.4, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -504,11 +468,7 @@ "Density": 900.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 3.2, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -531,11 +491,7 @@ "Density": 1900.0, "EmbodiedCarbon": 0.18, "EmbodiedEnergy": 1.34, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -558,9 +514,7 @@ "Density": 540.0, "EmbodiedCarbon": 0.81, "EmbodiedEnergy": 15.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -583,9 +537,7 @@ "Density": 12.0, "EmbodiedCarbon": 1.35, "EmbodiedEnergy": 28.0, - "SubstitutionRatePattern": [ - 0.5 - ], + "SubstitutionRatePattern": [0.5], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -608,9 +560,7 @@ "Density": 110.0, "EmbodiedCarbon": 3.89, "EmbodiedEnergy": 74.4, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 5.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -633,11 +583,7 @@ "Density": 680.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.5, - "SubstitutionRatePattern": [ - 0.1, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.1, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -660,11 +606,7 @@ "Density": 496.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.5, - "SubstitutionRatePattern": [ - 0.1, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.1, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -687,9 +629,7 @@ "Density": 1920.0, "EmbodiedCarbon": 0.032, "EmbodiedEnergy": 0.55, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -712,9 +652,7 @@ "Density": 592.0, "EmbodiedCarbon": 0.47, "EmbodiedEnergy": 7.8, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -737,9 +675,7 @@ "Density": 1380.0, "EmbodiedCarbon": 2.41, "EmbodiedEnergy": 77.2, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -762,9 +698,7 @@ "Density": 7830.0, "EmbodiedCarbon": 1.37, "EmbodiedEnergy": 20.1, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -2017,30 +1951,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -2051,30 +1963,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, + 0.3, 0.3, 0.3, 0.7, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -2085,30 +1975,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.7, - 0.7, - 0.7, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 0.7, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, + 0.7, 0.3, 0.3, 0.3, 0.3, 0.7, 0.7, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -2119,30 +1987,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.5, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.5, 0.2, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -2153,30 +1999,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -2187,30 +2011,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.6, 1.0, 1.0, 0.8, 0.8, 0.6, 0.6 ], "Comments": "default", "DataSource": "default", @@ -2221,30 +2023,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.2, - 0.2, - 0.2, - 0.2, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, + 0.6, 0.2, 0.2, 0.2, 0.2, 1.0, 1.0, 0.8, 0.8, 0.6 ], "Comments": "default", "DataSource": "default", @@ -2255,30 +2035,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2289,30 +2047,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2323,30 +2059,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -2357,30 +2071,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -2391,30 +2083,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2425,30 +2095,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2459,30 +2107,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2493,30 +2119,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2527,30 +2131,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2561,30 +2143,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 1.0, 1.0, 1.0, 1.0, 0.5, 1.0, + 1.0, 1.0, 1.0, 0.3, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2595,30 +2155,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2629,30 +2167,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 0.5, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2663,30 +2179,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2697,30 +2191,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2731,30 +2203,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2765,30 +2215,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.4, 0.4, 0.4, 0.6, 0.6, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.4, 0.2, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2799,30 +2227,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2833,30 +2239,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2867,30 +2251,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2901,30 +2263,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2935,30 +2275,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2969,30 +2287,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3003,30 +2299,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3037,30 +2311,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3071,30 +2323,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.6, - 0.6, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.6, - 0.6, - 0.4, - 0.4, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.6, 0.6, 0.8, 0.8, 0.8, + 0.8, 0.8, 0.8, 0.6, 0.6, 0.4, 0.4, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3105,30 +2335,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.2, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3139,30 +2347,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.6, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.6, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3173,30 +2359,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.2, 0.4, 0.4, 0.6, 0.6, + 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3207,30 +2371,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.6, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.6, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3241,30 +2383,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.2, 0.4, 0.4, 0.6, 0.6, + 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -3275,30 +2395,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.3, - 0.4, - 0.6, - 0.6, - 0.6, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.3, - 0.3, - 0.2, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.3, 0.4, 0.6, 0.6, 0.6, + 0.5, 0.5, 0.5, 0.5, 0.5, 0.3, 0.3, 0.2, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3309,30 +2407,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.3, - 0.3, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.3, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.3, 0.3, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3343,30 +2419,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3377,30 +2431,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3411,30 +2443,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3445,30 +2455,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3479,30 +2467,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3513,30 +2479,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -3547,30 +2491,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4953,7 +3875,7 @@ }, { "$id": "160", - "FlowRatePerFloorArea": 6E-05, + "FlowRatePerFloorArea": 6e-5, "IsOn": true, "WaterSchedule": { "$ref": "155" @@ -5518,18 +4440,10 @@ "DefaultWindowToWallRatio": 0.4, "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0", "Category": "Office Spaces", "Comments": "Base building definition for MIT 4433", @@ -5582,18 +4496,10 @@ "DefaultWindowToWallRatio": 0.4, "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0", "Category": "Retail", "Comments": "Base building definition for MIT 4433", @@ -5646,18 +4552,10 @@ "DefaultWindowToWallRatio": 0.4, "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0", "Category": "Residential and Lodging", "Comments": "Base building definition for MIT 4433", @@ -5682,18 +4580,10 @@ "DefaultWindowToWallRatio": 0.4, "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0", "Category": "Residential and Lodging", "Comments": "Base building definition for MIT 4433", @@ -5712,4 +4602,4 @@ "$ref": "181" } ] -} \ No newline at end of file +} diff --git a/tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json b/tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json index f4a0f42f7..4392f7590 100644 --- a/tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json +++ b/tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json @@ -37,9 +37,7 @@ "Density": 2500.0, "EmbodiedCarbon": 5.06, "EmbodiedEnergy": 96.1, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -64,10 +62,7 @@ "Density": 650.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.4, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -90,9 +85,7 @@ "Density": 880.0, "EmbodiedCarbon": 0.08, "EmbodiedEnergy": 0.71, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -115,9 +108,7 @@ "Density": 2400.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -140,9 +131,7 @@ "Density": 2100.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 2.12, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -165,11 +154,7 @@ "Density": 950.0, "EmbodiedCarbon": 0.38, "EmbodiedEnergy": 6.75, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -192,9 +177,7 @@ "Density": 1000.0, "EmbodiedCarbon": 0.22, "EmbodiedEnergy": 3.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 50.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -217,9 +200,7 @@ "Density": 1.2, "EmbodiedCarbon": 0.0, "EmbodiedEnergy": 0.0, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.0, "TransportDistance": 0.0, @@ -242,10 +223,7 @@ "Density": 2243.0, "EmbodiedCarbon": 0.59, "EmbodiedEnergy": 9.0, - "SubstitutionRatePattern": [ - 0.5, - 1.0 - ], + "SubstitutionRatePattern": [0.5, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -268,11 +246,7 @@ "Density": 40.0, "EmbodiedCarbon": 2.7, "EmbodiedEnergy": 86.4, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -295,11 +269,7 @@ "Density": 900.0, "EmbodiedCarbon": 0.24, "EmbodiedEnergy": 3.2, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -322,11 +292,7 @@ "Density": 1900.0, "EmbodiedCarbon": 0.18, "EmbodiedEnergy": 1.34, - "SubstitutionRatePattern": [ - 0.02, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.02, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -349,9 +315,7 @@ "Density": 540.0, "EmbodiedCarbon": 0.81, "EmbodiedEnergy": 15.0, - "SubstitutionRatePattern": [ - 0.2 - ], + "SubstitutionRatePattern": [0.2], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -374,9 +338,7 @@ "Density": 12.0, "EmbodiedCarbon": 1.35, "EmbodiedEnergy": 28.0, - "SubstitutionRatePattern": [ - 0.5 - ], + "SubstitutionRatePattern": [0.5], "SubstitutionTimestep": 30.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -399,9 +361,7 @@ "Density": 110.0, "EmbodiedCarbon": 3.89, "EmbodiedEnergy": 74.4, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 5.0, "TransportCarbon": 0.067, "TransportDistance": 1000.0, @@ -424,11 +384,7 @@ "Density": 496.0, "EmbodiedCarbon": 0.45, "EmbodiedEnergy": 7.5, - "SubstitutionRatePattern": [ - 0.1, - 0.1, - 1.0 - ], + "SubstitutionRatePattern": [0.1, 0.1, 1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -451,9 +407,7 @@ "Density": 1380.0, "EmbodiedCarbon": 2.41, "EmbodiedEnergy": 77.2, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 20.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -476,9 +430,7 @@ "Density": 7830.0, "EmbodiedCarbon": 1.37, "EmbodiedEnergy": 20.1, - "SubstitutionRatePattern": [ - 1.0 - ], + "SubstitutionRatePattern": [1.0], "SubstitutionTimestep": 100.0, "TransportCarbon": 0.067, "TransportDistance": 500.0, @@ -1381,30 +1333,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, + 0.3, 0.3, 0.3, 0.7, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -1415,30 +1345,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.7, - 0.7, - 0.7, - 0.7, - 0.7, - 0.3, - 0.3, - 0.3, - 0.3, - 0.7, - 0.7, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, + 0.7, 0.3, 0.3, 0.3, 0.3, 0.7, 0.7, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -1449,30 +1357,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.5, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.5, 0.2, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -1483,30 +1369,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.5, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.8, - 0.8, - 0.8, - 0.8, - 0.2 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.5, 0.2, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.5, 0.8, 0.8, 0.8, 0.8, 0.2 ], "Comments": "default", "DataSource": "default", @@ -1517,30 +1381,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.6, 1.0, 1.0, 0.8, 0.8, 0.6, 0.6 ], "Comments": "default", "DataSource": "default", @@ -1551,30 +1393,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.2, - 0.2, - 0.2, - 0.2, - 1.0, - 1.0, - 0.8, - 0.8, - 0.6 + 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, + 0.6, 0.2, 0.2, 0.2, 0.2, 1.0, 1.0, 0.8, 0.8, 0.6 ], "Comments": "default", "DataSource": "default", @@ -1585,30 +1405,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1619,30 +1417,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1653,30 +1429,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -1687,30 +1441,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ], "Comments": "default", "DataSource": "default", @@ -1721,30 +1453,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1755,30 +1465,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1789,30 +1477,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1823,30 +1489,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1857,30 +1501,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1891,30 +1513,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 1.0, 1.0, 1.0, 1.0, 0.5, 1.0, + 1.0, 1.0, 1.0, 0.3, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1925,30 +1525,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -1959,30 +1537,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 0.5, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -1993,30 +1549,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2027,30 +1561,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.2, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 1.0, 1.0, 1.0, 1.0, 0.8, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.3, 0.3, 0.2, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2061,30 +1573,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2095,30 +1585,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.6, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.4, 0.4, 0.4, 0.6, 0.6, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.4, 0.2, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2129,30 +1597,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2163,30 +1609,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2197,30 +1621,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2231,30 +1633,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2265,30 +1645,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2299,30 +1657,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2333,30 +1669,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2367,30 +1681,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2401,30 +1693,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.4, - 0.6, - 0.6, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.6, - 0.6, - 0.4, - 0.4, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.4, 0.6, 0.6, 0.8, 0.8, 0.8, + 0.8, 0.8, 0.8, 0.6, 0.6, 0.4, 0.4, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2435,30 +1705,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.2, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.2, 0.2, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2469,30 +1717,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.6, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.6, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2503,30 +1729,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.2, - 0.2, - 0.4, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.1, - 0.1 + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.2, 0.2, 0.4, 0.4, 0.6, 0.6, + 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.1, 0.1 ], "Comments": "default", "DataSource": "default", @@ -2537,30 +1741,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.3, - 0.4, - 0.6, - 0.6, - 0.6, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.3, - 0.3, - 0.2, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.3, 0.4, 0.6, 0.6, 0.6, + 0.5, 0.5, 0.5, 0.5, 0.5, 0.3, 0.3, 0.2, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2571,30 +1753,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1, - 0.3, - 0.3, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.3, - 0.1, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.3, 0.3, 0.4, 0.4, + 0.4, 0.4, 0.4, 0.4, 0.3, 0.1, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2605,30 +1765,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2639,30 +1777,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2673,30 +1789,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2707,30 +1801,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, + 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2741,30 +1813,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2775,30 +1825,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -2809,30 +1837,8 @@ "Category": "Day", "Type": "Fraction", "Values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "Comments": "default", "DataSource": "default", @@ -4115,7 +3121,7 @@ }, { "$id": "160", - "FlowRatePerFloorArea": 6e-05, + "FlowRatePerFloorArea": 6e-5, "IsOn": true, "WaterSchedule": { "$ref": "155" @@ -4751,18 +3757,10 @@ "Name": "B_Off_0", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -4787,18 +3785,10 @@ "Name": "B_Ret_0", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -4823,18 +3813,10 @@ "Name": "B_Res_0_Masonry", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" }, { @@ -4859,19 +3841,11 @@ "Name": "B_Res_0_WoodFrame", "YearFrom": 0, "YearTo": 0, - "Country": [ - "USA" - ], - "ClimateZone": [ - "5A" - ], - "Authors": [ - "Carlos Cerezo" - ], - "AuthorEmails": [ - "ccerezo@mit.edu" - ], + "Country": ["USA"], + "ClimateZone": ["5A"], + "Authors": ["Carlos Cerezo"], + "AuthorEmails": ["ccerezo@mit.edu"], "Version": "v1.0" } ] -} \ No newline at end of file +} diff --git a/tests/test_cli.py b/tests/test_cli.py index 672d1e417..8a7681d97 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -8,6 +8,8 @@ from archetypal.cli import cli from archetypal.utils import log +from .conftest import data_dir + class TestCli: """Defines tests for usage of the archetypal Command Line Interface""" @@ -19,8 +21,8 @@ class TestCli: def test_reduce(self): """Tests the 'reduced_model' method""" runner = CliRunner() - base = Path("tests/input_data/umi_samples") - outname = "tests/.temp/warehouse.json" + base = Path(data_dir / "umi_samples") + outname = settings.cache_folder / "warehouse.json" result = runner.invoke( cli, [ @@ -37,7 +39,7 @@ def test_reduce(self): settings.ep_version, "reduce", "-w", - "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_*.epw", + data_dir / "CAN_PQ_Montreal.Intl.AP.716270_*.epw", base / "*Res*.idf", "-o", outname, @@ -59,19 +61,19 @@ def test_transition_dir_file_mixed(self): cli, [ "--cache-folder", - "tests/.temp/cache", + os.getenv("ARCHETYPAL_CACHE") or "tests/.temp/cache", "--data-folder", - "tests/.temp/data", + os.getenv("ARCHETYPAL_DATA") or "tests/.temp/data", "--imgs-folder", - "tests/.temp/images", + os.getenv("ARCHETYPAL_IMAGES") or "tests/.temp/images", "--logs-folder", - "tests/.temp/logs", + os.getenv("ARCHETYPAL_LOGS") or "tests/.temp/logs", "transition", "-v", "9.2", - "tests/input_data/problematic/ASHRAE90.1_ApartmentHighRise_STD2016_Buffalo.idf", - "tests/input_data/problematic/*.idf", # Path with wildcard - "tests/input_data/problematic", # Just a path + str(data_dir / "problematic/ASHRAE90.1_ApartmentHighRise_STD2016_Buffalo.idf"), + str(data_dir / "problematic/*.idf"), # Path with wildcard + str(data_dir / "problematic"), # Just a path ], catch_exceptions=False, ) diff --git a/tests/test_dataportals.py b/tests/test_dataportals.py index 57b35780b..614ed2ddb 100644 --- a/tests/test_dataportals.py +++ b/tests/test_dataportals.py @@ -7,6 +7,8 @@ from archetypal.dataportal import download_bld_window, tabula_building_details_sheet from archetypal.template.window_setting import WindowSetting +from .conftest import data_dir + def test_tabula_available_country(config): # First, let's try the API call @@ -52,9 +54,7 @@ def test_tabula_building_sheet(config): def test_tabula_building_sheet_code_building(config): # Test with code_building not None - sheet = tabula_building_details_sheet( - code_building="AT.MT.AB.02.Gen.ReEx.001.001", code_country="Austria" - ) + sheet = tabula_building_details_sheet(code_building="AT.MT.AB.02.Gen.ReEx.001.001", code_country="Austria") # Makes sure result is not empty assert list(sheet["val"]) @@ -65,17 +65,13 @@ def test_tabula_building_sheet_code_building(config): def test_tabula_building_sheet_valueerror(config): # Test with wrong code_building with pytest.raises(ValueError): - sheet = tabula_building_details_sheet( - code_building="wrong_string", code_country="Austria" - ) + sheet = tabula_building_details_sheet(code_building="wrong_string", code_country="Austria") # Makes sure sheet not in locals assert "sheet" not in locals() # Test with wrong code_buildingsizeclass with pytest.raises(ValueError): - sheet = tabula_building_details_sheet( - code_buildingsizeclass="wrong_string", code_country="Austria" - ) + sheet = tabula_building_details_sheet(code_buildingsizeclass="wrong_string", code_country="Austria") # Makes sure sheet not in locals assert "sheet" not in locals() @@ -98,9 +94,7 @@ def test_tabula_system(config): def test_tabula_system_valueerror(config): # Test with wrong code_boundarycond with pytest.raises(ValueError): - res = dataportal.tabula_system( - code_country="FR", code_boundarycond="wrong_string" - ) + res = dataportal.tabula_system(code_country="FR", code_boundarycond="wrong_string") # Makes sure res not in locals assert "res" not in locals() @@ -148,10 +142,7 @@ def test_tabula_multiple(config): archetypes = pd.concat( ab.apply( lambda x: tabula_building_details_sheet( - code_building=x.code_buildingtype_column1 - + "." - + x.suffix_building_column1 - + ".001" + code_building=x.code_buildingtype_column1 + "." + x.suffix_building_column1 + ".001" ), axis=1, ).values.tolist(), @@ -219,7 +210,7 @@ def test_download_and_load_bld_window(config): ) idf = IDF( response[0], - epw="tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw", + epw=data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw", prep_outputs=False, ) construct = idf.getobject("CONSTRUCTION", "AEDG-SmOffice 1A Window Fixed") diff --git a/tests/test_end_use_balance.py b/tests/test_end_use_balance.py index 526ec9b5a..c85d29470 100644 --- a/tests/test_end_use_balance.py +++ b/tests/test_end_use_balance.py @@ -1,6 +1,7 @@ from tempfile import TemporaryFile import pytest + from archetypal import IDF from archetypal.idfclass.end_use_balance import EndUseBalance @@ -15,7 +16,6 @@ def idf(self): design_day=False, readvars=False, ) - idf = idf.saveas("AdultEducationCenter.idf") idf.outputs.add_end_use_balance_components() idf.outputs.apply() idf.simulate() @@ -42,9 +42,7 @@ def idf_noOA(self): def test_from_idf(self, idf): """Test initializing with idf model.""" - eu = EndUseBalance.from_sql_file( - idf.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W" - ) + eu = EndUseBalance.from_sql_file(idf.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W") # assert eu # assert not eu.component_summary().empty # assert not eu.separate_gains_and_losses("opaque_flow", ["Zone_Name"]).empty @@ -57,15 +55,11 @@ def test_from_idf(self, idf): def test_from_idf_noOA(self, idf_noOA): """Test initializing with idf model.""" - eu = EndUseBalance.from_sql_file( - idf_noOA.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W" - ) + eu = EndUseBalance.from_sql_file(idf_noOA.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W") to_df_sep = eu.to_df(separate_gains_and_losses=True) assert not to_df_sep.empty def test_to_sankey(self, idf): - eu = EndUseBalance.from_sql_file( - idf.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W" - ) + eu = EndUseBalance.from_sql_file(idf.sql_file, outdoor_surfaces_only=True, units="GJ", power_units="W") with TemporaryFile("w") as f: eu.to_sankey(f) diff --git a/tests/test_energypandas.py b/tests/test_energypandas.py index 972c587bc..e225075ed 100644 --- a/tests/test_energypandas.py +++ b/tests/test_energypandas.py @@ -1,3 +1,5 @@ +from pathlib import Path + import pytest from energy_pandas import EnergyDataFrame, EnergySeries from numpy.testing import assert_almost_equal @@ -5,14 +7,15 @@ from archetypal import IDF, settings +from .conftest import data_dir + @pytest.fixture(scope="module") def idf(config): - idfname = "tests/input_data/umi_samples/B_Off_0.idf" - epw = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + idfname = data_dir / "umi_samples/B_Off_0.idf" + epw = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" _idf = IDF(idfname, epw) yield _idf - _idf.save() @pytest.fixture(scope="class") @@ -33,7 +36,7 @@ def rd_edf(idf): class TestEnergySeries: def test_from_csv(self): - file = "tests/input_data/test_profile.csv" + file = data_dir / "test_profile.csv" df = read_csv(file, index_col=[0], names=["Heat"]) ep = EnergySeries.with_timeindex(df.Heat, frequency="1H", units="BTU/hour") assert ep.units == settings.unit_registry.parse_expression("BTU/hour").units @@ -46,7 +49,8 @@ def test_from_report_data(self, rd_es): def test_plot_3d(self, rd_es, kind): fig, ax = rd_es.plot3d( save=False, - show=True, + show=False, + close=True, axis_off=False, kind=kind, cmap="Reds", @@ -60,8 +64,9 @@ def test_plot_2d(self, rd_es): axis_off=False, cmap="Reds", figsize=(2, 6), - show=True, + show=False, save=False, + close=True, filename=rd_es.name + "_heatmap", ) @@ -92,7 +97,8 @@ def test_plot_2d(self, rd_edf): axis_off=False, cmap="Reds", figsize=(4, 6), - show=True, + show=False, save=False, + close=True, extent="tight", ) diff --git a/tests/test_idfclass.py b/tests/test_idfclass.py index 11ed78880..3d32d5be6 100644 --- a/tests/test_idfclass.py +++ b/tests/test_idfclass.py @@ -5,19 +5,20 @@ from archetypal import IDF, settings from archetypal.eplus_interface import ( - EnergyPlusProcessError, EnergyPlusVersionError, InvalidEnergyPlusVersion, ) from archetypal.eplus_interface.version import EnergyPlusVersion from archetypal.utils import parallel_process +from .conftest import data_dir + @pytest.fixture() def shoebox_model(config): """An IDF model. Yields both the idf""" - file = "tests/input_data/umi_samples/B_Off_0.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Off_0.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF(file, epw=w) @@ -25,19 +26,16 @@ class TestIDF: @pytest.fixture(scope="session") def idf_model(self, config): """An IDF model. Yields both the idf""" - file = ( - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" - ) - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF(file, epw=w).simulate() @pytest.fixture() def natvent(self, config): """An old file that needs upgrade""" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF( - "tests/input_data/problematic/nat_ventilation_SAMPLE0.idf", + data_dir / "problematic/nat_ventilation_SAMPLE0.idf", epw=w, as_version="9-2-0", ) @@ -45,20 +43,16 @@ def natvent(self, config): @pytest.fixture() def FiveZoneNightVent1(self): """""" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" - idfname = ( - EnergyPlusVersion.current().current_install_dir - / "ExampleFiles" - / "5ZoneNightVent1.idf" - ) + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + idfname = EnergyPlusVersion.current().current_install_dir / "ExampleFiles" / "5ZoneNightVent1.idf" yield IDF(idfname, epw=w) @pytest.fixture() def natvent_v9_1_0(self, config): """An old file that needs upgrade""" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF( - "tests/input_data/problematic/nat_ventilation_SAMPLE0.idf", + data_dir / "problematic/nat_ventilation_SAMPLE0.idf", epw=w, as_version="9-1-0", ) @@ -95,10 +89,10 @@ def test_copy_saveas(self, idf_model, tmp_path): def test_default_version_none(self): file = ( - "tests/input_data/necb/NECB 2011-FullServiceRestaurant-NECB HDD " + data_dir / "necb/NECB 2011-FullServiceRestaurant-NECB HDD " "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" ) - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=wf, as_version=None) assert idf.file_version == EnergyPlusVersion("9-2-0") assert idf.idd_version == (9, 2, 0) @@ -106,10 +100,10 @@ def test_default_version_none(self): def test_default_version_specified_period(self): file = ( - "tests/input_data/necb/NECB 2011-FullServiceRestaurant-NECB HDD " + data_dir / "necb/NECB 2011-FullServiceRestaurant-NECB HDD " "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" ) - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=wf, as_version="9.2.0") assert idf.file_version == EnergyPlusVersion("9-2-0") assert idf.idd_version == (9, 2, 0) @@ -117,10 +111,10 @@ def test_default_version_specified_period(self): def test_default_version_specified_dash(self): file = ( - "tests/input_data/necb/NECB 2011-FullServiceRestaurant-NECB HDD " + data_dir / "necb/NECB 2011-FullServiceRestaurant-NECB HDD " "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" ) - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=wf, as_version="9-2-0") assert idf.file_version == EnergyPlusVersion("9-2-0") assert idf.idd_version == (9, 2, 0) @@ -132,7 +126,7 @@ def test_specific_version(self, config, natvent_v9_1_0): assert natvent_v9_1_0.file_version == EnergyPlusVersion("9-1-0") def test_specific_version_error_simulate(self, natvent_v9_1_0): - with pytest.raises(EnergyPlusVersionError): + with pytest.raises(InvalidEnergyPlusVersion): natvent_v9_1_0.simulate() def test_version(self, natvent_v9_1_0): @@ -151,11 +145,8 @@ def test_version(self, natvent_v9_1_0): @pytest.mark.xfail(reason="Fails on Linux") def test_transition_error(self, config): with pytest.raises(CalledProcessError): - file = ( - "tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7" - ".2_5A_USA_IL_CHICAGO-OHARE.idf" - ) - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHARE.idf" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" IDF(file, epw=wf, as_version="8.9.0") def test_set_iddname(self): @@ -188,19 +179,16 @@ def test_wwr(self, idf_model): assert not idf_model.wwr(round_to=10).empty def test_wrong_epversion(self, config): - file = ( - "tests/input_data/problematic/RefBldgLargeOfficeNew2004_v1.4_7" - ".2_5A_USA_IL_CHICAGO-OHARE.idf" - ) - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "problematic/RefBldgLargeOfficeNew2004_v1.4_7.2_5A_USA_IL_CHICAGO-OHARE.idf" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" with pytest.raises(InvalidEnergyPlusVersion): IDF(file, epw=wf, as_version="7-3-0") def test_parallel_process(self, config): - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" files = { i: {"idfname": file.expand(), "epw": w} - for i, file in enumerate(Path("tests/input_data/necb").files("*.idf")[0:3]) + for i, file in enumerate(Path(data_dir / "necb").files("*.idf")[0:3]) } idfs = parallel_process(files, IDF, use_kwargs=True, processors=-1) @@ -238,7 +226,7 @@ def test_load_old(self, config, natvent, FiveZoneNightVent1): pytest.param( "Supermarket", 4181, - marks=pytest.mark.skip("Supermarket missing from BTAP " "database"), + marks=pytest.mark.skip("Supermarket missing from BTAP database"), ), ("Warehouse", 4835), ], @@ -248,21 +236,17 @@ def test_area(self, archetype, area, config): desired values taken from https://github.com/canmet-energy/btap""" import numpy as np - idf_file = Path("tests/input_data/necb").files(f"*{archetype}*.idf")[0] - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + idf_file = Path(data_dir / "necb").files(f"*{archetype}*.idf")[0] + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(idf_file, epw=w, prep_outputs=False) - np.testing.assert_almost_equal( - actual=idf.net_conditioned_building_area, desired=area, decimal=0 - ) + np.testing.assert_almost_equal(actual=idf.net_conditioned_building_area, desired=area, decimal=0) @pytest.fixture( scope="class", params=[ None, - EnergyPlusVersion.current().current_install_dir - / "ExampleFiles" - / "5ZoneNightVent1.idf", + EnergyPlusVersion.current().current_install_dir / "ExampleFiles" / "5ZoneNightVent1.idf", ], ids=["in memory", "5ZoneNightVent1"], ) @@ -313,6 +297,7 @@ def test_save(self, idf, tmp_path): """Saving should overwrite the file content.""" save_as = tmp_path / "idf_dup.idf" idf_dup = idf.saveas(save_as) + assert idf_dup.idfstr() == idf_dup.idfstr() def test_resize(self): """Test resizing a building to specific width and length""" @@ -367,11 +352,11 @@ def test_transition_of_memory_file(self): class TestMeters: @pytest.fixture() - def shoebox_res(self): + def shoebox_res(self, config): """An IDF model. Yields both the idf. This needs to be the only one used in the following test: test_retrieve_meters_nosim""" - file = "tests/input_data/umi_samples/B_Res_0_WoodFrame.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Res_0_WoodFrame.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF(file, epw=w) def test_retrieve_meters_nosim(self, config, shoebox_res): @@ -397,12 +382,8 @@ def test_runslab(self, config, tmp_path): / "WeatherData" / "USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw" ) - slab_idf = ( - EnergyPlusVersion.current().current_install_dir - / "ExampleFiles" - / "5ZoneAirCooledWithSlab.idf" - ) - with open(slab_idf, "r") as f: + slab_idf = EnergyPlusVersion.current().current_install_dir / "ExampleFiles" / "5ZoneAirCooledWithSlab.idf" + with open(slab_idf) as f: p.write_text(f.read()) idf = IDF(p, epw=epw, annual=False, design_day=True) diff --git a/tests/test_outputs.py b/tests/test_outputs.py index 5330f7517..47e21668a 100644 --- a/tests/test_outputs.py +++ b/tests/test_outputs.py @@ -6,7 +6,7 @@ class TestOutput: @pytest.fixture() - def idf(self): + def idf(self, config): yield IDF(prep_outputs=False) def test_output_init(self, idf): @@ -31,9 +31,7 @@ def test_output_properties(self, idf): outputs = Outputs(idf) outputs.output_variables = ["Air System Outdoor Air Minimum Flow Fraction"] - assert outputs.output_variables == ( - ("Air System Outdoor Air Minimum Flow Fraction", "Monthly"), - ) + assert outputs.output_variables == (("Air System Outdoor Air Minimum Flow Fraction", "Monthly"),) outputs.reporting_frequency = "daily" # lower case assert outputs.reporting_frequency == "Daily" # should be upper case outputs.unit_conversion = "InchPound" @@ -44,9 +42,7 @@ def test_output_properties(self, idf): assert outputs.include_html with pytest.raises(AssertionError): - outputs.output_variables = ( - "Zone Ideal Loads Supply Air Total Cooling Energy" - ) + outputs.output_variables = "Zone Ideal Loads Supply Air Total Cooling Energy" with pytest.raises(AssertionError): outputs.reporting_frequency = "annually" with pytest.raises(AssertionError): diff --git a/tests/test_schedules.py b/tests/test_schedules.py index 55a75fcf5..7ccede960 100644 --- a/tests/test_schedules.py +++ b/tests/test_schedules.py @@ -1,14 +1,18 @@ +import os +from pathlib import Path + import numpy as np import pandas as pd import pytest -from archetypal import settings from archetypal import IDF from archetypal.eplus_interface import EnergyPlusVersion from archetypal.schedule import Schedule, ScheduleTypeLimits from archetypal.template.schedule import UmiSchedule, YearSchedule from archetypal.utils import config +from .conftest import data_dir + class TestScheduleTypeLimits: """Test ScheduleTypeLimits class.""" @@ -39,19 +43,14 @@ def test_from_epbunch(self): class TestSchedule: @pytest.fixture() def schedules_in_necb_specific(self, config): - idf = IDF( - "tests/input_data/necb/NECB 2011-MediumOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" - ) + idf = IDF(data_dir / "necb/NECB 2011-MediumOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf") epbunch = idf.schedules_dict["NECB-A-Thermostat Setpoint-Heating".upper()] s = Schedule.from_epbunch(epbunch, start_day_of_the_week=0) yield s def test_scale(self, schedules_in_necb_specific): before_sum = sum(schedules_in_necb_specific.Values) - assert before_sum == pytest.approx( - sum(schedules_in_necb_specific.scale(0.1).Values) - ) + assert before_sum == pytest.approx(sum(schedules_in_necb_specific.scale(0.1).Values)) def test_plot(self, schedules_in_necb_specific): schedules_in_necb_specific.plot(drawstyle="steps-post") @@ -62,7 +61,7 @@ def test_plot2d(self, schedules_in_necb_specific): def test_make_umi_schedule(self): """Test only a single schedule name.""" - idf = IDF("tests/input_data/schedules/schedules.idf", prep_outputs=False) + idf = IDF(data_dir / "schedules/schedules.idf", prep_outputs=False) ep_bunch = idf.schedules_dict["CoolingCoilAvailSched".upper()] s = UmiSchedule.from_epbunch(ep_bunch, start_day_of_the_week=0) new = s.develop() @@ -108,21 +107,16 @@ def test_replace(self): assert new == pytest.approx(orig) -idf_file = "tests/input_data/schedules/test_multizone_EP.idf" +idf_file = data_dir / "schedules/test_multizone_EP.idf" def schedules_idf(): - config(cache_folder="tests/.temp/cache") + config(cache_folder=os.getenv("ARCHETYPAL_CACHE") or data_dir / ".temp/cache") idf = IDF( idf_file, - epw="tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw", + epw=data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw", readvars=True, - include=[ - EnergyPlusVersion.current().current_install_dir - / "DataSets" - / "TDV" - / "TDV_2008_kBtu_CTZ06.csv" - ], + include=[EnergyPlusVersion.current().current_install_dir / "DataSets" / "TDV" / "TDV_2008_kBtu_CTZ06.csv"], ) return idf @@ -130,23 +124,10 @@ def schedules_idf(): idf = schedules_idf() schedules_dict = idf._get_all_schedules(yearly_only=True) schedules = list(schedules_dict.values()) -ids = [i.replace(" ", "_") for i in schedules_dict.keys()] - - -@pytest.fixture(scope="module") -def csv_out(config): - idf = schedules_idf().simulate() - csv, *_ = idf.simulation_dir.files("*out.csv") - yield csv - +ids = [key.replace(" ", "_") for key in schedules_dict.keys()] schedules = [ - pytest.param( - schedule, - marks=pytest.mark.xfail( - reason="Can't quite capture all possibilities with special days" - ), - ) + pytest.param(schedule, marks=pytest.mark.xfail(reason="Can't quite capture all possibilities with special days")) if schedule == "POFF" else pytest.param(schedule, marks=pytest.mark.xfail(raises=NotImplementedError)) if schedule == "Cooling Setpoint Schedule" @@ -155,6 +136,13 @@ def csv_out(config): ] +@pytest.fixture(scope="module") +def csv_out(config): + idf = schedules_idf().simulate() + csv, *_ = idf.simulation_dir.files("*out.csv") + yield csv + + @pytest.fixture(params=schedules, ids=ids, scope="module") def schedule_parametrized(request, csv_out): """Create the test_data""" @@ -173,9 +161,9 @@ def schedule_parametrized(request, csv_out): epv = epv.loc[:, ep_bunch.Name.upper() + ":Schedule Value [](Hourly)"].values expected = pd.Series(epv, index=index) - print("Year: {}".format(new_eps[0].Name)) - print("Weeks: {}".format([obj.Name for obj in new_eps[1]])) - print("Days: {}".format([obj.Name for obj in new_eps[2]])) + print(f"Year: {new_eps[0].Name}") + print(f"Weeks: {[obj.Name for obj in new_eps[1]]}") + print(f"Days: {[obj.Name for obj in new_eps[2]]}") yield origin, new, expected diff --git a/tests/test_simple_glazing.py b/tests/test_simple_glazing.py index 53860b377..b9f67d55e 100644 --- a/tests/test_simple_glazing.py +++ b/tests/test_simple_glazing.py @@ -32,8 +32,8 @@ def test_glazing_unequal(another): def test_simple_glazing_system_equal(): - dict = calc_simple_glazing(0.6, 2.2, 0.21) - assert dict["Conductivity"] == 0.11992503503877955 + d = calc_simple_glazing(0.6, 2.2, 0.21) + assert d["Conductivity"] == 0.11992503503877955 def test_simple_glazing_value_error(): diff --git a/tests/test_template.py b/tests/test_template.py index 4a84e77d9..1042854b8 100644 --- a/tests/test_template.py +++ b/tests/test_template.py @@ -1,15 +1,22 @@ import itertools from copy import copy +from pathlib import Path import numpy as np import pytest from eppy.bunch_subclass import EpBunch -from archetypal import IDF, settings -from archetypal.eplus_interface import EnergyPlusVersion +from archetypal import IDF from archetypal.simple_glazing import calc_simple_glazing from archetypal.template.building_template import BuildingTemplate -from archetypal.template.conditioning import ZoneConditioning, EconomizerTypes +from archetypal.template.conditioning import EconomizerTypes, ZoneConditioning +from archetypal.template.constructions.base_construction import ( + ConstructionBase, + LayeredConstruction, +) +from archetypal.template.constructions.internal_mass import InternalMass +from archetypal.template.constructions.opaque_construction import OpaqueConstruction +from archetypal.template.constructions.window_construction import WindowConstruction from archetypal.template.dhw import DomesticHotWaterSetting from archetypal.template.load import DimmingTypes, ZoneLoad from archetypal.template.materials.gas_layer import GasLayer @@ -18,11 +25,6 @@ from archetypal.template.materials.material_layer import MaterialLayer from archetypal.template.materials.nomass_material import NoMassMaterial from archetypal.template.materials.opaque_material import OpaqueMaterial -from archetypal.template.constructions.opaque_construction import OpaqueConstruction -from archetypal.template.constructions.base_construction import ( - ConstructionBase, - LayeredConstruction, -) from archetypal.template.schedule import ( DaySchedule, UmiSchedule, @@ -33,13 +35,13 @@ from archetypal.template.structure import MassRatio, StructureInformation from archetypal.template.umi_base import UniqueName from archetypal.template.ventilation import VentilationSetting -from archetypal.template.constructions.window_construction import WindowConstruction from archetypal.template.window_setting import WindowSetting from archetypal.template.zone_construction_set import ZoneConstructionSet from archetypal.template.zonedefinition import ZoneDefinition -from archetypal.template.constructions.internal_mass import InternalMass from archetypal.utils import reduce +from .conftest import data_dir + @pytest.fixture(scope="class") def small_idf(small_idf_obj): @@ -56,8 +58,8 @@ def small_idf_copy(config): Args: config: """ - file = "tests/input_data/umi_samples/B_Off_0.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Off_0.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) yield idf @@ -65,8 +67,8 @@ def small_idf_copy(config): @pytest.fixture(scope="class") def small_idf_obj(config): """An IDF model. Yields just the idf object.""" - file = "tests/input_data/umi_samples/B_Off_0.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Off_0.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) yield idf @@ -78,8 +80,8 @@ def other_idf(config): Args: config: """ - file = "tests/input_data/umi_samples/B_Res_0_Masonry.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Res_0_Masonry.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) yield idf @@ -91,8 +93,8 @@ def other_idf_object(config): Args: config: """ - file = "tests/input_data/umi_samples/B_Res_0_Masonry.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Res_0_Masonry.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) if idf.sim_info is None: idf.simulate() @@ -106,8 +108,8 @@ def other_idf_object_copy(config): Args: config: """ - file = "tests/input_data/umi_samples/B_Res_0_Masonry.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Res_0_Masonry.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) if idf.sim_info is None: idf.simulate() @@ -116,11 +118,8 @@ def other_idf_object_copy(config): @pytest.fixture(scope="module") def small_office(config): - file = ( - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" - ) - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) yield idf @@ -132,7 +131,7 @@ def idf(): @pytest.fixture(scope="class", params=["RefBldgWarehouseNew2004_Chicago.idf"]) def warehouse(config, request): - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF.from_example_files(request.param, epw=w, annual=True) if idf.sim_info is None: idf.simulate() @@ -194,11 +193,7 @@ def test_init_construction_base(self): construction_base_dup = construction_base.duplicate() assert construction_base == construction_base_dup - assert ( - construction_base.AssemblyCarbon - == construction_base_dup.AssemblyCarbon - == 0 - ) + assert construction_base.AssemblyCarbon == construction_base_dup.AssemblyCarbon == 0 assert construction_base.id != construction_base_dup.id @@ -214,9 +209,7 @@ def test_init_layerd_construction(self, mat_a): layers = [MaterialLayer(mat_a, 0.1), MaterialLayer(mat_a, 0.1)] - layered_construction = LayeredConstruction( - Layers=layers, Name="layered_construction" - ) + layered_construction = LayeredConstruction(Layers=layers, Name="layered_construction") layered_construction_dup = layered_construction.duplicate() @@ -312,7 +305,7 @@ def test_daySchedule_from_to_dict(self): @pytest.fixture(scope="class") def schedules_idf(self): - yield IDF("tests/input_data/schedules/schedules.idf") + yield IDF(data_dir / "schedules/schedules.idf") @pytest.fixture() def schedule_day_interval(self, schedules_idf): @@ -327,9 +320,7 @@ def schedule_day_list(self, schedules_idf): yield schedules_idf.idfobjects["SCHEDULE:DAY:LIST"] @pytest.fixture() - def all_schedule_days( - self, schedule_day_interval, schedule_day_hourly, schedule_day_list - ): + def all_schedule_days(self, schedule_day_interval, schedule_day_hourly, schedule_day_list): yield itertools.chain(schedule_day_list, schedule_day_hourly, schedule_day_list) def test_from_epbunch(self, all_schedule_days): @@ -356,16 +347,12 @@ def schedule_week_compact(self, schedules_idf): @pytest.fixture() def sch_d_on(self): """Creates 2 DaySchedules: 1 always ON.""" - yield DaySchedule.from_values( - Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day" - ) + yield DaySchedule.from_values(Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day") @pytest.fixture() def sch_d_off(self): """Creates DaySchedules: 1 always OFF.""" - yield DaySchedule.from_values( - Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day" - ) + yield DaySchedule.from_values(Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day") def test_init(self, sch_d_on, sch_d_off): """Creates WeekSchedule from DaySchedule.""" @@ -382,7 +369,7 @@ def test_init(self, sch_d_on, sch_d_off): @pytest.fixture(scope="class") def schedules_idf(self): - yield IDF("tests/input_data/schedules/schedules.idf") + yield IDF(data_dir / "schedules/schedules.idf") def test_from_epbunch_daily(self, schedule_week_daily): for epbunch in schedule_week_daily: @@ -412,9 +399,7 @@ def test_from_dict(self, sch_d_on, sch_d_off): "Name": "OnOff_2", } # Creates WeekSchedule from dict (from json) - a = WeekSchedule.from_dict( - dict_w_on, day_schedules={a.id: a for a in days}, allow_duplicates=True - ) + a = WeekSchedule.from_dict(dict_w_on, day_schedules={a.id: a for a in days}, allow_duplicates=True) b = a.duplicate() # Makes sure WeekSchedules created with 2 methods have the same values # And different ids @@ -435,9 +420,7 @@ def test_from_to_dict(self, sch_d_on, sch_d_off): week_schedule_dict = a.to_dict() - b = WeekSchedule.from_dict( - week_schedule_dict, day_schedules={a.id: a for a in days} - ) + b = WeekSchedule.from_dict(week_schedule_dict, day_schedules={a.id: a for a in days}) assert a == b assert a is not b @@ -448,12 +431,8 @@ class TestYearSchedule: def test_yearSchedule(self): """Creates YearSchedule from a dictionary.""" # Creates 2 DaySchedules : 1 always ON and 1 always OFF - sch_d_on = DaySchedule.from_values( - Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day" - ) - sch_d_off = DaySchedule.from_values( - Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day" - ) + sch_d_on = DaySchedule.from_values(Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day") + sch_d_off = DaySchedule.from_values(Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day") # List of 7 dict with id of DaySchedule, representing the 7 days of the week days = [sch_d_on, sch_d_off, sch_d_on, sch_d_off, sch_d_on, sch_d_off, sch_d_on] @@ -493,12 +472,8 @@ def test_yearSchedule(self): def test_year_schedule_from_to_dict(self): """Make dict with `to_dict` and load again with `from_dict`.""" - sch_d_on = DaySchedule.from_values( - Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day" - ) - sch_d_off = DaySchedule.from_values( - Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day" - ) + sch_d_on = DaySchedule.from_values(Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day") + sch_d_off = DaySchedule.from_values(Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day") # List of 7 dict with id of DaySchedule, representing the 7 days of the week days = [sch_d_on, sch_d_off, sch_d_on, sch_d_off, sch_d_on, sch_d_off, sch_d_on] @@ -516,9 +491,7 @@ def test_year_schedule_from_to_dict(self): sch_dict = sch_year.to_dict() - sch_year_dup = YearSchedule.from_dict( - sch_dict, week_schedules={a.id: a for a in [sch_w_on_off]} - ) + sch_year_dup = YearSchedule.from_dict(sch_dict, week_schedules={a.id: a for a in [sch_w_on_off]}) assert sch_year == sch_year_dup @@ -544,8 +517,8 @@ def mat_b(self): @pytest.fixture() def idf(self): - file = "tests/input_data/umi_samples/B_Off_0.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/B_Off_0.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" yield IDF(file, epw=w) def test_add_materials(self, mat_a, mat_b): @@ -676,20 +649,15 @@ def test_material_new(self): assert gypsum.SolarAbsorptance == gypsum_duplicate.SolarAbsorptance == 0.7 assert gypsum.ThermalEmittance == gypsum_duplicate.ThermalEmittance == 0.9 assert gypsum.VisibleAbsorptance == gypsum_duplicate.VisibleAbsorptance == 0.5 - assert ( - gypsum.MoistureDiffusionResistance - == gypsum_duplicate.MoistureDiffusionResistance - == 8.3 - ) + assert gypsum.MoistureDiffusionResistance == gypsum_duplicate.MoistureDiffusionResistance == 8.3 @pytest.fixture() def materials_idf(self): """An IDF object with different material definitions.""" - file = "tests/input_data/materials.idf" + file = data_dir / "materials.idf" yield IDF(file, prep_outputs=False) def test_from_epbunch(self, materials_idf): - for epbunch in itertools.chain( materials_idf.idfobjects["MATERIAL"], materials_idf.idfobjects["MATERIAL:NOMASS"], @@ -703,7 +671,7 @@ def test_opaque_material_missing_default(self): """Assert creating objects from missing values still works""" OpaqueMaterial.from_dict( { - '$id': "0", + "$id": "0", "key": "Material", "Name": "G01 16mm gypsum board", "Roughness": "MediumSmooth", @@ -713,7 +681,7 @@ def test_opaque_material_missing_default(self): "SpecificHeat": 1090.0, "ThermalEmittance": "", # here is the missing value "SolarAbsorptance": "", # here is the missing value - "VisibleAbsorptance": "" # here is the missing value + "VisibleAbsorptance": "", # here is the missing value } ) @@ -734,7 +702,6 @@ def test_init_nomass_material(self): assert no_mass == no_mass_dup def test_from_dict_to_dict(self): - data = { "$id": "140532076832464", "Name": "R13LAYER", @@ -914,13 +881,10 @@ def test_hash_eq_gas_mat(self): from archetypal.template.materials.gas_material import GasMaterial - filename = "tests/input_data/umi_samples/BostonTemplateLibrary_2.json" - with open(filename, "r") as f: + filename = data_dir / "umi_samples/BostonTemplateLibrary_2.json" + with open(filename) as f: datastore = json.load(f) - gasMat_json = [ - GasMaterial.from_dict(store, allow_duplicates=True) - for store in datastore["GasMaterials"] - ] + gasMat_json = [GasMaterial.from_dict(store, allow_duplicates=True) for store in datastore["GasMaterials"]] gm = gasMat_json[0] gm_2 = gm.duplicate() @@ -963,17 +927,13 @@ class TestOpaqueConstruction: @pytest.fixture() def mat_a(self): """A :class:Material fixture.""" - mat_a = OpaqueMaterial( - Conductivity=1.4, SpecificHeat=840, Density=2240, Name="Concrete" - ) + mat_a = OpaqueMaterial(Conductivity=1.4, SpecificHeat=840, Density=2240, Name="Concrete") yield mat_a @pytest.fixture() def mat_b(self): """A :class:Material fixture.""" - mat_b = OpaqueMaterial( - Conductivity=0.12, SpecificHeat=1210, Density=540, Name="Plywood" - ) + mat_b = OpaqueMaterial(Conductivity=0.12, SpecificHeat=1210, Density=540, Name="Plywood") yield mat_b @@ -1025,9 +985,7 @@ def hollow_concrete_block(self): @pytest.fixture() def plaster(self): """A :class:Material fixture.""" - plaster = OpaqueMaterial( - Conductivity=1.39, Density=2000, SpecificHeat=1085, Name="Plaster" - ) + plaster = OpaqueMaterial(Conductivity=1.39, Density=2000, SpecificHeat=1085, Name="Plaster") yield plaster @pytest.fixture() @@ -1042,9 +1000,7 @@ def concrete_layer(self): yield concrete @pytest.fixture() - def facebrick_and_concrete( - self, face_brick, thermal_insulation, hollow_concrete_block, plaster - ): + def facebrick_and_concrete(self, face_brick, thermal_insulation, hollow_concrete_block, plaster): """A :class:Construction based on the `Facebrickโ€“concrete wall` from: On the thermal time constant of structural walls. Applied Thermal Engineering, 24(5โ€“6), 743โ€“757. @@ -1061,9 +1017,7 @@ def facebrick_and_concrete( yield oc_a @pytest.fixture() - def insulated_concrete_wall( - self, face_brick, thermal_insulation, concrete_layer, plaster - ): + def insulated_concrete_wall(self, face_brick, thermal_insulation, concrete_layer, plaster): """A :class:Construction based on the `Facebrickโ€“concrete wall` from: On the thermal time constant of structural walls. Applied Thermal Engineering, 24(5โ€“6), 743โ€“757. @@ -1125,9 +1079,7 @@ def test_thermal_properties(self, construction_a): def test_add_opaque_construction(self, construction_a, construction_b): """Test __add__() for OpaqueConstruction.""" - oc_c = OpaqueConstruction.combine( - construction_a, construction_b, method="constant_ufactor" - ) + oc_c = OpaqueConstruction.combine(construction_a, construction_b, method="constant_ufactor") assert oc_c desired = 3.237 assert oc_c.u_value == pytest.approx(desired, 1e-3) @@ -1201,9 +1153,7 @@ def test_hash_eq_opaq_constr(self, construction_a, construction_b): assert construction_a != construction_b assert hash(construction_a) != hash(construction_b) - def test_real_word_construction( - self, facebrick_and_concrete, insulated_concrete_wall - ): + def test_real_word_construction(self, facebrick_and_concrete, insulated_concrete_wall): """This test is based on wall constructions, materials and results from: Tsilingiris, P. T. (2004). On the thermal time constant of structural walls. Applied Thermal Engineering, 24(5โ€“6), 743โ€“757. @@ -1214,23 +1164,13 @@ def test_real_word_construction( insulated_concrete_wall: """ assert facebrick_and_concrete.u_factor == pytest.approx(0.6740, 0.01) - assert ( - facebrick_and_concrete.equivalent_heat_capacity_per_unit_volume - == pytest.approx(1595166.7, 0.01) - ) - assert facebrick_and_concrete.heat_capacity_per_unit_wall_area == pytest.approx( - 574260.0, 0.1 - ) + assert facebrick_and_concrete.equivalent_heat_capacity_per_unit_volume == pytest.approx(1595166.7, 0.01) + assert facebrick_and_concrete.heat_capacity_per_unit_wall_area == pytest.approx(574260.0, 0.1) assert insulated_concrete_wall.u_factor == pytest.approx(0.7710, 0.01) - assert ( - insulated_concrete_wall.equivalent_heat_capacity_per_unit_volume - == pytest.approx(1826285.7, 0.01) - ) + assert insulated_concrete_wall.equivalent_heat_capacity_per_unit_volume == pytest.approx(1826285.7, 0.01) - combined_mat = facebrick_and_concrete.combine( - insulated_concrete_wall, method="constant_ufactor" - ) + combined_mat = facebrick_and_concrete.combine(insulated_concrete_wall, method="constant_ufactor") facebrick_and_concrete.area = 2 combined_2xmat = facebrick_and_concrete + insulated_concrete_wall assert combined_mat.specific_heat > combined_2xmat.specific_heat @@ -1716,9 +1656,7 @@ def test_hash_eq_umi_sched(self, small_idf, other_idf): # 2 UmiSchedule from different small_idf should have the same hash, # not be the same object, yet be equal if they have the same values - sched_3 = UmiSchedule.from_epbunch( - ep_bunch, allow_duplicates=True, DataSource="Other Name" - ) + sched_3 = UmiSchedule.from_epbunch(ep_bunch, allow_duplicates=True, DataSource="Other Name") assert sched is not sched_3 assert sched == sched_3 assert hash(sched) != hash(sched_3) @@ -1729,15 +1667,9 @@ def test_combine(self): from archetypal.utils import reduce - sch1 = UmiSchedule( - Name="Equipment_10kw", Values=np.ones(24), quantity=10, Type="Fraction" - ) - sch2 = UmiSchedule( - Name="Equipment_20kw", Values=np.ones(24) / 2, quantity=20, Type="Fraction" - ) - sch3 = UmiSchedule( - Name="Equipment_30kw", Values=np.ones(24) / 3, quantity=30, Type="Fraction" - ) + sch1 = UmiSchedule(Name="Equipment_10kw", Values=np.ones(24), quantity=10, Type="Fraction") + sch2 = UmiSchedule(Name="Equipment_20kw", Values=np.ones(24) / 2, quantity=20, Type="Fraction") + sch3 = UmiSchedule(Name="Equipment_30kw", Values=np.ones(24) / 3, quantity=30, Type="Fraction") sch4 = reduce(UmiSchedule.combine, (sch1, sch2, sch3)) assert sch4 @@ -1747,15 +1679,11 @@ class TestZoneConstructionSet: @pytest.fixture() def core_set(self): - yield ZoneConstructionSet( - Name="Core Construction Set", Partition=OpaqueConstruction.generic() - ) + yield ZoneConstructionSet(Name="Core Construction Set", Partition=OpaqueConstruction.generic()) @pytest.fixture() def perim_set(self): - yield ZoneConstructionSet( - Name="Perimeter Construction Set", Partition=OpaqueConstruction.generic() - ) + yield ZoneConstructionSet(Name="Perimeter Construction Set", Partition=OpaqueConstruction.generic()) def test_add_zoneconstructionset(self, core_set, perim_set): """Test __add__() for ZoneConstructionSet.""" @@ -1778,9 +1706,7 @@ def test_zoneConstructionSet_init(self): construction_set_dup = construction_set.duplicate() assert construction_set == construction_set_dup - assert ( - construction_set.Name == construction_set_dup.Name == "A construction set" - ) + assert construction_set.Name == construction_set_dup.Name == "A construction set" def test_zone_construction_set_from_zone(self, warehouse): """Test from zone epbunch""" @@ -1809,9 +1735,7 @@ def test_zoneConstructionSet_from_to_dict(self): "Name": "B_Off_0 constructions", } - construction_set = ZoneConstructionSet.from_dict( - data, opaque_constructions={a.id: a for a in [construction]} - ) + construction_set = ZoneConstructionSet.from_dict(data, opaque_constructions={a.id: a for a in [construction]}) construction_set_data = construction_set.to_dict() construction_set_dup = ZoneConstructionSet.from_dict( @@ -1910,9 +1834,7 @@ def test_zoneLoad_from_to_dict(self): def zl(self): yield ZoneLoad( EquipmentPowerDensity=10, - EquipmentAvailabilitySchedule=UmiSchedule.random( - Name="Random Equipment " "Schedule" - ), + EquipmentAvailabilitySchedule=UmiSchedule.random(Name="Random Equipment Schedule"), LightsAvailabilitySchedule=UmiSchedule.constant_schedule(Name="AlwaysOn"), OccupancySchedule=UmiSchedule.constant_schedule(Name="AlwaysOn"), area=50, @@ -1986,13 +1908,9 @@ class TestZoneConditioning: ], ) def zoneConditioningtests(self, config, request): - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" - idf = IDF.from_example_files( - request.param, epw=w, annual=False, design_day=True - ) - copy = IDF.from_example_files( - request.param, epw=w, annual=False, design_day=True - ) + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + idf = IDF.from_example_files(request.param, epw=w, annual=False, design_day=True) + copy = IDF.from_example_files(request.param, epw=w, annual=False, design_day=True) if idf.sim_info is None: idf.simulate() if copy.sim_info is None: @@ -2008,11 +1926,7 @@ def test_zone_conditioning_init(self): cond = ZoneConditioning(Name="A Name") cond_dup = cond.duplicate() - assert ( - cond.EconomizerType - == cond_dup.EconomizerType - == EconomizerTypes.NoEconomizer - ) + assert cond.EconomizerType == cond_dup.EconomizerType == EconomizerTypes.NoEconomizer def test_from_zone(self, config, zoneConditioningtests): """""" @@ -2066,15 +1980,11 @@ def test_from_to_dict(self): "Name": "B_Off_0 Conditioning", } - cond = ZoneConditioning.from_dict( - copy(data), schedules={a.id: a for a in [schedule]} - ) + cond = ZoneConditioning.from_dict(copy(data), schedules={a.id: a for a in [schedule]}) cond_dict = cond.to_dict() - cond_dup = ZoneConditioning.from_dict( - cond_dict, schedules={a.id: a for a in [schedule]} - ) + cond_dup = ZoneConditioning.from_dict(cond_dict, schedules={a.id: a for a in [schedule]}) assert cond == cond_dup assert cond is not cond_dup @@ -2208,14 +2118,10 @@ def test_ventilationSetting_from_to_dict(self): "DataSource": "MIT_SDL", "Name": "Ventilation 1", } - vent = VentilationSetting.from_dict( - data, schedules={a.id: a for a in [schedule]} - ) + vent = VentilationSetting.from_dict(data, schedules={a.id: a for a in [schedule]}) vent_dict = vent.to_dict() - vent_dup = VentilationSetting.from_dict( - vent_dict, schedules={a.id: a for a in [schedule]} - ) + vent_dup = VentilationSetting.from_dict(vent_dict, schedules={a.id: a for a in [schedule]}) assert vent == vent_dup assert vent is not vent_dup @@ -2303,18 +2209,12 @@ def test_combine(self): assert vent_3.volume == vent_1.volume + vent_2.volume assert vent_3.Infiltration == pytest.approx((0.1 + 0.2) / 2) annual_air_volume = ( - vent_1.ScheduledVentilationSchedule.all_values - * vent_1.ScheduledVentilationAch - * vent_1.volume + vent_1.ScheduledVentilationSchedule.all_values * vent_1.ScheduledVentilationAch * vent_1.volume ).sum() + ( - vent_2.ScheduledVentilationSchedule.all_values - * vent_2.ScheduledVentilationAch - * vent_2.volume + vent_2.ScheduledVentilationSchedule.all_values * vent_2.ScheduledVentilationAch * vent_2.volume ).sum() combined_annual_air_volume = ( - vent_3.ScheduledVentilationSchedule.all_values - * vent_3.ScheduledVentilationAch - * vent_3.volume + vent_3.ScheduledVentilationSchedule.all_values * vent_3.ScheduledVentilationAch * vent_3.volume ).sum() assert combined_annual_air_volume == pytest.approx(annual_air_volume) @@ -2351,17 +2251,10 @@ def test_combine_with_none(self): (vent_1.ScheduledVentilationAch + vent_2.ScheduledVentilationAch) / 2 ) annual_air_volume = ( - 0 - + ( - vent_2.ScheduledVentilationSchedule.all_values - * vent_2.ScheduledVentilationAch - * vent_2.volume - ).sum() + 0 + (vent_2.ScheduledVentilationSchedule.all_values * vent_2.ScheduledVentilationAch * vent_2.volume).sum() ) combined_annual_air_volume = ( - vent_3.ScheduledVentilationSchedule.all_values - * vent_3.ScheduledVentilationAch - * vent_3.volume + vent_3.ScheduledVentilationSchedule.all_values * vent_3.ScheduledVentilationAch * vent_3.volume ).sum() assert combined_annual_air_volume == annual_air_volume @@ -2390,9 +2283,7 @@ def test_to_from_dict(self): "DataSource": "MIT_SDL", "Name": "B_Off_0 hot water", } - dhw = DomesticHotWaterSetting.from_dict( - dhw_dict, schedules={a.id: a for a in schedules} - ) + dhw = DomesticHotWaterSetting.from_dict(dhw_dict, schedules={a.id: a for a in schedules}) dhw_dup = dhw.duplicate() assert dhw == dhw_dup @@ -2456,16 +2347,12 @@ def test_combine(self): # assert final annual quantity is kept. multiply schedule by flowrate per # area and area. - total_water_zone_1 = sum( - zone_1.WaterSchedule.all_values * zone_1.FlowRatePerFloorArea * zone_1.area - ) - total_water_zone_2 = sum( - zone_2.WaterSchedule.all_values * zone_2.FlowRatePerFloorArea * zone_2.area - ) + total_water_zone_1 = sum(zone_1.WaterSchedule.all_values * zone_1.FlowRatePerFloorArea * zone_1.area) + total_water_zone_2 = sum(zone_2.WaterSchedule.all_values * zone_2.FlowRatePerFloorArea * zone_2.area) total_water = total_water_zone_1 + total_water_zone_2 - assert sum( - combined.WaterSchedule.all_values * combined.FlowRatePerFloorArea * 100 - ) == pytest.approx(total_water) + assert sum(combined.WaterSchedule.all_values * combined.FlowRatePerFloorArea * 100) == pytest.approx( + total_water + ) def test_hash_eq_dhw(self): """Test equality and hashing of :class:`DomesticHotWaterSetting`.""" @@ -2514,16 +2401,14 @@ def test_hash_eq_dhw(self): class TestWindowSetting: """Combines different :class:`WindowSetting` tests.""" - @pytest.fixture( - scope="class", params=["WindowTests.idf", "AirflowNetwork3zVent.idf"] - ) + @pytest.fixture(scope="class", params=["WindowTests.idf", "AirflowNetwork3zVent.idf"]) def windowtests(self, config, request): """ Args: config: request: """ - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF.from_example_files(request.param, epw=w, design_day=True) if idf.sim_info is None: idf.simulate() @@ -2560,9 +2445,7 @@ def test_init(self): def test_windowsettings_from_to_dict(self): """Make dict with `to_dict` and load again with `from_dict`.""" - window_cstrc = WindowConstruction.from_shgc( - "Window Construction", 0.5, 2.2, 0.21, id="57" - ) + window_cstrc = WindowConstruction.from_shgc("Window Construction", 0.5, 2.2, 0.21, id="57") constructions = [window_cstrc] schedules = [UmiSchedule.constant_schedule(id="1")] data = { @@ -2726,10 +2609,7 @@ def test_init_class(self): ) internal_mass_dup = internal_mass.duplicate() assert internal_mass == internal_mass_dup - assert ( - internal_mass.total_area_exposed_to_zone - == internal_mass_dup.total_area_exposed_to_zone - ) + assert internal_mass.total_area_exposed_to_zone == internal_mass_dup.total_area_exposed_to_zone def test_from_zone(self, small_idf_obj): """Test constructor from Zone EpBunch object.""" @@ -2818,8 +2698,7 @@ def test_from_to_dict(self): def test_zone_volume(self, small_idf_copy): """Test the zone volume for a sloped roof.""" - idf = small_idf_copy.simulate() - zone = idf.getobject("ZONE", "Perim") + zone = small_idf_copy.simulate().getobject("ZONE", "Perim") z = ZoneDefinition.from_epbunch(ep_bunch=zone, construct_parents=False) assert z.volume == pytest.approx(25.54, 1e-2) @@ -2916,7 +2795,7 @@ def test_hash_eq_zone(self): def bt(config): """A building template fixture used in subsequent tests""" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF.from_example_files("5ZoneCostEst.idf", epw=w, annual=True) if idf.sim_info is None: idf.simulate() @@ -2941,16 +2820,12 @@ def building_template(self, zone_definition, structure_information, window_setti @pytest.fixture() def window_setting(self, window_construction): - window_setting = WindowSetting( - "Window Setting", Construction=window_construction, id="181" - ) + window_setting = WindowSetting("Window Setting", Construction=window_construction, id="181") return window_setting @pytest.fixture() def window_construction(self): - window_cstrc = WindowConstruction.from_shgc( - "Window Construction", 0.5, 2.2, 0.21, id="57" - ) + window_cstrc = WindowConstruction.from_shgc("Window Construction", 0.5, 2.2, 0.21, id="57") return window_cstrc @pytest.fixture() @@ -3075,14 +2950,13 @@ def test_hash_eq_bt(self, building_template): assert bt != bt_2 def test_reduce(self, zone_definition): - - bt = BuildingTemplate.reduced_model( + BuildingTemplate.reduced_model( "A Building Template", [zone_definition], ) -class TestUniqueName(object): +class TestUniqueName: def test_uniquename(self): name1 = UniqueName("myname") name2 = UniqueName("myname") diff --git a/tests/test_umi.py b/tests/test_umi.py index 64bdf1f12..d95a319f9 100644 --- a/tests/test_umi.py +++ b/tests/test_umi.py @@ -26,6 +26,8 @@ from archetypal.template.zonedefinition import ZoneDefinition from archetypal.umi_template import UmiTemplateLibrary, no_duplicates +from .conftest import data_dir + class TestUmiTemplate: """Test suite for the UmiTemplateLibrary class""" @@ -33,7 +35,7 @@ class TestUmiTemplate: @pytest.fixture(scope="function") def two_identical_libraries(self): """Yield two identical libraries. Scope of this fixture is `function`.""" - file = "tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json" + file = data_dir / "umi_samples/BostonTemplateLibrary_nodup.json" yield UmiTemplateLibrary.open(file), UmiTemplateLibrary.open(file) def test_add(self, two_identical_libraries): @@ -74,7 +76,7 @@ def test_unique_components(self, two_identical_libraries): def test_graph(self): """Test initialization of networkx DiGraph""" - file = "tests/input_data/umi_samples/BostonTemplateLibrary_2.json" + file = data_dir / "umi_samples/BostonTemplateLibrary_2.json" a = UmiTemplateLibrary.open(file) G = a.to_graph() @@ -88,7 +90,7 @@ def test_template_to_template(self): """load the json into UmiTemplateLibrary object, then convert back to json and compare""" - file = "tests/input_data/umi_samples/BostonTemplateLibrary_nodup.json" + file = data_dir / "umi_samples/BostonTemplateLibrary_nodup.json" a = UmiTemplateLibrary.open(file).to_dict() b = TestUmiTemplate.read_json(file) @@ -101,14 +103,10 @@ def test_template_to_template(self): def test_umitemplate(self, config): """Test creating UmiTemplateLibrary from 2 IDF files""" idf_source = [ - EnergyPlusVersion.current().current_install_dir - / "ExampleFiles" - / "VentilationSimpleTest.idf", + EnergyPlusVersion.current().current_install_dir / "ExampleFiles" / "VentilationSimpleTest.idf", ] - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" - a = UmiTemplateLibrary.from_idf_files( - idf_source, wf, name="Mixed_Files", processors=-1, debug=True - ) + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + a = UmiTemplateLibrary.from_idf_files(idf_source, wf, name="Mixed_Files", processors=-1, debug=True) data_dict = a.to_dict() assert no_duplicates(data_dict) @@ -119,12 +117,12 @@ def test_umitemplate(self, config): ) def test_umi_samples(self, config): idf_source = [ - "tests/input_data/umi_samples/B_Off_0.idf", - "tests/input_data/umi_samples/B_Ret_0.idf", - "tests/input_data/umi_samples/B_Res_0_Masonry.idf", - "tests/input_data/umi_samples/B_Res_0_WoodFrame.idf", + data_dir / "umi_samples/B_Off_0.idf", + data_dir / "umi_samples/B_Ret_0.idf", + data_dir / "umi_samples/B_Res_0_Masonry.idf", + data_dir / "umi_samples/B_Res_0_WoodFrame.idf", ] - wf = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + wf = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" a = UmiTemplateLibrary.from_idf_files(idf_source, wf, name="Mixed_Files") a.to_dict() data_dict = a.to_dict() @@ -132,7 +130,7 @@ def test_umi_samples(self, config): @staticmethod def read_json(file): - with open(file, "r") as f: + with open(file) as f: a = json.load(f, object_pairs_hook=collections.OrderedDict) data_dict = collections.OrderedDict( { @@ -158,9 +156,7 @@ def read_json(file): data_dict.update(a) for key in data_dict: # Sort the list elements by $id - data_dict[key] = sorted( - data_dict[key], key=lambda x: int(x.get("$id", 0)) - ) + data_dict[key] = sorted(data_dict[key], key=lambda x: int(x.get("$id", 0))) return data_dict @pytest.fixture() @@ -235,15 +231,6 @@ def manual_umitemplate_library(self, config): # Gas MaterialLayers airLayer = GasLayer(air, Thickness=0.04) - - MaterialLayers = [ - concreteLayer, - insulationLayer, - brickLayer, - plywoodLayer, - glassLayer, - airLayer, - ] # endregion # region Defines constructions @@ -268,16 +255,12 @@ def manual_umitemplate_library(self, config): OpaqueConstructions = [wall_int, wall_ext, floor, roof] # Window construction - window = WindowConstruction( - Layers=[glassLayer, airLayer, glassLayer], Name="Window" - ) + window = WindowConstruction(Layers=[glassLayer, airLayer, glassLayer], Name="Window") WindowConstructions = [window] # Structure definition mass_ratio = MassRatio(Material=plywood, NormalRatio=1, HighLoadRatio=1) - struct_definition = StructureInformation( - MassRatios=[mass_ratio], Name="Structure" - ) + struct_definition = StructureInformation(MassRatios=[mass_ratio], Name="Structure") StructureDefinitions = [struct_definition] # endregion @@ -285,17 +268,11 @@ def manual_umitemplate_library(self, config): # Day schedules # Always on - sch_d_on = DaySchedule.from_values( - Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day" - ) + sch_d_on = DaySchedule.from_values(Name="AlwaysOn", Values=[1] * 24, Type="Fraction", Category="Day") # Always off - sch_d_off = DaySchedule.from_values( - Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day" - ) + sch_d_off = DaySchedule.from_values(Name="AlwaysOff", Values=[0] * 24, Type="Fraction", Category="Day") # DHW - sch_d_dhw = DaySchedule.from_values( - Name="DHW", Values=[0.3] * 24, Type="Fraction", Category="Day" - ) + sch_d_dhw = DaySchedule.from_values(Name="DHW", Values=[0.3] * 24, Type="Fraction", Category="Day") # Internal gains sch_d_gains = DaySchedule.from_values( Name="Gains", @@ -428,9 +405,7 @@ def manual_umitemplate_library(self, config): "Type": "Fraction", "Name": "Gains", } - sch_y_gains = YearSchedule.from_dict( - dict_gains, {a.id: a for a in WeekSchedules} - ) + sch_y_gains = YearSchedule.from_dict(dict_gains, {a.id: a for a in WeekSchedules}) YearSchedules = [sch_y_on, sch_y_off, sch_y_dhw, sch_y_gains] # endregion @@ -596,9 +571,7 @@ def test_manual_template_library(self, manual_umitemplate_library): assert no_duplicates(manual_umitemplate_library, attribute="$id") def test_climatestudio(self, climatestudio): - template_json = UmiTemplateLibrary( - name="my_umi_template", BuildingTemplates=[climatestudio] - ).to_json() + template_json = UmiTemplateLibrary(name="my_umi_template", BuildingTemplates=[climatestudio]).to_json() print(template_json) @pytest.mark.skipif( @@ -608,15 +581,15 @@ def test_climatestudio(self, climatestudio): @pytest.mark.parametrize( "file", ( - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-MediumOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-LargeOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-MediumOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-LargeOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", ), ids=("small", "medium", "large"), ) def test_necb_serial(self, file, config): settings.log_console = True - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" template = UmiTemplateLibrary.from_idf_files( name="my_umi_template", idf_files=[file], @@ -634,14 +607,11 @@ def test_necb_serial(self, file, config): def test_necb_parallel(self, config): settings.log_console = True office = [ - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-MediumOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-LargeOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-MediumOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-LargeOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", ] - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" template = UmiTemplateLibrary.from_idf_files( name="my_umi_template", idf_files=office, @@ -654,24 +624,19 @@ def test_necb_parallel(self, config): assert no_duplicates(template.to_dict(), attribute="$id") office = [ - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-MediumOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", - "tests/input_data/necb/NECB 2011-LargeOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-MediumOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", + data_dir / "necb/NECB 2011-LargeOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf", ] @pytest.mark.skipif( os.environ.get("CI", "False").lower() == "true", reason="Skipping this test on CI environment", ) - @pytest.mark.parametrize( - "file", Path("tests/input_data/problematic").files("*CZ5A*.idf") - ) + @pytest.mark.parametrize("file", Path(data_dir / "problematic").files("*CZ5A*.idf")) def test_cz5a_serial(self, file, config): settings.log_console = True - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" template = UmiTemplateLibrary.from_idf_files( name=file.stem, idf_files=[file], @@ -687,8 +652,8 @@ def test_cz5a_serial(self, file, config): def climatestudio(config): """A building template fixture from a climate studio idf file used in subsequent tests""" - file = "tests/input_data/umi_samples/climatestudio_test.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "umi_samples/climatestudio_test.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w, annual=True) if idf.sim_info is None: idf.simulate() @@ -701,8 +666,8 @@ def climatestudio(config): def sf_cz5a(config): """A building template fixture from a climate studio idf file used in subsequent tests""" - file = "tests/input_data/problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012.idf" - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + file = data_dir / "problematic/SF+CZ5A+USA_IL_Chicago-OHare.Intl.AP.725300+oilfurnace+slab+IECC_2012.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w, annual=True) bt = BuildingTemplate.from_idf(idf) diff --git a/tests/test_version.py b/tests/test_version.py index 8df39ab5c..07a6f8836 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -18,11 +18,7 @@ def test_eplusversion_version_init(self): assert isinstance(eplus_version.valid_versions, set) # initialized 3 different ways, should return equivalent objects. - assert ( - EnergyPlusVersion("9.2.0") - == EnergyPlusVersion((9, 2, 0)) - == EnergyPlusVersion("9-2-0") - ) + assert EnergyPlusVersion("9.2.0") == EnergyPlusVersion((9, 2, 0)) == EnergyPlusVersion("9-2-0") copy_of_idd_version = eplus_version.duplicate() assert copy_of_idd_version == eplus_version @@ -40,10 +36,12 @@ def test_eplusversion_version_init(self): def test_eplusversion_err_init(self): """Test initialization of VersionIDd which produces an error.""" with pytest.raises(InvalidEnergyPlusVersion): - idd_version = EnergyPlusVersion("3.2.0") + EnergyPlusVersion("3.2.0") def test_idd_on_missing_install(self): idd_version = EnergyPlusVersion("9.2") idd_version._valid_paths = {} # fakes not finding any versions on machine. - assert idd_version.valid_versions == {"9-2-0",} + assert idd_version.valid_versions == { + "9-2-0", + } diff --git a/tests/test_zonegraph.py b/tests/test_zonegraph.py index b6ba89b96..407e8ffa8 100644 --- a/tests/test_zonegraph.py +++ b/tests/test_zonegraph.py @@ -3,17 +3,16 @@ from archetypal import IDF from archetypal.zone_graph import ZoneGraph +from .conftest import data_dir + class TestZoneGraph: """Series of tests for the :class:`ZoneGraph` class""" @pytest.fixture(scope="class") - def small_office(config): - file = ( - "tests/input_data/necb/NECB 2011-SmallOffice-NECB HDD " - "Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" - ) - w = "tests/input_data/CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" + def small_office(self, config): + file = data_dir / "necb/NECB 2011-SmallOffice-NECB HDD Method-CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw.idf" + w = data_dir / "CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw" idf = IDF(file, epw=w) yield idf @@ -41,7 +40,7 @@ def G(self, config, small_office): yield ZoneGraph.from_idf(idf) @pytest.mark.parametrize("adj_report", [True, False]) - def test_graph(self, small_office, adj_report): + def test_graph(self, config, small_office, adj_report): """Test the creation of a BuildingTemplate zone graph. Parametrize the creation of the adjacency report @@ -58,13 +57,11 @@ def test_graph(self, small_office, adj_report): from eppy.bunch_subclass import EpBunch assert isinstance( - G1.nodes["Sp-Attic Sys-0 Flr-2 Sch-- undefined - HPlcmt-core ZN"][ - "epbunch" - ], + G1.nodes["Sp-Attic Sys-0 Flr-2 Sch-- undefined - HPlcmt-core ZN"]["epbunch"], EpBunch, ) - def test_graph_info(self, G): + def test_graph_info(self, config, G): """test the info method on a ZoneGraph Args: @@ -72,7 +69,7 @@ def test_graph_info(self, G): """ G.info() - def test_viewgraph2d(self, G): + def test_viewgraph2d(self, config, G): """test the visualization of the zonegraph in 2d Args: @@ -95,7 +92,7 @@ def test_viewgraph2d(self, G): ) @pytest.mark.parametrize("annotate", [True, "Name", ("core", None)]) - def test_viewgraph3d(self, G, annotate): + def test_viewgraph3d(self, config, G, annotate): """test the visualization of the zonegraph in 3d Args: @@ -109,7 +106,7 @@ def test_viewgraph3d(self, G, annotate): show=False, ) - def test_core_graph(self, G): + def test_core_graph(self, config, G): """ Args: G: @@ -119,7 +116,7 @@ def test_core_graph(self, G): assert len(H) == 1 # assert G has no nodes since Warehouse does not have a # core zone - def test_perim_graph(self, G): + def test_perim_graph(self, config, G): """ Args: G: diff --git a/tox.ini b/tox.ini new file mode 100644 index 000000000..a03074fba --- /dev/null +++ b/tox.ini @@ -0,0 +1,23 @@ +[tox] +skipsdist = true +envlist = py39, py310, py311, py312 + +[gh-actions] +python = + 3.9: py39 + 3.10: py310 + 3.11: py311 + 3.12: py312 + +[testenv] +passenv = PYTHON_VERSION +allowlist_externals = poetry +setenv = + ARCHETYPAL_DATA = {envtmpdir}/cache + ARCHETYPAL_LOGS = {envtmpdir}/logs + ARCHETYPAL_IMAGES = {envtmpdir}/images + ARCHETYPAL_CACHE = {envtmpdir}/cache + MPLBACKEND = agg +commands = + poetry install -v + pytest {posargs}