diff --git a/design/FY2021/NFP-HVACTemplateAndExpandObjectsWithEpJSON.md b/design/FY2021/NFP-HVACTemplateAndExpandObjectsWithEpJSON.md new file mode 100644 index 00000000000..763a6f0f8db --- /dev/null +++ b/design/FY2021/NFP-HVACTemplateAndExpandObjectsWithEpJSON.md @@ -0,0 +1,216 @@ +Create HVACTemplate and ExpandObjects Support for epJSON files +================ + +**John Grando, GARD Analytics** + + - Original Date: February 11, 2021 + - Revision Date: + - February 23, 2021 + +## Justification for New Feature ## + +The addition of epJSON as an input file is impacting current workflows which rely on HVACTemplate objects. Similarly, HVACTemplate is useful for learning EnergyPlus, and provides an aid on projects focused on envelope or lighting measures, simplified interfaces, and scripted workflows. It is important that model files built in the epJSON format have the same functionality as their equivalents written in IDF format in order to support existing workflows as well as foster future adoption. The HVACTemplate and ExpandObjects features have proven to be valuable in the previous format, and new implementations of these tools should be developed. Additionally, the explanations provided for this feature are considered the basic operations of the program. Additional capabilities can be provided in future updates to this package. + +## E-mail and Conference Call Conclusions ## + +February 23, 2021: + - The ability to turn off schema validation is a contested feature. Some believe that users should not be passing epJSON incompatible files through the pipeline at all, while others argue that schema validation occurs anyways during pre-simulation and turning it off in pyExpandObjects could provide a performance boost for high performance computing instances. It was decided to leave this option but with the default set to validate schemas. + - There was unanimous support for changing the expanded file naming scheme from .expepJSON to _expanded.epJSON. + +## Overview ## + +In order to achieve greater alignment with other programming initiatives in EnergyPlus, take advantage of the epJSON schema structure, and make use of object-oriented programming methodologies, Python was chosen for this effort. This updated tool will provide the same deliverable as its predecessor, which is an output file with regular objects that have been mapped from template objects. However, the epJSON file format will be used for this program. + +## Approach ## + +The process for delivering this product will be different in order to better align with Python best practices and provide greater flexibility. First, validation methods will be incorporated to ensure valid files are read and created. An external package that performs json schema validation will be used to verify files throughout the process. Second, an HVACTemplate class will be created in Python which will keep data attributes and methods together in a central location as well as provide the option of using inheritance and mixins for sub-classes. This structure allows the program to be flexible when creating objects. Third, a process will be created which translates epJSON files with HVACTemplate objects to epJSON files with only regular objects. This step will make use of one-to-many mappings stored in Yaml files and built within the class structure. Finally, a rigorous set of tests will be created which verify the functionality and robustness of the program. With these proposed changes, the ExpandObjects tool will be able to operate in the EnergyPlus file pre-processing pipeline by reading and writing valid epJSON files. + +## Testing/Validation/Data Sources ## + +Python's built-in unittest package will be used in conjunction with external packages that monitor the areas of code which have tests verifying their functionality (coverage). Using these modules, multiple small tests (unit) will be created which verify output on the function level. Coverage reports will be auto-generated with each build and provide confirmation of the package status. In addition to unit testing, A subset of HVACTemplate-*.idf files will be created in epJSON format, expanded, simulated, and have outputs compared to their idf counterparts. + +## Auxiliary Programs Reference Documentation ## + +'Chapter 10 ExpandObjects' will be revised to have two main sections, ExpandObjects (10.1) and pyExpandObjects (10.2), The revised sections are as *follows*: + +**10.1 ExpandObjects** + +- 10.1.1 <- 10.1 +- 10.1.2 <- 10.2 +- 10.1.3 <- 10.3 +- 10.1.4 <- 10.4 + +**10.2 pyExpandObjects** + +***10.2.1 Introduction*** +*Much like the ExpandObjects program in Section 10.1, the pyExpandObjects expands HVACTemplate objects from an input epJSON file into an expanded file that can be directly run in EnergyPlus. However, pyExpandObjects does not process GroundHeatTransfer objects or provide support for the Slab or Basement executables. Additionally, pyExpandObjects is a standalone application which means that it must be run manually to create an expanded file. Details on how to run the program can be found in the Input Output Reference Manual (Chapter 2 - HVACTemplate Objects).* + +*The pyExpandObjects program works as a preprocessor that maps HVACTemplate objects to regular objects in EnergyPlus. This processor reads an epJSON file and generates and expanded epJSON file. No further pre-processing should be required after the conversion has been performed. Unlike ExpandObjects (10.1), a schema validation does occur when the file is read into the program, and error messages will be shown in the usual EnergyPlus error file. By default, an invalid epJSON file will stop the program, but this requirement can be removed via command line options. Please see the [documentation](https://epjson-expandobjects.readthedocs.io/en/latest/?badge=latest) or '--help' command line option for further details. Additionally, the default settings produce two backup files ("\_hvac_templates.epJSON", "\_base.epJSON") as well as an expanded file with an adjusted name ("\_expanded.epJSON"). If the '--no-backup' option is used in the command line, then only the expanded file will be output.* + +**10.2.2 HVAC Template Objects Processed** +All HVACTemplate objects supported by the ExpandObjects program are supported in pyExpandObjects. Please refer to section 10.1.2 for further details. + +**10.2.3 Ground Heat Transfer Processed** +GroundHeatTransfer objects are not supported by the pyExpandObjects preprocessor. + +**10.2.4 Building Surface Objects Processed** +No building surface objects are modified by the pyExpandObjects preprocessor. + +## Input Output Reference Documentation ## + +The current HVACTemplate Processing section (2.1) will be revised to directly address how epJSON files will be handled. The section will be rewritten as *follows*: + +***2.1 HVACTemplate Processing*** + +***2.1.1 IDF File Overview*** + +**Unlike other EnergyPlus objects, the HVACTemplate objects are not handled by EnergyPlus directly.** *Instead, they are preprocessed by a program called ExpandObjects. If you use EP-Launch or RunEPlus.bat, this preprocessor step is performed automatically using the following sequence:*: + +1. The preprocessor program, ExpandObjects, reads your IDF file and converts all of the HVACTemplate objects into other EnergyPlus objects. +2. The ExpandObjects program copies the original idf file with the HVACTemplate objects commented out (i.e., inserts a “!” in front of the object name and its input fields) plus all of the new objects created in Step 1 and writes a new file which is saved with the extension “expidf”. This “expidf” file may be used as a standard EnergyPlus IDF file if the extension is changed to idf; however, for safety’s sake, both filename and extension should be changed. +3. The EnergyPlus simulation proceeds using the expidf file as the input stream. +4. If there are error messages from EnergyPlus, they will refer to the contents of the expidf file. Specific objects referred to in error messages may exist in the original idf, but they may be objects created by ExpandObjects and only exist in the expidf. Remember that the expidf will be overwritten everytime the original idf is run using EP-Launch or RunEPlus.bat + +If you are trying to go beyond the capabilities of the HVACTemplate objects, one strategy you can use is to start your specification using the HVACTemplate objects, run EnergyPlus using EP-Launch and producing an expidf file, rename that file and start making modifications. This approach may help with getting all of the objects needed and the node names set consistently. + +***2.1.2 epJSON File Overview*** +**The HVACTemplate objects for this filetype are handled by a standalone application called pyExpandObjects.** *Preprocessing epJSON files must be done manually from the command line. This may be done by directly calling the program (src/main.py) from the application source directory (src/pyExpandObjects), or from a built executable (see the documentation README for more details: [https://github.com/john-grando/pyExpandObjects#build-instructions](https://github.com/john-grando/pyExpandObjects#build-instructions))* + +1. *The preprocessor program, pyExpandObjects, reads your epJSON file, verifies it meets the current schema requirements, and converts all the HVACTemplate objects into other EnergyPlus objects.* +2. *The pyExpandObjects program writes one to three new files. + a. *A renamed file with the naming format "\_expanded.epJSON". This “expanded” file may be used as a standard EnergyPlus epJSON file. Note, the HVACTemplate objects will be completely removed from the expanded file, so ensure to save a copy of the original file before deleting anything!* + b. *Optional - A file with the name "\_hvac_templates.epJSON" which has all the HVACTemplate objects from the input file.* + c. *Optional - A file with the name "\_base.epJSON" which has all the HVACTemplate objects removed.* +3. *The EnergyPlus simulation may now be run with the "expanded" file as the target.* +4. *If there are error messages from EnergyPlus, they will refer to the contents of the expanded file. Specific objects referred to in error messages may exist in the original epJSON, but they may be objects created by pyExpandObjects and only exist in the expanded file. Remember that the "\_expanded.epJSON", "\_hvac_templates.epJSON", and "\_base.epJSON" files will be overwritten everytime the original epJSON is run using EP-Launch or RunEPlus.bat. Also note, the "\_hvac_templates.epJSON" and "\_base.epJSON" files can be merged to recreate the original epJSON file.* + +*If you are trying to go beyond the capabilities of the HVACTemplate objects, one strategy you can use is to start your specification using the HVACTemplate objects, run pyExpandObjects manually to produce an epJSON file, rename that file, make modifications, and simulate the new file in EnergyPlus manually. This approach may help with getting all of the objects needed and the node names set consistently.* + +***2.1.3 General HVACTemplate Overview*** +**Users need to remember that no objects related to HVAC except for HVAC template objects are needed in the IDF */ epJSON* file**. The existence of other objects (unless specifically described in the following sections) may cause unexpected errors to occur. Sizing:Zone, Sizing:System, and Sizing:Plant objects will be generated by the corresponding HVACTemplate objects; the user does not need to create these elsewhere in the input file. There are some exceptions to this rule: +- HVACTemplate:Plant:Chiller:ObjectReference which requires that the corresponding chiller object be present in the idf */ epJSON* file along with any required curve or performance objects. In this case, the HVACTemplate object does not create the chiller object, but adds all of the connections. HVACTemplate:Plant:Tower:ObjectReference and HVACTemplate:Plant:Boiler;ObjectReferences are similar. +- For HVACTemplate:Zone:* objects, if Outdoor Air Method = DetailedSpecification, then any referenced DesignSpecification:OutdoorAir and DesignSpecification:ZoneAirDistribution objects must be +present in the idf */ epJSON* file. +- For HVACTemplate:Zone:VAV and HVACTemplate:Zone:DualDuct, if a Design Specification Outdoor Air Object Name for Control is specified, then the referenced DesignSpecification:OutdoorAir object must be present in the idf */ epJSON* file. + +***2.1.3 Command Line Interface*** + +***2.1.3.1 Simulation Tool*** + +*The command line interface located in the EnergyPlus root directory (energyplus.exe) provides optional arguments to enable various features of the simulation package.* + +``` +-a, --annual : Force annual simulation +-c, --convert : Output IDF->epJSON or epJSON->IDF, dependent on input file type +-d, --output-directory ARG : Output directory path (default: current directory) +-D, --design-day : Force design-day-only simulation +-h, --help : Display help information +-i, --idd ARG : Input data dictionary path (default: Energy+.idd in executable directory) +-j, --jobs ARG : Multi-thread with N threads; 1 thread with no arg. (Currently only for G-Function generation) +-m, --epmacro : Run EPMacro prior to simulation +-p, --output-prefix ARG : Prefix for output file names (default: eplus) +-r, --readvars : Run ReadVarsESO after simulation +-s, --output-suffix ARG : Suffix style for output file names (default: L) + L: Legacy (e.g., eplustbl.csv) + C: Capital (e.g., eplusTable.csv) + D: Dash (e.g., eplus-table.csv) +-v, --version : Display version information +-w, --weather ARG : Weather file path (default: in.epw in current directory) +--convert-only : Only convert IDF->epJSON or epJSON->IDF, dependent on input file type. No simulation +``` + +***IDF Options*** + +*In order to simulate an IDF file that contains HVACTemplate objects, the input must be run through ExpandObjects. By specifying this process to run, the simulation is run with a fully expanded file. Any errors that occur during simulation will refer to the \*.expidf file, not the original \*.idf file* + +``` +-x, --expandobjects : Run ExpandObjects prior to simulation +``` + +***epJSON Options*** + +*Expansion of HVACTemplate objects for epJSON filetypes is not integrated into the EnergyPlus command line interface at this time. Please see the next section on how to operate the pyExpandObjects expansion tool.* + +***2.1.3.2 HVACTemplate Expansion Tools*** + +***IDF - ExpandObjects*** + +*No command line options are available for this tool.* + +***epJSON - pyExpandObjects*** + +The following command line arguments may be provided to control the prorgram outputs. + +``` +-f, --file FILE\_NAME : Specify file to expand +``` + +This argument may be omitted. A value passed to the program with no argument will be assumed to be a file name. + +``` +-h, --help : Display help information +``` + +``` +-nb, --no\_backup : Do no create backup files +``` + +It is not possible to comment sections of code in JSON formatted files. Therefore, the output expanded files do not have the ability to retain the HVACTemplate objects used to create the current document. If the original file were to be overwritten, then all template data would be lost. In an attempt to provide and additional layer of backups, the -nb option is set to False by default which means two files will be created: one with HVACTemplate objects, and one with all other objects. With these files, the original input file can be created, or specific objects can be copied and pasted. + +``` +-ns, --no\_schema : Skip schema validation checks for pyExpandObjects. Note, this does not skip other schema validation operations within EnergyPlus itself. +``` + +One benefit of the JSON file format is that files can be validated before simulation. This means that erroneous inputs can be found before simulation, which saves time debugging output files and reading through logs, unsure of the error source. This includes syntax errors, values that are out of range, and missing required inputs. However, situations may occur when the user wishes to skip schema validation, in which case this flag should be used. By default, schema validation is enabled. + +``` +-o, --output\_directory : Specify output directory. If not provided, then input file directory is used. +``` + +``` +-l, --logger\_level LOGGER\_LEVEL: Set logging output level +``` + +Various levels of logging output are available for debugging, and other, purposes. A valid level, consistent with Python logging naming structure (i.e. DEBUG, INFO, WARNING, ERROR, CRITICAL), must be provided. + +``` +-v, --version : Display version information +``` + +``` +-wl, --write-logs : Write logs to file +``` + +When this expansion tool is run from its source directory, the output can be written to a file, which is located in the logs directory (logs/base.log). + +## Engineering Reference ## + +None + +## Example File and Transition Changes ## + +A subset of HVACTemplate-*.idf files in epJSON format will be created as examples. + +## References ## + +Related information is provided in GitHub: https://github.com/NREL/EnergyPlus/issues/6865 + +Current ExpandObjects code: https://github.com/NREL/EnergyPlus/blob/develop/src/ExpandObjects/epfilter.f90 + +## Design Document ## + +To implement the features described above, the following will be done: + +- Build epJSON input and output File handlers. +- Document existing HVACTemplate objects and how they are mapped to regular objects in the ExpandObjects process. +- Create HVACTemplate Class hierarchy of objects, using class inheritance and combining common methods wherever meaningful. +- Create yaml file containing default values and template object structures. +- Create a testing suite consisting of all HVACTemplate objects to verify outputs. +- Create ExpandObjects file conversion process. + - Outputs: + - "\_expanded.epJSON" - Expanded epJSON file + - "\_hvac_templates.epJSON" - File containing HVACTemplate objects (optional output) + - "\_base.epJSON" - Original file without HVACTemplate objects (optional output) +- Test and refactor code based on findings from above item. +- Create copies of selected HVACTemplate-*.idf files in JSON format and test results against the IDF counterparts. +- Consult with EnergyPlus team on implementation process for the new tool. diff --git a/doc/auxiliary-programs/CMakeLists.txt b/doc/auxiliary-programs/CMakeLists.txt index c0873c235a7..13f26d8fa13 100644 --- a/doc/auxiliary-programs/CMakeLists.txt +++ b/doc/auxiliary-programs/CMakeLists.txt @@ -61,11 +61,15 @@ set(INCLUDED_TEX ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/coeffconv-coeffcheck/coeffconv.tex ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/coeffconv-coeffcheck/coeffcheck.tex ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/coeffconv-coeffcheck/running-the-coeffconv-or-coeffcheck-programs.tex - ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/expandobjects.tex - ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/expandobjects/introduction-003.tex - ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/expandobjects/hvac-template-objects-processed.tex - ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/expandobjects/ground-heat-transfer-objects-processed.tex - ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/expandobjects/building-surface-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/introduction-003.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/hvac-template-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/ground-heat-transfer-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/building-surface-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-ground-heat-transfer-objects-processed.tex + ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-building-surface-objects-processed.tex ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/csvproc.tex ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/convertesomtr.tex ${PROJECT_SOURCE_DIR}/auxiliary-programs/src/calcsoilsurftemp-program.tex diff --git a/doc/auxiliary-programs/auxiliary-programs.tex b/doc/auxiliary-programs/auxiliary-programs.tex index 41b2ed5ad96..7923a2ff8f0 100644 --- a/doc/auxiliary-programs/auxiliary-programs.tex +++ b/doc/auxiliary-programs/auxiliary-programs.tex @@ -131,15 +131,23 @@ \input{src/coeffconv-coeffcheck/running-the-coeffconv-or-coeffcheck-programs} -\input{src/expandobjects} +\input{src/hvactemplateexpansion} -\input{src/expandobjects/introduction-003} +\input{src/hvactemplateexpansion/introduction-003} -\input{src/expandobjects/hvac-template-objects-processed} +\input{src/hvactemplateexpansion/hvac-template-objects-processed} -\input{src/expandobjects/ground-heat-transfer-objects-processed} +\input{src/hvactemplateexpansion/ground-heat-transfer-objects-processed} -\input{src/expandobjects/building-surface-objects-processed} +\input{src/hvactemplateexpansion/building-surface-objects-processed} + +\input{src/hvactemplateexpansion/pyexpandobjects-introduction} + +\input{src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed} + +\input{src/hvactemplateexpansion/pyexpandobjects-ground-heat-transfer-objects-processed} + +\input{src/hvactemplateexpansion/pyexpandobjects-building-surface-objects-processed} \input{src/csvproc} diff --git a/doc/auxiliary-programs/src/expandobjects.tex b/doc/auxiliary-programs/src/expandobjects.tex deleted file mode 100644 index c737c90ebad..00000000000 --- a/doc/auxiliary-programs/src/expandobjects.tex +++ /dev/null @@ -1 +0,0 @@ -\chapter{ExpandObjects}\label{expandobjects} diff --git a/doc/auxiliary-programs/src/hvactemplateexpansion.tex b/doc/auxiliary-programs/src/hvactemplateexpansion.tex new file mode 100644 index 00000000000..51a0d9c23b2 --- /dev/null +++ b/doc/auxiliary-programs/src/hvactemplateexpansion.tex @@ -0,0 +1 @@ +\chapter{HVACTemplate Expansion}\label{hvactemplateexpansion} diff --git a/doc/auxiliary-programs/src/expandobjects/building-surface-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/building-surface-objects-processed.tex similarity index 75% rename from doc/auxiliary-programs/src/expandobjects/building-surface-objects-processed.tex rename to doc/auxiliary-programs/src/hvactemplateexpansion/building-surface-objects-processed.tex index 4eb16a2afce..109770c152e 100644 --- a/doc/auxiliary-programs/src/expandobjects/building-surface-objects-processed.tex +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/building-surface-objects-processed.tex @@ -1,4 +1,4 @@ -\section{Building Surface Objects Processed}\label{building-surface-objects-processed} +\subsection{Building Surface Objects Processed}\label{building-surface-objects-processed} The building surface objects that are currently modified by the ExpandObjects preprocessor are: diff --git a/doc/auxiliary-programs/src/expandobjects/ground-heat-transfer-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/ground-heat-transfer-objects-processed.tex similarity index 92% rename from doc/auxiliary-programs/src/expandobjects/ground-heat-transfer-objects-processed.tex rename to doc/auxiliary-programs/src/hvactemplateexpansion/ground-heat-transfer-objects-processed.tex index 602a6d480e3..2d5fb15f410 100644 --- a/doc/auxiliary-programs/src/expandobjects/ground-heat-transfer-objects-processed.tex +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/ground-heat-transfer-objects-processed.tex @@ -1,4 +1,4 @@ -\section{Ground Heat Transfer Objects Processed}\label{ground-heat-transfer-objects-processed} +\subsection{Ground Heat Transfer Objects Processed}\label{ground-heat-transfer-objects-processed} The GroundHeatTransfer objects that are currently read by the ExpandObjects preprocessor are: diff --git a/doc/auxiliary-programs/src/expandobjects/hvac-template-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/hvac-template-objects-processed.tex similarity index 88% rename from doc/auxiliary-programs/src/expandobjects/hvac-template-objects-processed.tex rename to doc/auxiliary-programs/src/hvactemplateexpansion/hvac-template-objects-processed.tex index d7c90a0f0a0..07344776ae7 100644 --- a/doc/auxiliary-programs/src/expandobjects/hvac-template-objects-processed.tex +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/hvac-template-objects-processed.tex @@ -1,4 +1,4 @@ -\section{HVAC Template Objects Processed}\label{hvac-template-objects-processed} +\subsection{HVAC Template Objects Processed}\label{hvac-template-objects-processed} The HVACTemplate objects that are currently read by the ExpandObjects preprocessor are: @@ -31,6 +31,8 @@ \section{HVAC Template Objects Processed}\label{hvac-template-objects-processed} HVACTemplate:System:PackagedVAV \item HVACTemplate:System:DedicatedOutdoorAir +\item + HVACTemplate:System:ConstantVolume \item HVACTemplate:Plant:ChilledWaterLoop \item diff --git a/doc/auxiliary-programs/src/expandobjects/introduction-003.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/introduction-003.tex similarity index 95% rename from doc/auxiliary-programs/src/expandobjects/introduction-003.tex rename to doc/auxiliary-programs/src/hvactemplateexpansion/introduction-003.tex index dc6a95c32b7..ed0e13277d3 100644 --- a/doc/auxiliary-programs/src/expandobjects/introduction-003.tex +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/introduction-003.tex @@ -1,4 +1,6 @@ -\section{Introduction}\label{introduction-001} +\section{ExpandObjects} + +\subsection{Introduction}\label{ExpandObjects} The ExpandObjects program uses HVACTemplate objects in the IDF file to ``expand'' them into full fledged objects for EnergyPlus. Read more details of the systems and the individual fields in the HVACTemplate objects in the Input Output Reference document. diff --git a/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-building-surface-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-building-surface-objects-processed.tex new file mode 100644 index 00000000000..1c0b02f3790 --- /dev/null +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-building-surface-objects-processed.tex @@ -0,0 +1,3 @@ +\subsection{Building Surface Objects Processed}\label{pyexpandobjects-building-surface-objects-processed} + +No building surface objects are modified by the pyExpandObjects preprocessor. \ No newline at end of file diff --git a/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-ground-heat-transfer-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-ground-heat-transfer-objects-processed.tex new file mode 100644 index 00000000000..777b3db28f6 --- /dev/null +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-ground-heat-transfer-objects-processed.tex @@ -0,0 +1,3 @@ +\subsection{Ground Heat Transfer Objects Processed}\label{pyexpandobjects-ground-heat-transfer-objects-processed} + +GroundHeatTransfer objects are not supported by the pyExpandObjects preprocessor. \ No newline at end of file diff --git a/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed.tex new file mode 100644 index 00000000000..f3427abd960 --- /dev/null +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-hvac-template-objects-processed.tex @@ -0,0 +1,3 @@ +\subsection{HVAC Template Objects Processed}\label{pyexpandobjects-hvac-template-objects-processed} + +All HVACTemplate objects supported by the ExpandObjects program are supported in pyExpandObjects. Please refer to section~\ref{hvac-template-objects-processed} for further details. \ No newline at end of file diff --git a/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-introduction.tex b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-introduction.tex new file mode 100644 index 00000000000..60b4d394b40 --- /dev/null +++ b/doc/auxiliary-programs/src/hvactemplateexpansion/pyexpandobjects-introduction.tex @@ -0,0 +1,45 @@ +\section{pyExpandObjects} + +\subsection{Introduction}\label{pyExpandObjects} + +Much like the ExpandObjects program in Section~\ref{ExpandObjects}, the pyExpandObjects expands HVACTemplate objects from an input epJSON file into an expanded file that can be directly run in EnergyPlus. However, pyExpandObjects does not process GroundHeatTransfer objects or provide support for the Slab or Basement executables. Additionally, pyExpandObjects is a standalone application which means that it must be run manually to create an expanded file. Details on how to run the program can be found in the Input Output Reference Manual (Chapter 2 - HVACTemplate Objects). + +The pyExpandObjects program works as a preprocessor that maps HVACTemplate objects to regular objects in EnergyPlus. This processor reads an epJSON file and generates and expanded epJSON file. No further pre-processing should be required after the conversion has been performed. Unlike ExpandObjects (Section~\ref{ExpandObjects}), a schema validation does occur when the file is read into the program, and error messages will be shown in the usual EnergyPlus error file. By default, an invalid epJSON file will stop the program, but this requirement can be removed via command line options. Documentation aimed at developers is also available at \url{https://epjson-expandobjects.readthedocs.io/} or see the '--help' command line option for further details. Additionally, the default settings produce two backup files ("\_hvac\_templates.epJSON", "\_base.epJSON") as well as an expanded file with an adjusted name ("\_expanded.epJSON"). If the '--no-backup' option is used in the command line, then only the expanded file will be output. + +The command line interface for this tool provides optional arguments to enable various features of the simulation package. + +\begin{itemize} + +\item + -f, --file FILE\_NAME : Specify file to expand + + This argument may be omitted. A value passed to the program with no argument will be assumed to be a file name. + +\item + -h, --help : Display help information + +\item + -nb, --no\_backup : Do no create backup files + + It is not possible to comment sections of code in JSON formatted files. Therefore, the output expanded files do not have the ability to retain the HVACTemplate objects used to create the current document. If the original file were to be overwritten, then all template data would be lost. In an attempt to provide and additional layer of backups, the -nb option is set to False by default which means two files will be created: one with HVACTemplate objects, and one with all other objects. With these files, the original input file can be created, or specific objects can be copied and pasted. + +\item + -ns, --no\_schema : Skip schema validation checks for pyExpandObjects. Note, this does not skip other schema validation operations within EnergyPlus itself. + + One benefit of the JSON file format is that files can be validated before simulation. This means that erroneous inputs can be found before simulation, which saves time debugging output files and reading through logs, unsure of the error source. This includes syntax errors, values that are out of range, and missing required inputs. However, situations may occur when the user wishes to skip schema validation, in which case this flag should be used. By default, schema validation is enabled. + +\item + -o, --output\_directory : Specify output directory. If not provided, then input file directory is used. + +\item + -l, --logger\_level LOGGER\_LEVEL: Set logging output level + + Various levels of logging output are available for debugging, and other, purposes. A valid level, consistent with Python logging naming structure (i.e. DEBUG, INFO, WARNING, ERROR, CRITICAL), must be provided. + +\item + -v, --version : Display version information + +\item + -wl, --write-logs : Write logs to file + + When this expansion tool is run from its source directory, the output can be written to a file, which is located in the logs directory (logs/base.log). \ No newline at end of file diff --git a/doc/input-output-reference/src/hvac-template-objects.tex b/doc/input-output-reference/src/hvac-template-objects.tex index 7071427eaa0..adc1fc3dcae 100644 --- a/doc/input-output-reference/src/hvac-template-objects.tex +++ b/doc/input-output-reference/src/hvac-template-objects.tex @@ -1,4 +1,4 @@ -\chapter{HVAC Template Objects}\label{hvac-template-objects} +\chapter{HVACTemplate Objects}\label{hvac-template-objects} \input{src/hvac-template-objects/hvactemplate-processing} diff --git a/doc/input-output-reference/src/hvac-template-objects/hvactemplate-processing.tex b/doc/input-output-reference/src/hvac-template-objects/hvactemplate-processing.tex index c17334c05eb..57bf591160a 100644 --- a/doc/input-output-reference/src/hvac-template-objects/hvactemplate-processing.tex +++ b/doc/input-output-reference/src/hvac-template-objects/hvactemplate-processing.tex @@ -1,5 +1,7 @@ \section{HVACTemplate Processing}\label{hvactemplate-processing} +\subsection{IDF File Overview} + \textbf{Unlike other EnergyPlus objects, the HVACTemplate objects are not handled by EnergyPlus directly.} Instead, they are preprocessed by a program called ExpandObjects. If you use EP-Launch or RunEPlus.bat, this preprocessor step is performed automatically using the following sequence: \begin{enumerate} @@ -16,15 +18,162 @@ \section{HVACTemplate Processing}\label{hvactemplate-processing} If you are trying to go beyond the capabilities of the HVACTemplate objects, one strategy you can use is to start your specification using the HVACTemplate objects, run EnergyPlus using EP-Launch and producing an expidf file, rename that file and start making modifications. This approach may help with getting all of the objects needed and the node names set consistently. -\textbf{Users need to remember that no objects related to HVAC except for HVAC template objects are needed in the IDF file.} The existence of other objects (unless specifically described in the following sections) may cause unexpected errors to occur. \hyperref[sizingzone]{Sizing:Zone}, \hyperref[sizingsystem]{Sizing:System}, and \hyperref[sizingplant]{Sizing:Plant} objects will be generated by the corresponding HVACTemplate objects; the user does not need to create these elsewhere in the input file. +\subsection{epJSON File Overview} +\textbf{The HVACTemplate objects for this filetype are handled by a standalone application called pyExpandObjects.} Preprocessing epJSON files must be done manually from the command line. This may be done by directly calling the program (src/main.py) from the application source directory (src/pyExpandObjects), or from a built executable (see the documentation README for more details: \url{https://github.com/john-grando/pyExpandObjects#build-instructions}) + +\begin{enumerate} +\def\labelenumi{\arabic{enumi})} +\item + The preprocessor program, pyExpandObjects, must be run manually. The program reads your epJSON file, verifies it meets the current schema requirements, and converts all the HVACTemplate objects into other EnergyPlus objects. One to three new files are written. + \begin{enumerate} + \item + A renamed file with the naming format "\_expanded.epJSON". This “expanded” file may be used as a standard EnergyPlus epJSON file. Note, the HVACTemplate objects will be completely removed from the expanded file, so ensure to save a copy of the original file before deleting anything! + \item + Optional - A file with the name "\_hvac\_templates.epJSON" which has all the HVACTemplate objects from the input file. + \item + Optional - A file with the name "\_base.epJSON" which has all the HVACTemplate objects removed. + \end{enumerate} + +\item + The EnergyPlus command line tool or EP-Launch may now be used to run the "expanded" file. + +\item + If there are error messages from EnergyPlus, they will refer to the contents of the expanded file. Specific objects referred to in error messages may exist in the original epJSON, but they may be objects created by pyExpandObjects and only exist in the expanded file. Remember that the "\_expanded.epJSON", "\_hvac\_templates.epJSON", and "\_base.epJSON" files will be overwritten everytime the original epJSON is run using EP-Launch or RunEPlus.bat. Also note, the "\_hvac\_templates.epJSON" and "\_base.epJSON" files can be merged to recreate the original epJSON file. +\end{enumerate} + +If you are trying to go beyond the capabilities of the HVACTemplate objects, one strategy you can use is to start your specification using the HVACTemplate objects, run pyExpandObjects manually to produce an epJSON file, rename that file, make modifications, and simulate the new file in EnergyPlus manually. This approach may help with getting all of the objects needed and the node names set consistently. + +\subsection{General HVACTemplate Overview} +\textbf{Users need to remember that no objects related to HVAC except for HVAC template objects are needed in the idf/epJSON file.} The existence of other objects (unless specifically described in the following sections) may cause unexpected errors to occur. \hyperref[sizingzone]{Sizing:Zone}, \hyperref[sizingsystem]{Sizing:System}, and \hyperref[sizingplant]{Sizing:Plant} objects will be generated by the corresponding HVACTemplate objects; the user does not need to create these elsewhere in the input file. There are some exceptions to this rule: \begin{itemize} \item - \hyperref[hvactemplateplantchillerobjectreference]{HVACTemplate:Plant:Chiller:ObjectReference} which requires that the corresponding chiller object be present in the idf file along with any required curve or performance objects. In this case, the HVACTemplate object does not create the chiller object, but adds all of the connections. \hyperref[hvactemplateplanttowerobjectreference]{HVACTemplate:Plant:Tower:ObjectReference} and \hyperref[hvactemplateplantboiler]{HVACTemplate:Plant:Boiler};ObjectReferences are similar. + \hyperref[hvactemplateplantchillerobjectreference]{HVACTemplate:Plant:Chiller:ObjectReference} which requires that the corresponding chiller object be present in the idf/epJSON file along with any required curve or performance objects. In this case, the HVACTemplate object does not create the chiller object, but adds all of the connections. \hyperref[hvactemplateplanttowerobjectreference]{HVACTemplate:Plant:Tower:ObjectReference} and \hyperref[hvactemplateplantboiler]{HVACTemplate:Plant:Boiler};ObjectReferences are similar. +\item + For HVACTemplate:Zone:* objects, if Outdoor Air Method = \emph{DetailedSpecification}, then any referenced \hyperref[designspecificationoutdoorair]{DesignSpecification:OutdoorAir} and \hyperref[designspecificationzoneairdistribution]{DesignSpecification:ZoneAirDistribution} objects must be present in the idf/epJSON file. +\item + For \hyperref[hvactemplatezonevav]{HVACTemplate:Zone:VAV} and \hyperref[hvactemplatezonedualduct]{HVACTemplate:Zone:DualDuct}, if a Design Specification Outdoor Air Object Name for Control is specified, then the referenced \hyperref[designspecificationoutdoorair]{DesignSpecification:OutdoorAir} object must be present in the idf/epJSON file. +\end{itemize} + +\subsection{Command Line Interface} + +\subsubsection{Simulation Tool} + +The command line interface located in the EnergyPlus root directory (energyplus.exe) provides optional arguments to enable various features of the simulation package. + +\begin{itemize} + +\item + -a, --annual : Force annual simulation + +\item + -c, --convert : Output IDF->epJSON or epJSON->IDF, dependent on input file type + +\item + -d, --output-directory ARG : Output directory path (default: current directory) + +\item + -D, --design-day : Force design-day-only simulation + +\item + -h, --help : Display help information + +\item + -i, --idd ARG : Input data dictionary path (default: Energy+.idd in executable directory) + +\item + -j, --jobs ARG : Multi-thread with N threads; 1 thread with no arg. (Currently only for G-Function generation) + +\item + -m, --epmacro : Run EPMacro prior to simulation + +\item + -p, --output-prefix ARG : Prefix for output file names (default: eplus) + \item - For HVACTemplate:Zone:* objects, if Outdoor Air Method = \emph{DetailedSpecification}, then any referenced \hyperref[designspecificationoutdoorair]{DesignSpecification:OutdoorAir} or \hyperref[designspecificationoutdoorairspacelist]{DesignSpecification:OutdoorAir:SpaceList} and \hyperref[designspecificationzoneairdistribution]{DesignSpecification:ZoneAirDistribution} objects must be present in the idf file. + -r, --readvars : Run ReadVarsESO after simulation + +\item + -s, --output-suffix ARG : Suffix style for output file names (default: L) + L: Legacy (e.g., eplustbl.csv) + C: Capital (e.g., eplusTable.csv) + D: Dash (e.g., eplus-table.csv) + +\item + -v, --version : Display version information + +\item + -w, --weather ARG : Weather file path (default: in.epw in current directory) + +\item + -x, --expandobjects : Run ExpandObjects prior to simulation + +\item + --convert-only : Only convert IDF->epJSON or epJSON->IDF, dependent on input file type. No simulation + +\end{itemize} + +\subsubsection*{IDF Options} + +In order to simulate an IDF file that contains HVACTemplate objects, the input must be run through ExpandObjects. By specifying this process to run, the simulation is run with a fully expanded file. Any errors that occur during simulation will refer to the \*.expidf file, not the original \*.idf file. + +\begin{itemize} + +\item + -x --expandobjects : Run ExpandObjects prior to simulation + +\end{itemize} + +\subsubsection*{epJSON Options} + +Expansion of HVACTemplate objects for epJSON filetypes is not integrated into the EnergyPlus command line interface at this time. Please see the next section on how to operate the pyExpandObjects expansion tool. + +\subsubsection{HVACTemplate Expansion Tools} + +\subsubsection*{IDF - ExpandObjects} + +No command line arguments are available for this tool. + +\subsubsection*{epJSON - pyExpandObjects} + +The command line interface for this tool provides optional arguments to enable various features of the simulation package. + +\begin{itemize} + +\item + -f, --file FILE\_NAME : Specify file to expand + + This argument may be omitted. A value passed to the program with no argument will be assumed to be a file name. + +\item + -h, --help : Display help information + +\item + -nb, --no\_backup : Do no create backup files + + It is not possible to comment sections of code in JSON formatted files. Therefore, the output expanded files do not have the ability to retain the HVACTemplate objects used to create the current document. If the original file were to be overwritten, then all template data would be lost. In an attempt to provide and additional layer of backups, the -nb option is set to False by default which means two files will be created: one with HVACTemplate objects, and one with all other objects. With these files, the original input file can be created, or specific objects can be copied and pasted. + +\item + -ns, --no\_schema : Skip schema validation checks for pyExpandObjects. Note, this does not skip other schema validation operations within EnergyPlus itself. + + One benefit of the JSON file format is that files can be validated before simulation. This means that erroneous inputs can be found before simulation, which saves time debugging output files and reading through logs, unsure of the error source. This includes syntax errors, values that are out of range, and missing required inputs. However, situations may occur when the user wishes to skip schema validation, in which case this flag should be used. By default, schema validation is enabled. + +\item + -o, --output\_directory : Specify output directory. If not provided, then input file directory is used. + +\item + -l, --logger\_level LOGGER\_LEVEL: Set logging output level + + Various levels of logging output are available for debugging, and other, purposes. A valid level, consistent with Python logging naming structure (i.e. DEBUG, INFO, WARNING, ERROR, CRITICAL), must be provided. + +\item + -v, --version : Display version information + \item - For \hyperref[hvactemplatezonevav]{HVACTemplate:Zone:VAV} and \hyperref[hvactemplatezonedualduct]{HVACTemplate:Zone:DualDuct}, if a Design Specification Outdoor Air Object Name for Control is specified, then the referenced \hyperref[designspecificationoutdoorair]{DesignSpecification:OutdoorAir} or \hyperref[designspecificationoutdoorairspacelist]{DesignSpecification:OutdoorAir:SpaceList} object must be present in the idf file. -\end{itemize} \ No newline at end of file + -wl, --write-logs : Write logs to file + + When this expansion tool is run from its source directory, the output can be written to a file, which is located in the logs directory (logs/base.log). + +\end{itemize} diff --git a/src/pyExpandObjects/.coveragerc b/src/pyExpandObjects/.coveragerc new file mode 100644 index 00000000000..17248c03bf1 --- /dev/null +++ b/src/pyExpandObjects/.coveragerc @@ -0,0 +1,19 @@ +[run] +source = + src + +omit = + /usr/* + /tmp/* + .tox/* + *.pyenv* + *venv* + setup.py + +[report] +exclude_lines = + pragma: no cover + # This line is used where 'raise' was tested but not reported as covered. + pragma: loop bug + if __name__ == .__main__.: + diff --git a/src/pyExpandObjects/.flake8 b/src/pyExpandObjects/.flake8 new file mode 100644 index 00000000000..0399fd05a88 --- /dev/null +++ b/src/pyExpandObjects/.flake8 @@ -0,0 +1,22 @@ +[flake8] +ignore = E501 +per-file-ignores = + tests/*: E402 +max-line-length = 100 +exclude = + .git, + .github, + .idea, + .tox, + conf.py, + setup.py + cover, + design, + docs, + logs, + tests/expand_examples, + tests/resources, + tests/simulations, + simulation, + resources, + venv diff --git a/src/pyExpandObjects/.gitignore b/src/pyExpandObjects/.gitignore new file mode 100644 index 00000000000..025aebba926 --- /dev/null +++ b/src/pyExpandObjects/.gitignore @@ -0,0 +1,143 @@ +# project specific +logs/* +!logs/logging.conf +.idea +cover +test/scratchpad/* +## simulation files +simulation/test/* +!simulation/test/*.txt +!simulation/test/*.rvi +tests/output_files/*.epJSON +simulation/ExampleFiles/eplusout* + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +# Commented out since the spec files are manually written +#*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/src/pyExpandObjects/docs/CodeStructureOverview.rst b/src/pyExpandObjects/docs/CodeStructureOverview.rst new file mode 100644 index 00000000000..31422616a24 --- /dev/null +++ b/src/pyExpandObjects/docs/CodeStructureOverview.rst @@ -0,0 +1,354 @@ +*********************** +Code Structure Overview +*********************** + +------------------------------ +Overview +------------------------------ + +The python code provides a framework to support the creation of EnergyPlus objects. The instructions for these actions are stored in a YAML file which is structured to eliminate as much redundancy as possible, and provide a clear outline that explains how template options affect the final output. + +------------------------------ +Process Flow +------------------------------ + +Outlined below are the general steps that the program takes to perform its operation. + +1. A schema file is read and validated using the jsonschema package `Versioned Validator`_ class. In this case, the Draft4Validator is used. If the `--no-schema` option has been passed to the program, then no validation will occur at any point in the process. +2. The epJSON file is read, validated, and loaded as a dictionary object. +3. All HVACTemplate objects are loaded into HVACTemplate classes for processing. +4. The template objects are processed to create regular objects for the specific system, zone, plant, or loop. + + i. An `OptionTree` is loaded from the yaml file, which specifies build instructions for a given template. + ii. EnergyPlus objects are created according to the `BuildPath` provided within the `OptionTree`. A `BuildPath` is an ordered list of objects that follow an air loop path. These `BuildPaths` are constructed based on HVACTemplate field inputs. + iii. Additional objects outside of the build path, but specific to the template, are created from instructions provided in a `TemplateObjects` branch. These are objects such as Controllers, NodeLists, SetpointManagers, etc. + iv. Objects that connect equipment to each other are created (e.g. Zone:Splitters/Mixers, SupplyPath, Connectors, BranchLists, etc.) through automated functions. + +5. The epJSON objects created within each HVACTemplate class are merged together into a single document. +8. The epJSON file is validated against the schema. +9. A dictionary output is provided to the downstream process. At a minimum, this object will have a key called 'outputPreProcessMessage' which will contain all warnings and errors generated from this process. On a successful template expansion, a valid epJSON object will also be produced with the file name \_expanded.epJSON +10. If the `--backup-files` option has been specified, the optional "\_hvac_templates.epJSON" and "\_base.epJSON" files will be output. + +.. _Versioned Validator: https://python-jsonschema.readthedocs.io/en/stable/validate/#versioned-validators + +------------------------------ +Yaml Description +------------------------------ + +This program makes use of a YAML file to hold structured objects as well as instructions for alternative object creation based on template inputs. This `Template Expansion Structure`_ YAML file makes use of `anchors and aliases`_ to reduce the amount of redundant code, ensure object consistency between definitions, and provide a more reliable framework for future development and maintenance. With these tools, a structure has been created to define EnergyPlus objects and reference node locations without the need to statically type text values for every case. Values can be directly inserted, or references to template inputs can be made. All references made are scoped within the HVACTemplate object, and references to other HVACTemplate objects cannot be made. + +.. _Template Expansion Structure: https://github.com/john-grando/pyExpandObjects/blob/main/src/resources/template_expansion_structuire.yaml + +.. _anchors and aliases: https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors + +**Object Structure** + +To hold the necessary information for construction, the Yaml objects which represent EnergyPlus objects in a `BuildPath` have additional higher-level information, and are termed 'super' objects. These standard format for these objects is as follows: + +.. code-block:: yaml + + EnergyPlusObject: + Fields: + name: object_name + field_name: field_value + Connectors: + ConnectorPathType: + Inlet: inlet_node_name + Outlet: outlet_node_name + +* EnergyPlusObject: This field is a valid EnergyPlus object type. +* Fields: This is hierarchical container which holds valid EnergyPlus object field names. Additionally, a `name` field and value must be provided to give the object a unique identifier for that object type. +* field_name: The exact EnergyPlus field name must be provided. +* field_value: A `complex reference` may be provided. Please see below for further details +* Connectors: This is a hierarchical container which holds instructions on how an object connects to it's neighbors in a `BuildPath`. +* ConnectorPathType: Must be a selection of AirLoop (only valid option at this time) +* inlet_node_name, outlet_node_name: Must be a field_name provided from Fields + +**BuildPath Objects** + +This is a list of EnergyPlus 'super' objects which are in order of their fluid flow path. Their field names mirror those of EnergyPlus objects while also holding extra information necessary to connect their input/output nodes in an overall path. + + * Fields - key/value pairs of EnergyPlus object fields and values. + + * Key: EnergyPlus field name + * Value: Value to be inserted as default text. References to template inputs can be made through string formatting, which is the use of brackets '{template_input}'. A blank set of brackets '{}' will insert the template's unique name identifier. + + * Connectors - object for identifying how the fluid flow loop passes through the object. This is used to connect nodes between objects in a `BuildPath`. + + * Loop Type [AirLoop] + + * Inlet - EnergyPlus inlet node name for the loop type. + * Outlet - EnergyPlus outlet node name for the loop type. + +Example: + +.. code-block:: yaml + + OutdoorAir:Mixer: + Fields: + name: '{} OA Mixing Box' + mixed_air_node_name: '{} Mixed Air Outlet' + outdoor_air_stream_node_name: '{} Outside Air Inlet' + relief_air_stream_node_name: '{} Relief Air Outlet' + return_air_stream_node_name: '{} Return Air Loop Inlet' + Connectors: + Air: + Inlet: outdoor_air_stream_node_name + Outlet: mixed_air_node_name + +Note, some build path objects are created with null connectors (i.e. `{ Connectors: { Air: None }}`). These objects are created this way such that they can be specifically manipulated in `expand_objects._modify_build_path_for_equipment()`. The most common reason for this modification is that a build path exists, but it is not directly reflected in the AirLoop system BranchList. + +**OptionTree Structure** + +.. code-block:: yaml + + OptionTree: + HVACTemplate: + Zone: Zone template instructions + System: System template instructions + Plant: Plant template instructions + +**OptionTree Template Structure** + +This section provides a set of instructions for the expansion process. + + * BuildPath - Ordered list of objects to create along the fluid flow path. + + * BaseObjects - `BuildPath` Objects that are inserted in all cases + * Actions - List of actions that are conditionally applied base on template values + + * ObjectReference - Reference to an existing object in the `BuildPath` + * Occurrence - The number of times to match the ObjectReference in the `BuildPath` before applying the action. + * Location - Instruction on where to insert the new object(s) in reference to the ObjectReference. 'Before' or 'After' will insert the object to either side. An integer input will specify the global `BuildPath` location. + * ActionType - Instruction whether to insert a new object, remove the existing object, or replace the existing object. + + * BaseObjects - Objects that are created in all cases + * TemplateObjects - Objects that are conditionally created based on template values + +.. code-block:: yaml + + OptionTree: + HVACTemplate: + System: + BuildPath: + BaseObjects: + Actions: + ObjectReference: + Location: + Objects: + BaseObjects: + TemplateObjects: + +**OptionTree Object Structure** + +Once a set of instructions has been selected, the specific information to create the object(s) is provided. + + * Objects - 'Super' objects to be inserted in the `BuildPath` or regular objects to be inserted into the epJSON document. + * Transitions - Transfer of template inputs to object values (e.g. supply_fan_total_efficiency -> Fan Object -> Field [fan efficiency]) + * Mappings - Mappings of template field values that trigger one or more values to be updated in other template fields. For example, the selection of 'InletVaneDampers' for 'supply_fan_part_load_power_coefficients' creates multiple field name/value pairs to express the fan PLR curve. + +* Transitions + + A field value in an object can be created, or overridden. This set of instructions transfers the value provided in an HVACTemplate field to an EnergyPlus object field. + + .. code-block:: yaml + + - Object Type Reference (can be a regular expression): + hvac_template_field: object_field + + - Fan:.*: + supply_fan_delta_pressure: design_pressure_rise + +* Transitions With String Reformatting + + A string reformat may be specified to mutate the input value. For example, if the template value provided for `chilled_water_design_setpoint` is 12.8, then The following code will yield a string value in the schedule_name field of 'HVACTemplate-Always12.8'. When a string is formatted to 'HVACTemplate-Always[numeric]', a Schedule:Compact object is automateically created. + + .. code-block:: yaml + + Fields: &SetpointManagerScheduledChilledWater + <<: *SetpointManagerScheduled + schedule_name: 'HVACTemplate-Always{chilled_water_design_setpoint}' + +* Transition Using Different Template Field + + In addition to string reformatting, a separate template field may be updated by specifying the value as another dictionary object. In this example, if a value is given for dehumidification_setpoint then dehumidifying_relative_humidity_setpoint_schedule_name is updated. + + .. code-block:: yaml + + - ZoneControl:Humidistat: + dehumidification_setpoint: + dehumidifying_relative_humidity_setpoint_schedule_name: 'HVACTemplate-Always{dehumidification_setpoint}' + +* Transition Including Numerical Operations + + Numerical and other mathematical operations that can performed using the eval() function in Python can be used. In this example, a maximum value is returned between a static number and a template field. + + .. code-block:: yaml + + - SetpointManager:Warmest: + maximum_setpoint_temperature: 'max(18, {cooling_coil_design_setpoint}+5.2)' + +* Mappings + + A set of field objects can be created or overridden base on one template input. The mapped values can be statically typed. In this example 'None' means that no tempalte input was provided. + + .. code-block:: yaml + + - Object Type Reference (can be a regular expression): + hvac_template_field: + hvac_template_value: + object_field: object_value + + - Fan:.*: + supply_fan_part_load_power_coefficients: + None: + fan_power_coefficient_1: 0.0015302446 + fan_power_coefficient_2: 0.0052080574 + fan_power_coefficient_3: 1.1086242 + fan_power_coefficient_4: -0.11635563 + fan_power_coefficient_5: 0 + fan_power_minimum_flow_rate_input_method: Fraction + fan_power_minimum_flow_fraction: 0 + +Full Structure Example: + +.. code-block:: yaml + + OptionTree: + HVACTemplate: + System: + DedicatedOutdoorAir: + BuildPath: + BaseObjects: + Actions: + - ... + - supply_fan_placement: + None: &SystemCommonBuildPathActionsSupplyFanPlacementNone + Location: -1 + ActionType: Insert + Objects: + - Fan:VariableVolume: + Fields: + << : *FanFields + maximum_flow_rate: Autosize + Connectors: *FanConnectors + pressure_rise: 1000 + Transitions: *FanCommonTransitionsSupply + Mappings: *FanCommonMappingsDedicatedOutdoorAir + DrawThrough: *SystemCommonBuildPathActionsSupplyFanPlacementNone + BlowThrough: + ObjectReference: OutdoorAir:Mixer + ActionType: Insert + Location: After + Objects: + - Fan:VariableVolume: *FanVariableVolumeSuperObject + Transitions: *FanCommonTransitionsSupply + Mappings: *FanCommonMappingsDedicatedOutdoorAir + BaseObjects: + Objects: + - ... + - Sizing:System: + ... + 100_outdoor_air_in_cooling: 'Yes' + 100_outdoor_air_in_heating: 'Yes' + central_cooling_design_supply_air_humidity_ratio: 0.00924 + central_heating_design_supply_air_humidity_ratio: 0.003 + type_of_load_to_size_on: VentilationRequirement + preheat_design_temperature: 2 + Transitions: + - Sizing:System: + ... + cooling_coil_design_setpoint_temperature: central_cooling_design_supply_air_temperature + cooling_coil_design_setpoint: central_cooling_design_supply_air_temperature + +**Complex References** + +References to object field values may take multiple forms. This feature is intended to provide greater flexibility for object definition and to link nodes without relying on static text fields. References may be specified as follows: + +* Static value: numeric or string. + Use a directly typed value. Note, the `.format()` method is applied to all string values. This allows template input values to be directly inserted into a string by simply applying the name within brackets '{}'. A set of blank brackets will have the unique template name inserte into that space. + + For a given HVACTemplate Object: + + .. code-block:: json + + "HVACTemplate:System:DedicatedOutdoorAir": { + "DOAS": { + "gas_heating_coil_efficiency": 0.8 + } + } + + The inputs can be applied to the object in the YAML file + + .. code-block:: yaml + + Fields: &CoilHeatingFuelFields + <<: *CoilHeatingCommonFields + burner_efficiency: '{gas_heating_coil_efficiency}' + +* `BuildPath` Location References: string or integer + Reference a node by it's location in the `BuildPath`. This is only useful for System and Zone templates, not Plant or Loop templates. + + * Location: When given a string, a regular expression match is made to find an EnergyPlus object type in the `BuildPath`. When given an integer, the list index of the object in the `BuildPath` is used. + * Occurrence: The number of matches to make before returning an object. A value of -1 will return the last matched object. + * ValueLocation: + + * self - The EnergyPlus object type + * key - The EnergyPlus unique object name + * Inlet - The connector inlet + * Outlet - The connector outlet + + .. code-block:: yaml + + AirLoopHVAC: + supply_side_outlet_node_names: + BuildPathReference: + Location: -1 + ValueLocation: Outlet + +* General Reference Value + Reference an epJSON object in the document. This is a key/value pair given to retrieve an EnergyPlus object. Note, only objects that are created within the scope of the given template can be referenced. The 'self' and 'key' options noted above are available as well. + + .. code-block:: yaml + + Branch: + name: '{} ChW Branch' + components: + - component_object_type: + Chiller.*: self + component_name: + Chiller.*: key + component_inlet_node_name: + Chiller.*: chilled_water_inlet_node_name + component_outlet_node_name: + Chiller.*: chilled_water_outlet_node_name + +---------------------- +Command Line Interface +---------------------- + +`-f, --file FILE\_NAME : Specify file to expand` + +This argument may be omitted. A value passed to the program with no argument will be assumed to be a file name. + +`-h, --help : Display help information` + +`-nb, --no\_backup : Do no create backup files` + +It is not possible to comment sections of code in JSON formatted files. Therefore, the output expanded files do not have the ability to retain the HVACTemplate objects used to create the current document. If the original file were to be overwritten, then all template data would be lost. In an attempt to provide and additional layer of backups, the -nb option is set to False by default which means two files will be created: one with HVACTemplate objects, and one with all other objects. With these files, the original input file can be created, or specific objects can be copied and pasted. + +`-ns, --no\_schema : Skip schema validation checks for pyExpandObjects. Note, this does not skip other schema validation operations within EnergyPlus itself.` + +One benefit of the JSON file format is that files can be validated before simulation. This means that erroneous inputs can be found before simulation, which saves time debugging output files and reading through logs, unsure of the error source. This includes syntax errors, values that are out of range, and missing required inputs. However, situations may occur when the user wishes to skip schema validation, in which case this flag should be used. By default, schema validation is enabled. + +`-o, --output\_directory : Specify output directory. If not provided, then input file directory is used.` + +`-l, --logger\_level LOGGER\_LEVEL: Set logging output level` + +Various levels of logging output are available for debugging, and other, purposes. A valid level, consistent with Python logging naming structure (i.e. DEBUG, INFO, WARNING, ERROR, CRITICAL), must be provided. + +`-v, --version : Display version information` + +`-wl, --write-logs : Write logs to file` + +When this expansion tool is run from its source directory, the output can be written to a file, which is located in the logs directory (logs/base.log). diff --git a/src/pyExpandObjects/docs/ExpandObjects.rst b/src/pyExpandObjects/docs/ExpandObjects.rst new file mode 100644 index 00000000000..bd8bf03e8d1 --- /dev/null +++ b/src/pyExpandObjects/docs/ExpandObjects.rst @@ -0,0 +1,61 @@ +ExpandObjects +============= + +.. module:: expand_objects + +.. autoclass:: ExpandObjects + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: + +ExpandThermostat +================ + +.. autoclass:: ExpandThermostat + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: + +ExpandZone +================ + +.. autoclass:: ExpandZone + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: + +ExpandSystem +================ + +.. autoclass:: ExpandSystem + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: + +ExpandPlantLoop +================ + +.. autoclass:: ExpandPlantLoop + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: + +ExpandPlantEquipment +==================== + +.. autoclass:: ExpandPlantEquipment + :members: + :private-members: + :undoc-members: + :show-inheritance: + :noindex: diff --git a/src/pyExpandObjects/docs/General.rst b/src/pyExpandObjects/docs/General.rst new file mode 100644 index 00000000000..47d4a709962 --- /dev/null +++ b/src/pyExpandObjects/docs/General.rst @@ -0,0 +1,17 @@ +Logger +============= + +.. automodule:: logger + :members: + :undoc-members: + :show-inheritance: + :noindex: + +EPJSON +============= + +.. automodule:: epjson_handler + :members: + :undoc-members: + :show-inheritance: + :noindex: diff --git a/src/pyExpandObjects/docs/HVACTemplate.rst b/src/pyExpandObjects/docs/HVACTemplate.rst new file mode 100644 index 00000000000..83c3b4ec27b --- /dev/null +++ b/src/pyExpandObjects/docs/HVACTemplate.rst @@ -0,0 +1,8 @@ +HVAC Template +============= + +.. automodule:: hvac_template + :members: + :undoc-members: + :show-inheritance: + :noindex: diff --git a/src/pyExpandObjects/docs/Makefile b/src/pyExpandObjects/docs/Makefile new file mode 100644 index 00000000000..d4bb2cbb9ed --- /dev/null +++ b/src/pyExpandObjects/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/src/pyExpandObjects/docs/_static/simulation_output.html b/src/pyExpandObjects/docs/_static/simulation_output.html new file mode 100644 index 00000000000..2d6d4a84ee7 --- /dev/null +++ b/src/pyExpandObjects/docs/_static/simulation_output.html @@ -0,0 +1,9826 @@ + + + + + Simulation Test Results + Main Page

Simulation : Full : Base

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
HVACTemplate-5ZoneBaseboardHeattest_base_files.pytest_5_zone_baseboard_heat2021-09-21 08:15:48True
HVACTemplate-5ZoneConstantVolumeChillerBoilertest_base_files.pytest_5_zone_constant_volume_chiller_boiler2021-09-21 08:16:16True
HVACTemplate-5ZoneDualDucttest_base_files.pytest_5_zone_dual_duct2021-09-21 08:16:41True
HVACTemplate-5ZoneFanCoiltest_base_files.pytest_5_zone_fan_coil2021-09-21 08:17:12True
HVACTemplate-5ZoneFanCoil-DOAStest_base_files.pytest_5_zone_fan_coil_doas2021-09-21 08:17:39True
HVACTemplate-5ZoneFurnaceDXtest_base_files.pytest_5_zone_furnace_dx2021-09-21 08:18:04True
HVACTemplate-5ZonePTACtest_base_files.pytest_5_zone_ptac2021-09-21 08:18:50True
HVACTemplate-5ZonePTAC-DOAStest_base_files.pytest_5_zone_ptac_doas2021-09-21 08:19:15True
HVACTemplate-5ZonePTHPtest_base_files.pytest_5_zone_pthp2021-09-21 08:19:38True
HVACTemplate-5ZonePacakagedVAVtest_base_files.pytest_5_zone_packaged_vav2021-09-21 08:18:27True
HVACTemplate-5ZonePurchAirtest_base_files.pytest_5_zone_purch_air2021-09-21 08:20:03True
HVACTemplate-5ZoneUnitaryHeatPumptest_base_files.pytest_5_zone_unitary_heat_pump2021-09-21 08:20:28True
HVACTemplate-5ZoneUnitarySystemtest_base_files.pytest_5_zone_unitary_system2021-09-21 08:21:03True
HVACTemplate-5ZoneVAVFanPoweredtest_base_files.pytest_5_zone_vav_fan_powered2021-09-21 08:21:28True
HVACTemplate-5ZoneVAVWaterCooledtest_base_files.pytest_5_zone_vav_water_cooled2021-09-21 08:21:54True
HVACTemplate-5ZoneVAVWaterCooled-ObjectReferencetest_base_files.pytest_5_zone_vav_water_cooled_object_reference2021-09-21 08:22:19True
HVACTemplate-5ZoneVRFtest_base_files.pytest_5_zone_vrf2021-09-21 08:22:43True
HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoilertest_base_files.pytest_5_zone_water_to_air_heat_pump_tower_boiler2021-09-21 08:23:08True
+

Simulation : PlantEquipment : Boiler

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
boiler_type_condensing_hot_water_boilertest_plant_equipment_boiler.pytest_boiler_type_condensing_hot_water_boiler2021-09-21 08:24:13True
boiler_type_district_hot_watertest_plant_equipment_boiler.pytest_boiler_type_district_hot_water2021-09-21 08:24:44True
boiler_type_hot_water_boilertest_plant_equipment_boiler.pytest_boiler_type_hot_water_boiler2021-09-21 08:25:18True
fuel_typetest_plant_equipment_boiler.pytest_fuel_type2021-09-21 08:25:51True
hot_water_boiler_efficiencytest_plant_equipment_boiler.pytest_hot_water_boiler_efficiency2021-09-21 08:26:22True
inputstest_plant_equipment_boiler.pytest_inputs2021-09-21 08:26:53True
prioritytest_plant_equipment_boiler.pytest_priority2021-09-21 08:27:58True
template_plant_loop_typetest_plant_equipment_boiler.pytest_template_plant_loop_type2021-09-21 08:28:30True
test_minimum_inputstest_plant_equipment_boiler.pytest_minimum_inputs2021-09-21 08:27:24True
+

Simulation : PlantEquipment : Boiler : ObjectReference

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
prioritytest_plant_equipment_boiler_object_reference.pytest_priority2021-09-21 08:29:34True
template_plant_loop_typetest_plant_equipment_boiler_object_reference.pytest_template_plant_loop_type2021-09-21 08:30:09True
test_minimum_inputstest_plant_equipment_boiler_object_reference.pytest_minimum_inputs2021-09-21 08:29:03True
+

Simulation : PlantEquipment : Chiller

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
capacitytest_plant_equipment_chiller.pytest_capacity2021-09-21 08:30:42True
chiller_electric_reciprocating_chiller_water_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_reciprocating_chiller_water_cooled2021-09-21 08:32:58True
chiller_type_district_chilled_watertest_plant_equipment_chiller.pytest_chiller_type_district_chilled_water2021-09-21 08:34:35True
chiller_type_electric_centrifugal_chiller_air_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_centrifugal_chiller_air_cooled2021-09-21 08:31:17True
chiller_type_electric_centrifugal_chiller_water_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_centrifugal_chiller_water_cooled2021-09-21 08:31:51True
chiller_type_electric_reciprocating_chiller_air_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_reciprocating_chiller_air_cooled2021-09-21 08:32:24True
chiller_type_electric_screw_chiller_air_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_screw_chiller_air_cooled2021-09-21 08:33:33True
chiller_type_electric_screw_chiller_water_cooledtest_plant_equipment_chiller.pytest_chiller_type_chiller_electric_screw_chiller_water_cooled2021-09-21 08:34:04True
inputstest_plant_equipment_chiller.pytest_inputs2021-09-21 08:35:07True
nominal_coptest_plant_equipment_chiller.pytest_nominal_cop2021-09-21 08:36:10True
prioritytest_plant_equipment_chiller.pytest_priority2021-09-21 08:36:43True
test_minimum_inputstest_plant_equipment_chiller.pytest_minimum_inputs2021-09-21 08:35:39True
+

Simulation : PlantEquipment : Chiller : ObjectReference

+ + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
prioritytest_plant_equipment_chiller_object_reference.pytest_priority2021-09-21 08:37:52True
test_minimum_inputstest_plant_equipment_chiller_object_reference.pytest_minimum_inputs2021-09-21 08:37:19True
+

Simulation : PlantEquipment : HotWaterLoop

+ + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
test_minimum_inputstest_plant_loop_hot_water_loop.pytest_minimum_inputs2021-09-21 09:51:23True
+

Simulation : PlantEquipment : MixedWaterLoop

+ + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
test_minimum_inputstest_plant_loop_mixed_water_loop.pytest_minimum_inputs2021-09-21 10:03:30True
+

Simulation : PlantEquipment : Tower

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
inputs_single_speedtest_plant_equipment_tower.pytest_inputs_single_speed2021-09-21 08:38:21True
inputs_two_speedtest_plant_equipment_tower.pytest_inputs_two_speed2021-09-21 08:38:50True
prioritytest_plant_equipment_tower.pytest_priority2021-09-21 08:39:50True
sizing_factor_single_speedtest_plant_equipment_tower.pytest_sizing_factor_single_speed2021-09-21 08:40:22True
sizing_factor_two_speedtest_plant_equipment_tower.pytest_sizing_factor_two_speed2021-09-21 08:40:52True
template_plant_loop_typetest_plant_equipment_tower.pytest_template_plant_loop_type2021-09-21 08:41:24True
test_minimum_inputstest_plant_equipment_tower.pytest_minimum_inputs2021-09-21 08:39:21True
tower_type_single_speedtest_plant_equipment_tower.pytest_tower_type_single_speed2021-09-21 08:41:53True
tower_type_two_speedtest_plant_equipment_tower.pytest_tower_type_two_speed2021-09-21 08:42:25True
+

Simulation : PlantEquipment : Tower : ObjectReference

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
prioritytest_plant_equipment_tower_object_reference.pytest_priority2021-09-21 08:43:32True
template_plant_loop_typetest_plant_equipment_tower_object_reference.pytest_template_plant_loop_type2021-09-21 08:44:06True
test_minimum_inputstest_plant_equipment_tower_object_reference.pytest_minimum_inputs2021-09-21 08:42:58True
+

Simulation : PlantLoop : ChilledWaterLoop

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
chilled_water_demand_side_bypass_pipe_notest_plant_loop_chilled_water_loop.pytest_chilled_water_demand_side_bypass_pipe_no2021-09-21 08:44:40True
chilled_water_demand_side_bypass_pipe_yestest_plant_loop_chilled_water_loop.pytest_chilled_water_demand_side_bypass_pipe_yes2021-09-21 08:45:12True
chilled_water_design_setpointtest_plant_loop_chilled_water_loop.pytest_chilled_water_design_setpoint2021-09-21 08:45:46True
chilled_water_load_distribution_scheme_nonetest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_none2021-09-21 08:46:19True
chilled_water_load_distribution_scheme_optimaltest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_optimal2021-09-21 08:46:53True
chilled_water_load_distribution_scheme_sequential_loadtest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_sequential_load2021-09-21 08:47:26True
chilled_water_load_distribution_scheme_sequential_uniform_plrtest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_sequential_uniform_plr2021-09-21 08:47:57True
chilled_water_load_distribution_scheme_uniform_loadtest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_uniform_load2021-09-21 08:48:33True
chilled_water_load_distribution_scheme_uniform_plrtest_plant_loop_chilled_water_loop.pytest_chilled_water_load_distribution_scheme_uniform_plr2021-09-21 08:49:06True
chilled_water_primary_chilled_water_pump_rated_headtest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_chilled_water_pump_rated_head2021-09-21 08:49:39True
chilled_water_primary_pump_type_five_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_five_headered_pumps2021-09-21 08:50:12True
chilled_water_primary_pump_type_five_headered_pumps_variabletest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_five_headered_pumps_variable2021-09-21 08:50:45True
chilled_water_primary_pump_type_four_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_four_headered_pumps2021-09-21 08:51:17True
chilled_water_primary_pump_type_four_headered_pumps_variabletest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_four_headered_pumps_variable2021-09-21 08:51:50True
chilled_water_primary_pump_type_pump_per_chillertest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_pump_per_chiller2021-09-21 08:52:21True
chilled_water_primary_pump_type_single_pumptest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_single_pump2021-09-21 08:53:25True
chilled_water_primary_pump_type_three_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_three_headered_pumps2021-09-21 08:54:29True
chilled_water_primary_pump_type_three_headered_pumps_variabletest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_three_headered_pumps_variable2021-09-21 08:55:02True
chilled_water_primary_pump_type_two_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_two_headered_pumps2021-09-21 08:55:35True
chilled_water_primary_pump_type_two_headered_pumps_variabletest_plant_loop_chilled_water_loop.pytest_chilled_water_primary_pump_type_two_headered_pumps_variable2021-09-21 08:56:08True
chilled_water_pump_configuration_constant_primary_no_secondarytest_plant_loop_chilled_water_loop.pytest_chilled_water_pump_configuration_constant_primary_no_secondary2021-09-21 08:56:39True
chilled_water_pump_configuration_constant_primary_variable_secondarytest_plant_loop_chilled_water_loop.pytest_chilled_water_pump_configuration_constant_primary_variable_secondary2021-09-21 08:57:11True
chilled_water_pump_configuration_variable_primary_no_secondarytest_plant_loop_chilled_water_loop.pytest_chilled_water_pump_configuration_variable_primary_no_secondary2021-09-21 08:57:46True
chilled_water_secondary_pump_type_five_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_secondary_pump_type_five_headered_pumps2021-09-21 08:58:19True
chilled_water_secondary_pump_type_four_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_secondary_pump_type_four_headered_pumps2021-09-21 08:58:51True
chilled_water_secondary_pump_type_three_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_secondary_pump_type_three_headered_pumps2021-09-21 08:59:23True
chilled_water_secondary_pump_type_two_headered_pumpstest_plant_loop_chilled_water_loop.pytest_chilled_water_secondary_pump_type_two_headered_pumps2021-09-21 09:00:01True
chilled_water_setpoint_reset_type_nonetest_plant_loop_chilled_water_loop.pytest_chilled_water_setpoint_reset_type_none2021-09-21 09:00:35True
chilled_water_setpoint_reset_type_outdoor_air_temperature_resettest_plant_loop_chilled_water_loop.pytest_chilled_water_setpoint_reset_type_outdoor_air_temperature_reset2021-09-21 09:01:10True
chilled_water_setpoint_reset_type_outdoor_air_temperature_reset_inputstest_plant_loop_chilled_water_loop.pytest_chilled_water_setpoint_reset_type_outdoor_air_temperature_reset_inputs2021-09-21 09:01:43True
chilled_water_setpoint_schedule_nametest_plant_loop_chilled_water_loop.pytest_chilled_water_setpoint_schedule_name2021-09-21 09:02:14True
chilled_water_supply_side_bypass_pipe_notest_plant_loop_chilled_water_loop.pytest_chilled_water_supply_side_bypass_pipe_no2021-09-21 09:02:53True
chilled_water_supply_side_bypass_pipe_no_demand_side_bypass_pipe_notest_plant_loop_chilled_water_loop.pytest_chilled_water_supply_side_bypass_pipe_no_demand_side_bypass_pipe_no2021-09-21 09:03:29True
chilled_water_supply_side_bypass_pipe_yestest_plant_loop_chilled_water_loop.pytest_chilled_water_supply_side_bypass_pipe_yes2021-09-21 09:04:07True
chiller_plant_operation_scheme_typetest_plant_loop_chilled_water_loop.pytest_chiller_plant_operation_scheme_type2021-09-21 09:04:29False
chiller_plant_operation_scheme_typetest_plant_loop_chilled_water_loop.pytest_condenser_plant_operation_scheme_type2021-09-21 09:04:54False
condenser_water_demand_side_bypass_pipe_notest_plant_loop_chilled_water_loop.pytest_condenser_water_demand_side_bypass_pipe_no2021-09-21 09:05:28True
condenser_water_demand_side_bypass_pipe_yestest_plant_loop_chilled_water_loop.pytest_condenser_water_demand_side_bypass_pipe_yes2021-09-21 09:06:01True
condenser_water_design_setpointtest_plant_loop_chilled_water_loop.pytest_condenser_water_design_setpoint2021-09-21 09:06:33True
condenser_water_load_distribution_scheme_nonetest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_none2021-09-21 09:07:08True
condenser_water_load_distribution_scheme_optionaltest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_optimal2021-09-21 09:07:40True
condenser_water_load_distribution_scheme_sequential_loadtest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_sequential_load2021-09-21 09:08:14True
condenser_water_load_distribution_scheme_sequential_uniform_plrtest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_sequential_uniform_plr2021-09-21 09:08:46True
condenser_water_load_distribution_scheme_uniform_loadtest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_uniform_load2021-09-21 09:09:20True
condenser_water_load_distribution_scheme_uniform_plrtest_plant_loop_chilled_water_loop.pytest_condenser_water_load_distribution_scheme_uniform_plr2021-09-21 09:09:56True
condenser_water_primary_pump_type_five_headered_pumpstest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_five_headered_pumps2021-09-21 09:10:28True
condenser_water_primary_pump_type_four_headered_pumpstest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_four_headered_pumps2021-09-21 09:11:00True
condenser_water_primary_pump_type_pump_per_towertest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_pump_per_tower2021-09-21 09:11:31True
condenser_water_primary_pump_type_single_pumptest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_single_pump2021-09-21 09:12:05True
condenser_water_primary_pump_type_three_headered_pumpstest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_three_headered_pumps2021-09-21 09:12:40True
condenser_water_primary_pump_type_two_headered_pumpstest_plant_loop_chilled_water_loop.pytest_condenser_water_primary_pump_type_two_headered_pumps2021-09-21 09:13:15True
condenser_water_pump_rated_headtest_plant_loop_chilled_water_loop.pytest_condenser_water_pump_rated_head2021-09-21 09:13:47True
condenser_water_setpoint_schedule_nametest_plant_loop_chilled_water_loop.pytest_condenser_water_setpoint_schedule_name2021-09-21 09:14:19True
condenser_water_supply_side_bypass_pipe_notest_plant_loop_chilled_water_loop.pytest_condenser_water_supply_side_bypass_pipe_no2021-09-21 09:14:51True
condenser_water_supply_side_bypass_pipe_no_demand_side_bypass_notest_plant_loop_chilled_water_loop.pytest_condenser_water_supply_side_bypass_pipe_no_demand_side_bypass_pipe_no2021-09-21 09:15:24True
condenser_water_supply_side_bypass_pipe_yestest_plant_loop_chilled_water_loop.pytest_condenser_water_supply_side_bypass_pipe_yes2021-09-21 09:15:56True
condenser_water_temperature_control_type_outdoor_wet_bulb_temperaturetest_plant_loop_chilled_water_loop.pytest_condenser_water_temperature_control_type_outdoor_wet_bulb_temperature2021-09-21 09:16:29True
condenser_water_temperature_control_type_specified_setpointtest_plant_loop_chilled_water_loop.pytest_condenser_water_temperature_control_type_specified_setpoint2021-09-21 09:17:01True
fluid_type_ethylene_glycol_30test_plant_loop_chilled_water_loop.pytest_fluid_type_ethylene_glycol_302021-09-21 09:17:33True
fluid_type_ethylene_glycol_40test_plant_loop_chilled_water_loop.pytest_fluid_type_ethylene_glycol_402021-09-21 09:18:08True
fluid_type_ethylene_glycol_50test_plant_loop_chilled_water_loop.pytest_fluid_type_ethylene_glycol_502021-09-21 09:18:40True
fluid_type_ethylene_glycol_60test_plant_loop_chilled_water_loop.pytest_fluid_type_ethylene_glycol_602021-09-21 09:19:14True
fluid_type_propylene_glycol_30test_plant_loop_chilled_water_loop.pytest_fluid_type_propylene_glycol_302021-09-21 09:19:46True
fluid_type_propylene_glycol_40test_plant_loop_chilled_water_loop.pytest_fluid_type_propylene_glycol_402021-09-21 09:20:18True
fluid_type_propylene_glycol_50test_plant_loop_chilled_water_loop.pytest_fluid_type_propylene_glycol_502021-09-21 09:20:53True
fluid_type_propylene_glycol_60test_plant_loop_chilled_water_loop.pytest_fluid_type_propylene_glycol_602021-09-21 09:21:26True
fluid_type_watertest_plant_loop_chilled_water_loop.pytest_fluid_type_water2021-09-21 09:21:58True
loop_design_delta_temperaturetest_plant_loop_chilled_water_loop.pytest_loop_design_delta_temperature2021-09-21 09:22:30True
minimum_outdoor_dry_bulb_temperature_nonetest_plant_loop_chilled_water_loop.pytest_minimum_outdoor_dry_bulb_temperature_none2021-09-21 09:23:38True
minimum_outdoor_dry_bulb_temperature_valuetest_plant_loop_chilled_water_loop.pytest_minimum_outdoor_dry_bulb_temperature_value2021-09-21 09:24:13True
pump_control_type_continuoustest_plant_loop_chilled_water_loop.pytest_pump_control_type_continuous2021-09-21 09:24:47True
pump_control_type_intermittenttest_plant_loop_chilled_water_loop.pytest_pump_control_type_intermittent2021-09-21 09:25:20True
pump_schedule_nametest_plant_loop_chilled_water_loop.pytest_pump_schedule_name2021-09-21 09:25:55True
test_minimum_inputstest_plant_loop_chilled_water_loop.pytest_minimum_inputs2021-09-21 09:23:05False
+

Simulation : PlantLoop : HotWaterLoop

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
fluid_type_ethylene_glycol_30test_plant_loop_hot_water_loop.pytest_fluid_type_ethylene_glycol_302021-09-21 09:26:27True
fluid_type_ethylene_glycol_40test_plant_loop_hot_water_loop.pytest_fluid_type_ethylene_glycol_402021-09-21 09:27:03True
fluid_type_ethylene_glycol_50test_plant_loop_hot_water_loop.pytest_fluid_type_ethylene_glycol_502021-09-21 09:27:36True
fluid_type_ethylene_glycol_60test_plant_loop_hot_water_loop.pytest_fluid_type_ethylene_glycol_602021-09-21 09:28:08True
fluid_type_propylene_glycol_30test_plant_loop_hot_water_loop.pytest_fluid_type_propylene_glycol_302021-09-21 09:28:40True
fluid_type_propylene_glycol_40test_plant_loop_hot_water_loop.pytest_fluid_type_propylene_glycol_402021-09-21 09:29:17True
fluid_type_propylene_glycol_50test_plant_loop_hot_water_loop.pytest_fluid_type_propylene_glycol_502021-09-21 09:29:50True
fluid_type_propylene_glycol_60test_plant_loop_hot_water_loop.pytest_fluid_type_propylene_glycol_602021-09-21 09:30:25True
fluid_type_watertest_plant_loop_hot_water_loop.pytest_fluid_type_water2021-09-21 09:30:58True
hot_water_demand_side_bypass_pipe_notest_plant_loop_hot_water_loop.pytest_hot_water_demand_side_bypass_pipe_no2021-09-21 09:31:34True
hot_water_demand_side_bypass_pipe_yestest_plant_loop_hot_water_loop.pytest_hot_water_demand_side_bypass_pipe_yes2021-09-21 09:32:06True
hot_water_design_setpointtest_plant_loop_hot_water_loop.pytest_hot_water_design_setpoint2021-09-21 09:32:41True
hot_water_plant_operation_scheme_typetest_plant_loop_hot_water_loop.pytest_hot_water_plant_operation_scheme_type2021-09-21 09:33:05False
hot_water_pump_configuration_variable_flowtest_plant_loop_hot_water_loop.pytest_hot_water_pump_configuration_constant_flow2021-09-21 09:33:41True
hot_water_pump_configuration_variable_flowtest_plant_loop_hot_water_loop.pytest_hot_water_pump_configuration_variable_flow2021-09-21 09:34:17True
hot_water_pump_rated_headtest_plant_loop_hot_water_loop.pytest_hot_water_pump_rated_head2021-09-21 09:34:50True
hot_water_pump_type_five_headered_pumpstest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_five_headered_pumps2021-09-21 09:35:23True
hot_water_pump_type_five_headered_pumps_variabletest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_five_headered_pumps_variable2021-09-21 09:36:00True
hot_water_pump_type_four_headered_pumpstest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_four_headered_pumps2021-09-21 09:36:35True
hot_water_pump_type_four_headered_pumps_variabletest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_four_headered_pumps_variable2021-09-21 09:37:08True
hot_water_pump_type_pump_per_boilertest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_pump_per_boiler2021-09-21 09:37:44True
hot_water_pump_type_pump_per_boiler_district_hot_watertest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_pump_per_boiler_district_hot_water2021-09-21 09:38:18True
hot_water_pump_type_single_pumptest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_single_pump2021-09-21 09:38:51True
hot_water_pump_type_single_pump_variabletest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_single_pump_variable2021-09-21 09:39:23True
hot_water_pump_type_three_headered_pumpstest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_three_headered_pumps2021-09-21 09:39:56True
hot_water_pump_type_three_headered_pumps_variabletest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_three_headered_pumps_variable2021-09-21 09:40:34True
hot_water_pump_type_two_headered_pumpstest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_two_headered_pumps2021-09-21 09:41:10True
hot_water_pump_type_two_headered_pumps_variabletest_plant_loop_hot_water_loop.pytest_hot_water_pump_type_two_headered_pumps_variable2021-09-21 09:41:43True
hot_water_setpoint_reset_type_nonetest_plant_loop_hot_water_loop.pytest_hot_water_setpoint_reset_type_none2021-09-21 09:42:15True
hot_water_setpoint_reset_type_outdoor_air_temperature_resettest_plant_loop_hot_water_loop.pytest_hot_water_setpoint_reset_type_outdoor_air_temperature_reset2021-09-21 09:42:47True
hot_water_setpoint_reset_type_outdoor_air_temperature_reset_inputstest_plant_loop_hot_water_loop.pytest_hot_water_setpoint_reset_type_outdoor_air_temperature_reset_inputs2021-09-21 09:43:21True
hot_water_setpoint_schedule_nametest_plant_loop_hot_water_loop.pytest_hot_water_setpoint_schedule_name2021-09-21 09:43:56True
hot_water_supply_side_bypass_pipe_notest_plant_loop_hot_water_loop.pytest_hot_water_supply_side_bypass_pipe_no2021-09-21 09:44:32True
hot_water_supply_side_bypass_pipe_no_demand_side_bypass_pipe_notest_plant_loop_hot_water_loop.pytest_hot_water_supply_side_bypass_pipe_no_demand_side_bypass_pipe_no2021-09-21 09:45:10True
hot_water_supply_side_bypass_pipe_yestest_plant_loop_hot_water_loop.pytest_hot_water_supply_side_bypass_pipe_yes2021-09-21 09:45:44True
load_distribution_scheme_nonetest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_none2021-09-21 09:46:17True
load_distribution_scheme_optimaltest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_sequential_optimal2021-09-21 09:47:27True
load_distribution_scheme_sequential_loadtest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_sequential_load2021-09-21 09:46:51True
load_distribution_scheme_sequential_uniform_plrtest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_sequential_uniform_plr2021-09-21 09:48:02True
load_distribution_scheme_uniform_loadtest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_uniform_load2021-09-21 09:48:40True
load_distribution_scheme_uniform_plrtest_plant_loop_hot_water_loop.pytest_load_distribution_scheme_uniform_plr2021-09-21 09:49:12True
loop_design_delta_temperaturetest_plant_loop_hot_water_loop.pytest_loop_design_delta_temperature2021-09-21 09:49:45True
maximum_outdoor_dry_bulb_temperature_nonetest_plant_loop_hot_water_loop.pytest_maximum_outdoor_dry_bulb_temperature_none2021-09-21 09:50:17True
maximum_outdoor_dry_bulb_temperature_nonetest_plant_loop_hot_water_loop.pytest_maximum_outdoor_dry_bulb_temperature_value2021-09-21 09:50:49True
pump_control_type_continuoustest_plant_loop_hot_water_loop.pytest_pump_control_type_continuous2021-09-21 09:51:56True
pump_control_type_intermittenttest_plant_loop_hot_water_loop.pytest_pump_control_type_intermittent2021-09-21 09:52:33True
pump_schedule_nametest_plant_loop_hot_water_loop.pytest_pump_schedule_name2021-09-21 09:53:07True
+

Simulation : PlantLoop : MixedWaterLoop

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
demand_side_bypass_pipe_notest_plant_loop_mixed_water_loop.pytest_demand_side_bypass_pipe_no2021-09-21 09:53:43True
demand_side_bypass_pipe_notest_plant_loop_mixed_water_loop.pytest_supply_side_bypass_pipe_no_demand_side_bypass_pipe_no2021-09-21 10:06:56True
demand_side_bypass_pipe_yestest_plant_loop_mixed_water_loop.pytest_demand_side_bypass_pipe_yes2021-09-21 09:54:13True
fluid_type_ethylene_glycol_30test_plant_loop_mixed_water_loop.pytest_fluid_type_ethylene_glycol_302021-09-21 09:55:14True
fluid_type_ethylene_glycol_40test_plant_loop_mixed_water_loop.pytest_fluid_type_ethylene_glycol_402021-09-21 09:55:44True
fluid_type_ethylene_glycol_50test_plant_loop_mixed_water_loop.pytest_fluid_type_ethylene_glycol_502021-09-21 09:56:15True
fluid_type_ethylene_glycol_60test_plant_loop_mixed_water_loop.pytest_fluid_type_ethylene_glycol_602021-09-21 09:56:46True
fluid_type_propylene_glycol_30test_plant_loop_mixed_water_loop.pytest_fluid_type_propylene_glycol_302021-09-21 09:57:17True
fluid_type_propylene_glycol_40test_plant_loop_mixed_water_loop.pytest_fluid_type_propylene_glycol_402021-09-21 09:57:47True
fluid_type_propylene_glycol_50test_plant_loop_mixed_water_loop.pytest_fluid_type_propylene_glycol_502021-09-21 09:58:24True
fluid_type_propylene_glycol_60test_plant_loop_mixed_water_loop.pytest_fluid_type_propylene_glycol_602021-09-21 09:58:54True
fluid_type_watertest_plant_loop_mixed_water_loop.pytest_fluid_type_water2021-09-21 09:59:23True
hot_water_plant_operation_scheme_typetest_plant_loop_mixed_water_loop.pytest_operation_scheme_type2021-09-21 10:03:50False
load_distribution_scheme_nonetest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_none2021-09-21 09:59:54True
load_distribution_scheme_optimaltest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_optimal2021-09-21 10:00:26True
load_distribution_scheme_sequential_loadtest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_sequential_load2021-09-21 10:00:59True
load_distribution_scheme_sequential_uniform_plrtest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_sequential_uniform_plr2021-09-21 10:01:29True
load_distribution_scheme_uniform_loadtest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_uniform_load2021-09-21 10:02:01True
load_distribution_scheme_uniform_plrtest_plant_loop_mixed_water_loop.pytest_load_distribution_scheme_uniform_plr2021-09-21 10:02:31True
loop_design_delta_temperaturetest_plant_loop_mixed_water_loop.pytest_loop_design_delta_temperature2021-09-21 10:03:01True
pump_control_type_continuoustest_plant_loop_mixed_water_loop.pytest_pump_control_type_continuous2021-09-21 10:04:21True
pump_control_type_intermittenttest_plant_loop_mixed_water_loop.pytest_pump_control_type_intermittent2021-09-21 10:04:53True
pump_schedule_nametest_plant_loop_mixed_water_loop.pytest_pump_schedule_name2021-09-21 10:05:23True
supply_side_bypass_pipe_notest_plant_loop_mixed_water_loop.pytest_supply_side_bypass_pipe_no2021-09-21 10:06:25True
supply_side_bypass_pipe_yestest_plant_loop_mixed_water_loop.pytest_supply_side_bypass_pipe_yes2021-09-21 10:07:26True
water_pump_configuration_variable_flowtest_plant_loop_mixed_water_loop.pytest_water_pump_configuration_constant_flow2021-09-21 10:07:57True
water_pump_configuration_variable_flowtest_plant_loop_mixed_water_loop.pytest_water_pump_configuration_variable_flow2021-09-21 10:08:29True
water_pump_rated_headtest_plant_loop_mixed_water_loop.pytest_water_pump_rated_head2021-09-21 10:09:01True
water_pump_type_five_headered_pumpstest_plant_loop_mixed_water_loop.pytest_water_pump_type_five_headered_pumps2021-09-21 10:09:34True
water_pump_type_five_headered_pumps_variabletest_plant_loop_mixed_water_loop.pytest_water_pump_type_five_headered_pumps_variable2021-09-21 10:10:05True
water_pump_type_four_headered_pumpstest_plant_loop_mixed_water_loop.pytest_water_pump_type_four_headered_pumps2021-09-21 10:10:36True
water_pump_type_four_headered_pumps_variabletest_plant_loop_mixed_water_loop.pytest_water_pump_type_four_headered_pumps_variable2021-09-21 10:11:08True
water_pump_type_pump_per_tower_or_boilertest_plant_loop_mixed_water_loop.pytest_water_pump_type_pump_per_tower_or_boiler2021-09-21 10:11:39True
water_pump_type_pump_per_tower_or_boilertest_plant_loop_mixed_water_loop.pytest_water_pump_type_pump_per_tower_or_boiler_variable2021-09-21 10:12:11True
water_pump_type_single_pumptest_plant_loop_mixed_water_loop.pytest_water_pump_type_single_pump2021-09-21 10:12:42True
water_pump_type_single_pump_variabletest_plant_loop_mixed_water_loop.pytest_water_pump_type_single_pump_variable2021-09-21 10:13:15True
water_pump_type_three_headered_pumpstest_plant_loop_mixed_water_loop.pytest_water_pump_type_three_headered_pumps2021-09-21 10:13:45True
water_pump_type_three_headered_pumps_variabletest_plant_loop_mixed_water_loop.pytest_water_pump_type_three_headered_pumps_variable2021-09-21 10:14:19True
water_pump_type_two_headered_pumpstest_plant_loop_mixed_water_loop.pytest_water_pump_type_two_headered_pumps2021-09-21 10:14:50True
water_pump_type_two_headered_pumps_variabletest_plant_loop_mixed_water_loop.pytest_water_pump_type_two_headered_pumps_variable2021-09-21 10:15:23True
+

Simulation : System : ConstantVolume

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_constant_volume.pytest_cooling_coil_availability_schedule_name2021-09-21 10:15:57True
cooling_coil_design_setpoint_temperaturetest_system_constant_volume.pytest_cooling_coil_design_setpoint_temperature2021-09-21 10:16:30True
cooling_coil_outdoor_reset_inputstest_system_constant_volume.pytest_cooling_coil_outdoor_reset_inputs2021-09-21 10:17:04True
cooling_coil_setpoint_schedule_nametest_system_constant_volume.pytest_cooling_coil_setpoint_schedule_name2021-09-21 10:17:39True
cooling_coil_type_chilled_watertest_system_constant_volume.pytest_cooling_coil_type_chilled_water2021-09-21 10:18:12True
cooling_coil_type_chilled_water_blow_through_heat_exchanger_assisted_chilled_watertest_system_constant_volume.pytest_cooling_coil_type_chilled_water_heat_exchanger_assisted_chilled_water_blow_through2021-09-21 10:19:57True
cooling_coil_type_chilled_water_detailed_flat_modeltest_system_constant_volume.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 10:18:46True
cooling_coil_type_chilled_water_heat_exchanger_assisted_chilled_watertest_system_constant_volume.pytest_cooling_coil_type_chilled_water_heat_exchanger_assisted_chilled_water2021-09-21 10:19:21True
cooling_coil_type_none_blow_throughtest_system_constant_volume.pytest_cooling_coil_type_none_blow_through2021-09-21 10:20:16False
cooling_coil_type_none_draw_throughtest_system_constant_volume.pytest_cooling_coil_type_none_draw_through2021-09-21 10:20:50True
dehumidification_control_typetest_system_constant_volume.pytest_dehumidification_control_type2021-09-21 10:21:24True
dehumidification_relative_humidity_setpoint_schedule_nametest_system_constant_volume.pytest_dehumidification_relative_humidity_setpoint_schedule_name2021-09-21 10:21:59True
economizer_lower_temperature_limittest_system_constant_volume.pytest_economizer_lower_temperature_limit2021-09-21 10:22:33True
economizer_maximum_limit_dewpoint_temperaturetest_system_constant_volume.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 10:23:06True
economizer_type_differential_dry_bulbtest_system_constant_volume.pytest_economizer_type_differential_dry_bulb2021-09-21 10:23:43True
economizer_type_differential_dry_bulb_and_enthalpytest_system_constant_volume.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 10:24:17True
economizer_type_differential_enthalpytest_system_constant_volume.pytest_economizer_type_differential_enthalpy2021-09-21 10:24:49True
economizer_type_electronic_enthalpytest_system_constant_volume.pytest_economizer_type_electronic_enthalpy2021-09-21 10:25:22True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_constant_volume.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 10:26:00True
economizer_type_fixed_dry_bulbtest_system_constant_volume.pytest_economizer_type_fixed_dry_bulb2021-09-21 10:26:34True
economizer_type_fixed_enthalpytest_system_constant_volume.pytest_economizer_type_fixed_enthalpy2021-09-21 10:27:10True
economizer_type_no_economizertest_system_constant_volume.pytest_economizer_type_no_economizer2021-09-21 10:27:50True
economizer_upper_enthalpy_limittest_system_constant_volume.pytest_economizer_upper_enthalpy_limit2021-09-21 10:28:26True
economizer_upper_temperature_limittest_system_constant_volume.pytest_economizer_upper_temperature_limit2021-09-21 10:29:02True
gas_heating_coil_inputstest_system_constant_volume.pytest_gas_heating_coil_inputs2021-09-21 10:29:36True
gas_preheat_inputstest_system_constant_volume.pytest_gas_preheat_inputs2021-09-21 10:30:09True
heat_recovery_effectivenesstest_system_constant_volume.pytest_heat_recovery_effectiveness2021-09-21 10:30:42True
heat_recovery_enthalpytest_system_constant_volume.pytest_heat_recovery_enthalpy2021-09-21 10:31:16True
heat_recovery_exchanger_type_platetest_system_constant_volume.pytest_heat_recovery_exchanger_type_plate2021-09-21 10:31:51True
heat_recovery_exchanger_type_rotarytest_system_constant_volume.pytest_heat_recovery_exchanger_type_rotary2021-09-21 10:32:25True
heat_recovery_frost_control_type_nonetest_system_constant_volume.pytest_heat_recovery_frost_control_type_none2021-09-21 10:34:52True
heat_recovery_frost_control_typeexhaust_air_recirculationtest_system_constant_volume.pytest_heat_recovery_frost_control_type_exhaust_air_recirculation2021-09-21 10:33:07True
heat_recovery_frost_control_typeexhaust_onlytest_system_constant_volume.pytest_heat_recovery_frost_control_type_exhaust_only2021-09-21 10:33:40True
heat_recovery_frost_control_typeminimum_exhaust_temperaturetest_system_constant_volume.pytest_heat_recovery_frost_control_type_minimum_exhaust_temperature2021-09-21 10:34:18True
heat_recovery_nonetest_system_dual_duct.pytest_heat_recovery_type_none2021-09-21 12:20:34True
heat_recovery_sensibletest_system_constant_volume.pytest_heat_recovery_sensible2021-09-21 10:35:28True
heat_recovery_sensibletest_system_dual_duct.pytest_heat_recovery_type_enthalpy2021-09-21 12:19:59True
heat_recovery_sensibletest_system_dual_duct.pytest_heat_recovery_type_sensible2021-09-21 12:21:06True
heating_coil_availability_schedule_nametest_system_constant_volume.pytest_heating_coil_availability_schedule_name2021-09-21 10:36:03True
heating_coil_capacitytest_system_constant_volume.pytest_heating_coil_design_capacity2021-09-21 10:36:36True
heating_coil_design_setpointtest_system_constant_volume.pytest_heating_coil_design_setpoint2021-09-21 10:37:12True
heating_coil_outdoor_reset_inputstest_system_constant_volume.pytest_heating_coil_outdoor_reset_inputs2021-09-21 10:37:44True
heating_coil_setpoint_schedule_nametest_system_constant_volume.pytest_heating_coil_setpoint_schedule_name2021-09-21 10:38:17True
heating_coil_type_electrictest_system_constant_volume.pytest_heating_coil_type_electric2021-09-21 10:38:51True
heating_coil_type_gastest_system_constant_volume.pytest_heating_coil_type_gas2021-09-21 10:39:26True
heating_coil_type_hot_watertest_system_constant_volume.pytest_heating_coil_type_hot_water2021-09-21 10:40:00True
humidification_and_dehumidificationtest_system_constant_volume.pytest_humidification_and_dehumidification2021-09-21 10:40:21False
humidifier_inputstest_system_constant_volume.pytest_humidifier_inputs2021-09-21 10:40:56True
humidifier_relative_humidity_setpoint_schedule_nametest_system_constant_volume.pytest_humidifier_relative_humidity_setpoint_schedule_name2021-09-21 10:41:28True
humidifier_typetest_system_constant_volume.pytest_humidifier_type2021-09-21 10:42:01True
minimum_inputstest_system_constant_volume.pytest_minimum_inputs2021-09-21 10:42:22False
minimum_inputstest_system_packaged_vav.pytest_minimum_inputs2021-09-21 13:25:36False
minimum_outdoor_air_schedule_nametest_system_constant_volume.pytest_minimum_outdoor_air_schedule_name2021-09-21 10:42:57True
night_cycle_control_cycle_on_anytest_system_constant_volume.pytest_night_cycle_control_cycle_on_any2021-09-21 10:43:29True
night_cycle_control_cycle_on_any_zone_fans_onlytest_system_constant_volume.pytest_night_cycle_control_cycle_on_any_zone_fans_only2021-09-21 10:44:02True
night_cycle_control_cycle_on_control_zonetest_system_constant_volume.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 10:44:36True
night_cycle_control_stay_offtest_system_constant_volume.pytest_night_cycle_control_stay_off2021-09-21 10:45:09True
outdoor_air_flow_ratestest_system_constant_volume.pytest_outdoor_air_flow_rates2021-09-21 10:45:43True
preheat_coil_availability_schedule_nametest_system_constant_volume.pytest_preheat_coil_availability_schedule_name2021-09-21 10:46:19True
preheat_coil_design_setpointtest_system_constant_volume.pytest_preheat_coil_design_setpoint2021-09-21 10:46:54True
preheat_coil_setpoint_schedule_nametest_system_constant_volume.pytest_preheat_coil_setpoint_schedule_name2021-09-21 10:47:26True
preheat_coil_type_electrictest_system_constant_volume.pytest_preheat_coil_type_electric2021-09-21 10:48:01True
preheat_coil_type_electrictest_system_constant_volume.pytest_preheat_coil_type_gas2021-09-21 10:49:47True
preheat_coil_type_electric_heat_recovery_enthalpytest_system_constant_volume.pytest_preheat_coil_type_electric_heat_recovery_enthalpy2021-09-21 10:48:38True
preheat_coil_type_electric_heat_recovery_sensibletest_system_constant_volume.pytest_preheat_coil_type_electric_heat_recovery_sensible2021-09-21 10:49:11True
preheat_coil_type_gas_heat_recovery_enthalpytest_system_constant_volume.pytest_preheat_coil_type_gas_heat_recovery_enthalpy2021-09-21 10:50:20True
preheat_coil_type_gas_heat_recovery_sensibletest_system_constant_volume.pytest_preheat_coil_type_gas_heat_recovery_sensible2021-09-21 10:50:53True
preheat_coil_type_hot_watertest_system_constant_volume.pytest_preheat_coil_type_hot_water2021-09-21 10:51:26True
preheat_coil_type_hot_water_heat_recovery_enthalpytest_system_constant_volume.pytest_preheat_coil_type_hot_water_heat_recovery_enthalpy2021-09-21 10:52:01True
preheat_coil_type_hot_water_heat_recovery_sensibletest_system_constant_volume.pytest_preheat_coil_type_hot_water_heat_recovery_sensible2021-09-21 10:52:43True
preheat_coil_type_none_heat_recovery_enthalpytest_system_constant_volume.pytest_preheat_coil_type_none_heat_recovery_enthalpy2021-09-21 10:53:21True
preheat_coil_type_none_heat_recovery_sensibletest_system_constant_volume.pytest_preheat_coil_type_none_heat_recovery_sensible2021-09-21 10:53:57True
return_fan_inputstest_system_constant_volume.pytest_return_fan_inputs2021-09-21 10:54:29True
return_fan_notest_system_constant_volume.pytest_return_fan_no2021-09-21 10:55:02True
return_fan_yestest_system_constant_volume.pytest_return_fan_yes2021-09-21 10:55:37True
return_plenum_nametest_system_constant_volume.pytest_return_plenum_name2021-09-21 10:56:09True
supply_fan_delta_pressuretest_system_constant_volume.pytest_supply_fan_delta_pressure2021-09-21 10:56:43True
supply_fan_maximum_flow_ratetest_system_constant_volume.pytest_supply_fan_maximum_flow_rate2021-09-21 10:57:16True
supply_fan_motor_efficiencytest_system_constant_volume.pytest_supply_fan_motor_efficiency2021-09-21 10:57:49True
supply_fan_motor_in_air_stream_fractiontest_system_constant_volume.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 10:58:25True
supply_fan_placement_blow_through_cooling_control_zonetest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_control_zone2021-09-21 10:58:58True
supply_fan_placement_blow_through_cooling_control_zone_no_heatingtest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_control_zone_no_heating2021-09-21 10:59:35False
supply_fan_placement_blow_through_cooling_outdoor_air_temperature_resettest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_outdoor_air_temperature_reset2021-09-21 11:00:47True
supply_fan_placement_blow_through_cooling_scheduledtest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_scheduled2021-09-21 11:01:19True
supply_fan_placement_blow_through_cooling_warmesttest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_warmest2021-09-21 11:01:56True
supply_fan_placement_blow_through_economizer_type_fixed_dry_bulbtest_system_constant_volume.pytest_supply_fan_placement_blow_through_economizer_type_fixed_dry_bulb2021-09-21 11:02:33True
supply_fan_placement_blow_through_economizer_type_fixed_dry_bulbtest_system_constant_volume.pytest_supply_fan_placement_draw_through_economizer_type_fixed_dry_bulb2021-09-21 11:09:10True
supply_fan_placement_blow_through_economizer_type_no_economizertest_system_constant_volume.pytest_supply_fan_placement_blow_through_economizer_type_no_economizer2021-09-21 11:03:10True
supply_fan_placement_blow_through_economizer_type_no_economizertest_system_constant_volume.pytest_supply_fan_placement_draw_through_economizer_type_no_economizer2021-09-21 11:09:45True
supply_fan_placement_blow_through_heating_outdoor_air_temperature_resettest_system_constant_volume.pytest_supply_fan_placement_blow_through_heating_control_outdoor_air_temperature_reset2021-09-21 11:04:07True
supply_fan_placement_blow_through_heating_scheduledtest_system_constant_volume.pytest_supply_fan_placement_blow_through_heating_scheduled2021-09-21 11:05:14True
supply_fan_placement_draw_through_cooling_control_zonetest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_control_zone2021-09-21 11:05:52True
supply_fan_placement_draw_through_cooling_control_zone_no_heatingtest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_control_zone_no_heating2021-09-21 11:06:24False
supply_fan_placement_draw_through_cooling_fixed_setpointtest_system_constant_volume.pytest_supply_fan_placement_blow_through_cooling_fixed_setpoint2021-09-21 11:00:12True
supply_fan_placement_draw_through_cooling_fixed_setpointtest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_fixed_setpoint2021-09-21 11:06:57True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_resettest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset2021-09-21 11:07:31True
supply_fan_placement_draw_through_cooling_scheduledtest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_scheduled2021-09-21 11:08:04True
supply_fan_placement_draw_through_cooling_warmesttest_system_constant_volume.pytest_supply_fan_placement_draw_through_cooling_warmest2021-09-21 11:08:36True
supply_fan_placement_draw_through_heating_control_zonetest_system_constant_volume.pytest_supply_fan_placement_blow_through_heating_control_zone2021-09-21 11:04:42True
supply_fan_placement_draw_through_heating_control_zonetest_system_constant_volume.pytest_supply_fan_placement_draw_through_heating_control_zone2021-09-21 11:11:23True
supply_fan_placement_draw_through_heating_outdoor_air_temperature_resettest_system_constant_volume.pytest_supply_fan_placement_draw_through_heating_control_outdoor_air_temperature_reset2021-09-21 11:10:50True
supply_fan_placement_draw_through_heating_scheduledtest_system_constant_volume.pytest_supply_fan_placement_draw_through_heating_scheduled2021-09-21 11:12:02True
supply_fan_total_efficiencytest_system_constant_volume.pytest_supply_fan_total_efficiency2021-09-21 11:12:37True
supply_plenum_nametest_system_constant_volume.pytest_supply_plenum_name2021-09-21 11:13:15True
system_availability_schedule_nametest_system_constant_volume.pytest_system_availability_schedule_name2021-09-21 11:13:50True
+

Simulation : System : DedicatedOutdoorAir

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_dedicated_outdoor_air.pytest_cooling_coil_availability_schedule_name2021-09-21 11:14:24True
cooling_coil_design_setpointtest_system_dedicated_outdoor_air.pytest_cooling_coil_design_setpoint2021-09-21 11:14:59True
cooling_coil_outdoor_reset_inputstest_system_dedicated_outdoor_air.pytest_cooling_coil_outdoor_reset_inputs2021-09-21 11:15:29True
cooling_coil_setpoint_schedule_nametest_system_dedicated_outdoor_air.pytest_cooling_coil_setpoint_schedule_name2021-09-21 11:15:59True
cooling_coil_type_chilled_watertest_system_dedicated_outdoor_air.pytest_cooling_coil_type_chilled_water2021-09-21 11:16:34True
cooling_coil_type_chilled_water_detailed_flat_modeltest_system_dedicated_outdoor_air.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 11:17:09True
cooling_coil_type_heat_exchanger_assisted_chilled_watertest_system_dedicated_outdoor_air.pytest_cooling_coil_type_heat_exchanger_assisted_chilled_water2021-09-21 11:17:41True
cooling_coil_type_heat_exchanger_assisted_dxtest_system_dedicated_outdoor_air.pytest_cooling_coil_type_heat_exchanger_assisted_dx2021-09-21 11:18:01False
cooling_coil_type_nonetest_system_dedicated_outdoor_air.pytest_cooling_coil_type_none2021-09-21 11:18:33True
cooling_coil_type_two_speed_dxtest_system_dedicated_outdoor_air.pytest_cooling_coil_type_two_speed_dx2021-09-21 11:19:03True
cooling_coil_type_two_stage_dxtest_system_dedicated_outdoor_air.pytest_cooling_coil_type_two_stage_dx2021-09-21 11:19:33True
cooling_coil_type_two_stage_humidity_control_dxtest_system_dedicated_outdoor_air.pytest_cooling_coil_type_two_stage_humidity_control_dx2021-09-21 11:20:02True
dehumidification_control_type_cool_reheat_desuperheatertest_system_dedicated_outdoor_air.pytest_dehumidification_control_type_cool_reheat_desuperheater2021-09-21 11:20:25True
dehumidification_control_type_cool_reheat_heating_coiltest_system_dedicated_outdoor_air.pytest_dehumidification_control_type_cool_reheat_heating_coil2021-09-21 11:20:57True
dehumidification_control_type_nonetest_system_dedicated_outdoor_air.pytest_dehumidification_control_type_none2021-09-21 11:21:28True
dehumidification_setpointtest_system_dedicated_outdoor_air.pytest_dehumidification_setpoint2021-09-21 11:21:58True
dx_cooling_coil_gross_rated_coptest_system_dedicated_outdoor_air.pytest_dx_cooling_coil_gross_rated_cop2021-09-21 11:22:27True
dx_cooling_coil_gross_rated_sensible_heat_ratiotest_system_dedicated_outdoor_air.pytest_dx_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 11:22:58True
dx_cooling_coil_gross_rated_sensible_heat_ratiotest_system_dedicated_outdoor_air.pytest_dx_cooling_coil_gross_rated_sensible_heat_ratio_with_humidity_control2021-09-21 11:23:28True
dx_cooling_coil_gross_rated_total_capacitytest_system_dedicated_outdoor_air.pytest_dx_cooling_coil_gross_rated_total_capacity2021-09-21 11:23:58True
gas_heating_coil_inputstest_system_dedicated_outdoor_air.pytest_gas_heating_coil_inputs2021-09-21 11:24:30True
heat_recovery_effectivenesstest_system_dedicated_outdoor_air.pytest_heat_recovery_effectiveness2021-09-21 11:25:03True
heat_recovery_enthalpytest_system_dedicated_outdoor_air.pytest_heat_recovery_enthalpy2021-09-21 11:25:35True
heat_recovery_enthalpy_draw_throughtest_system_dedicated_outdoor_air.pytest_heat_recovery_enthalpy_draw_through2021-09-21 11:26:06True
heat_recovery_exchanger_type_platetest_system_dedicated_outdoor_air.pytest_heat_recovery_exchanger_type_plate2021-09-21 11:26:38True
heat_recovery_exchanger_type_rotarytest_system_dedicated_outdoor_air.pytest_heat_recovery_exchanger_type_rotary2021-09-21 11:27:08True
heat_recovery_frost_control_type_nonetest_system_dedicated_outdoor_air.pytest_heat_recovery_frost_control_type_none2021-09-21 11:29:12True
heat_recovery_frost_control_typeexhaust_air_recirculationtest_system_dedicated_outdoor_air.pytest_heat_recovery_frost_control_type_exhaust_air_recirculation2021-09-21 11:27:39True
heat_recovery_frost_control_typeexhaust_onlytest_system_dedicated_outdoor_air.pytest_heat_recovery_frost_control_type_exhaust_only2021-09-21 11:28:09True
heat_recovery_frost_control_typeminimum_exhaust_temperaturetest_system_dedicated_outdoor_air.pytest_heat_recovery_frost_control_type_minimum_exhaust_temperature2021-09-21 11:28:40True
heat_recovery_nonetest_system_dedicated_outdoor_air.pytest_heat_recovery_none2021-09-21 11:29:43True
heat_recovery_sensibletest_system_dedicated_outdoor_air.pytest_heat_recovery_sensible2021-09-21 11:30:16True
heat_recovery_sensible_draw_throughtest_system_dedicated_outdoor_air.pytest_heat_recovery_sensible_draw_through2021-09-21 11:30:48True
heating_coil_availability_schedule_nametest_system_dedicated_outdoor_air.pytest_heating_coil_availability_schedule_name2021-09-21 11:31:17True
heating_coil_design_setpointtest_system_dedicated_outdoor_air.pytest_heating_coil_design_setpoint2021-09-21 11:31:47True
heating_coil_outdoor_reset_inputstest_system_dedicated_outdoor_air.pytest_heating_coil_outdoor_reset_inputs2021-09-21 11:32:16True
heating_coil_setpoint_schedule_nametest_system_dedicated_outdoor_air.pytest_heating_coil_setpoint_schedule_name2021-09-21 11:32:46True
heating_coil_type_electrictest_system_dedicated_outdoor_air.pytest_heating_coil_type_electric2021-09-21 11:33:15True
heating_coil_type_gastest_system_dedicated_outdoor_air.pytest_heating_coil_type_gas2021-09-21 11:33:45True
heating_coil_type_hot_watertest_system_dedicated_outdoor_air.pytest_heating_coil_type_hot_water2021-09-21 11:34:18True
heating_coil_type_nonetest_system_dedicated_outdoor_air.pytest_heating_coil_type_none2021-09-21 11:34:52False
humidifier_inputstest_system_dedicated_outdoor_air.pytest_humidifier_inputs2021-09-21 11:35:21True
humidifier_typetest_system_dedicated_outdoor_air.pytest_humidifier_type2021-09-21 11:35:53True
supply_fan_flow_ratetest_system_dedicated_outdoor_air.pytest_supply_fan_flow_rate2021-09-21 11:36:58True
supply_fan_inputstest_system_dedicated_outdoor_air.pytest_supply_fan_inputs2021-09-21 11:37:27True
supply_fan_placement_blow_through_cooling_fixed_setpointtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_cooling_fixed_setpoint2021-09-21 11:37:57True
supply_fan_placement_blow_through_cooling_outdoor_air_temperature_resettest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_cooling_outdoor_air_temperature_reset2021-09-21 11:38:26True
supply_fan_placement_blow_through_cooling_scheduledtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_cooling_scheduled2021-09-21 11:38:56True
supply_fan_placement_blow_through_heating_fixed_setpointtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_heating_fixed_setpoint2021-09-21 11:39:27True
supply_fan_placement_blow_through_heating_outdoor_air_temperature_resettest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_heating_outdoor_air_temperature_reset2021-09-21 11:39:59True
supply_fan_placement_blow_through_heating_scheduledtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_blow_through_heating_scheduled2021-09-21 11:40:28True
supply_fan_placement_draw_through_cooling_fixed_setpointtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_cooling_fixed_setpoint2021-09-21 11:41:06True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_resettest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset2021-09-21 11:41:38True
supply_fan_placement_draw_through_cooling_scheduledtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_cooling_scheduled2021-09-21 11:42:09True
supply_fan_placement_draw_through_heating_fixed_setpointtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_heating_fixed_setpoint2021-09-21 11:42:40True
supply_fan_placement_draw_through_heating_outdoor_air_temperature_resettest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_heating_outdoor_air_temperature_reset2021-09-21 11:43:11True
supply_fan_placement_draw_through_heating_scheduledtest_system_dedicated_outdoor_air.pytest_supply_fan_placement_draw_through_heating_scheduled2021-09-21 11:43:42True
system_availability_schedule_nametest_system_dedicated_outdoor_air.pytest_system_availability_schedule_name2021-09-21 11:44:13True
test_minimum_inputstest_system_dedicated_outdoor_air.pytest_minimum_inputs2021-09-21 11:36:25True
+

Simulation : System : DualDuct

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cold_and_hot_supply_plenum_nametest_system_dual_duct.pytest_cold_and_hot_supply_plenum_name2021-09-21 11:44:47True
cold_duct_supply_fan_delta_pressuretest_system_dual_duct.pytest_cold_duct_supply_fan_delta_pressure2021-09-21 11:45:21True
cold_duct_supply_fan_maximum_flow_rate_constant_volumetest_system_dual_duct.pytest_cold_duct_supply_fan_maximum_flow_rate_constant_volume2021-09-21 11:45:54False
cold_duct_supply_fan_maximum_flow_rate_variable_volumetest_system_dual_duct.pytest_cold_duct_supply_fan_maximum_flow_rate_variable_volume2021-09-21 11:46:30False
cold_duct_supply_fan_minimum_flow_fraction_variable_volumetest_system_dual_duct.pytest_cold_duct_supply_fan_minimum_flow_fraction_variable_volume2021-09-21 11:47:02True
cold_duct_supply_fan_motor_efficiencytest_system_dual_duct.pytest_cold_duct_supply_fan_motor_efficiency2021-09-21 11:47:34True
cold_duct_supply_fan_motor_in_air_stream_fractiontest_system_dual_duct.pytest_cold_duct_supply_fan_motor_in_air_stream_fraction2021-09-21 11:48:08True
cold_duct_supply_fan_part_load_power_coefficients_ashrae_appendix_gtest_system_dual_duct.pytest_cold_duct_supply_fan_part_load_power_coefficients_ashrae_appendix_g2021-09-21 11:48:48True
cold_duct_supply_fan_part_load_power_coefficients_inlet_vane_damperstest_system_dual_duct.pytest_cold_duct_supply_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 11:49:26True
cold_duct_supply_fan_part_load_power_coefficients_outlet_damperstest_system_dual_duct.pytest_cold_duct_supply_fan_part_load_power_coefficients_outlet_dampers2021-09-21 11:49:58True
cold_duct_supply_fan_part_load_power_coefficients_variable_speed_motortest_system_dual_duct.pytest_cold_duct_supply_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 11:50:31True
cold_duct_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_resettest_system_dual_duct.pytest_cold_duct_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 11:51:04True
cold_duct_supply_fan_placement_blow_through_constanttest_system_dual_duct.pytest_cold_duct_supply_fan_placement_blow_through_constant2021-09-21 11:51:36True
cold_duct_supply_fan_placement_blow_through_variabletest_system_dual_duct.pytest_cold_duct_supply_fan_placement_blow_through_variable2021-09-21 11:52:09True
cold_duct_supply_fan_placement_draw_through_constanttest_system_dual_duct.pytest_cold_duct_supply_fan_placement_draw_through_constant2021-09-21 11:52:40True
cold_duct_supply_fan_placement_draw_through_variabletest_system_dual_duct.pytest_cold_duct_supply_fan_placement_draw_through_variable2021-09-21 11:53:13True
cold_duct_supply_fan_total_efficiencytest_system_dual_duct.pytest_cold_duct_supply_fan_total_efficiency2021-09-21 11:53:44True
cold_supply_plenum_nametest_system_dual_duct.pytest_cold_supply_plenum_name2021-09-21 11:54:15True
cooling_coil_availability_schedule_nametest_system_dual_duct.pytest_cooling_coil_availability_schedule_name2021-09-21 11:54:46True
cooling_coil_design_setpoint_temperaturetest_system_dual_duct.pytest_cooling_coil_design_setpoint_temperature2021-09-21 11:55:18True
cooling_coil_outdoor_reset_inputstest_system_dual_duct.pytest_cooling_coil_outdoor_reset_inputs2021-09-21 11:55:50True
cooling_coil_setpoint_control_type_fixed_setpoint_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_fixed_setpoint_dual_blow_through2021-09-21 11:56:24True
cooling_coil_setpoint_control_type_fixed_setpoint_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_fixed_setpoint_dual_draw_through2021-09-21 11:57:02True
cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_dual_fan_blow_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_dual_blow_through2021-09-21 11:58:09True
cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_dual_fan_blow_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_single2021-09-21 11:59:12True
cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_outdoor_air_temperature_reset_dual_draw_through2021-09-21 11:58:41True
cooling_coil_setpoint_control_type_scheduled_dual_fan_blow_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_scheduled_dual_blow_through2021-09-21 11:59:46True
cooling_coil_setpoint_control_type_scheduled_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_scheduled_dual_draw_through2021-09-21 12:00:22True
cooling_coil_setpoint_control_type_scheduled_singletest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_scheduled_single2021-09-21 12:00:53True
cooling_coil_setpoint_control_type_warmest_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_warmest_dual_blow_through2021-09-21 12:01:27True
cooling_coil_setpoint_control_type_warmest_dual_fan_draw_throughtest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_warmest_dual_draw_through2021-09-21 12:01:59True
cooling_coil_setpoint_control_type_warmest_singletest_system_dual_duct.pytest_cooling_coil_setpoint_control_type_warmest_single2021-09-21 12:02:30True
cooling_coil_setpoint_schedule_nametest_system_dual_duct.pytest_cooling_coil_setpoint_schedule_name2021-09-21 12:03:04True
cooling_coil_type_chilled_watertest_system_dual_duct.pytest_cooling_coil_type_chilled_water2021-09-21 12:03:36True
cooling_coil_type_chilled_water_detailed_flat_modeltest_system_dual_duct.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 12:04:13True
cooling_coil_type_nonetest_system_dual_duct.pytest_cooling_coil_type_none2021-09-21 12:04:36False
cooling_coil_warmest_temperaturetest_system_dual_duct.pytest_cooling_coil_warmest_temperature2021-09-21 12:05:11True
cycle_on_control_zonetest_system_dual_duct.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 12:50:22True
dehumidification_control_type_cool_reheattest_system_dual_duct.pytest_dehumidification_control_type_cool_reheat2021-09-21 12:05:49True
dehumidification_control_type_cool_reheattest_system_dual_duct.pytest_dehumidification_relative_humidity_setpoint_schedule_name2021-09-21 12:06:55True
dehumidification_control_type_nonetest_system_dual_duct.pytest_dehumidification_control_type_none2021-09-21 12:06:24True
economizer_lower_temperature_limittest_system_dual_duct.pytest_economizer_lower_temperature_limit2021-09-21 12:07:27True
economizer_maximum_limit_dewpoint_temperaturetest_system_dual_duct.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 12:08:02True
economizer_type_differential_dry_bulbtest_system_dual_duct.pytest_economizer_type_differential_dry_bulb2021-09-21 12:08:37True
economizer_type_differential_dry_bulb_and_enthalpytest_system_dual_duct.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 12:09:10True
economizer_type_differential_enthalpytest_system_dual_duct.pytest_economizer_type_differential_enthalpy2021-09-21 12:09:43True
economizer_type_electronic_enthalpytest_system_dual_duct.pytest_economizer_type_electronic_enthalpy2021-09-21 12:10:14True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_dual_duct.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 12:10:47True
economizer_type_fixed_dry_bulbtest_system_dual_duct.pytest_economizer_type_fixed_dry_bulb2021-09-21 12:11:18True
economizer_type_fixed_enthalpytest_system_dual_duct.pytest_economizer_type_fixed_enthalpy2021-09-21 12:11:52True
economizer_type_no_economizertest_system_dual_duct.pytest_economizer_type_no_economizer2021-09-21 12:12:23True
economizer_upper_enthalpy_limittest_system_dual_duct.pytest_economizer_upper_enthalpy_limit2021-09-21 12:12:54True
economizer_upper_temperature_limittest_system_dual_duct.pytest_economizer_upper_temperature_limit2021-09-21 12:13:26True
gas_heating_coil_inputstest_system_dual_duct.pytest_gas_heating_coil_inputs2021-09-21 12:13:56True
gas_preheat_inputstest_system_dual_duct.pytest_gas_preheat_inputs2021-09-21 12:14:31True
heat_recovery_effectiveness_enthalpytest_system_dual_duct.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 12:15:06True
heat_recovery_effectiveness_sensibletest_system_dual_duct.pytest_heat_recovery_effectiveness_sensible2021-09-21 12:15:37True
heat_recovery_exchanger_type_plate_enthalpytest_system_dual_duct.pytest_heat_recovery_exchanger_type_plate_enthalpy2021-09-21 12:16:09True
heat_recovery_exchanger_type_plate_sensibletest_system_dual_duct.pytest_heat_recovery_exchanger_type_plate_sensible2021-09-21 12:16:42True
heat_recovery_exchanger_type_rotarytest_system_dual_duct.pytest_heat_recovery_exchanger_type_rotary2021-09-21 12:17:14True
heat_recovery_frost_control_type_exhaust_air_recirculation_enthalpytest_system_dual_duct.pytest_heat_recovery_frost_control_type_exhaust_air_recirculation_enthalpy2021-09-21 12:17:45True
heat_recovery_frost_control_type_exhaust_air_recirculation_sensibletest_system_dual_duct.pytest_heat_recovery_frost_control_type_exhaust_air_recirculation_sensible2021-09-21 12:18:21True
heat_recovery_frost_control_type_nonetest_system_dual_duct.pytest_heat_recovery_frost_control_type_none_enthalpy2021-09-21 12:18:54True
heat_recovery_frost_control_type_nonetest_system_dual_duct.pytest_heat_recovery_frost_control_type_none_sensible2021-09-21 12:19:28True
heating_coil_availability_schedule_nametest_system_dual_duct.pytest_heating_coil_availability_schedule_name2021-09-21 12:21:37True
heating_coil_capacitytest_system_dual_duct.pytest_heating_coil_capacity2021-09-21 12:22:12True
heating_coil_design_setpointtest_system_dual_duct.pytest_heating_coil_design_setpoint2021-09-21 12:22:47True
heating_coil_outdoor_reset_inputstest_system_dual_duct.pytest_heating_coil_outdoor_reset_inputs2021-09-21 12:23:23True
heating_coil_setpoint_control_type_fixed_setpoint_blow_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_fixed_setpoint_blow_through2021-09-21 12:23:59True
heating_coil_setpoint_control_type_fixed_setpoint_draw_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_fixed_setpoint_draw_through2021-09-21 12:24:32True
heating_coil_setpoint_control_type_outdoor_air_temperature_reset_blow_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_outdoor_air_temperature_reset_blow_through2021-09-21 12:25:05True
heating_coil_setpoint_control_type_outdoor_air_temperature_reset_draw_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_outdoor_air_temperature_reset_draw_through2021-09-21 12:25:38True
heating_coil_setpoint_control_type_scheduled_blow_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_scheduled_blow_through2021-09-21 12:26:10True
heating_coil_setpoint_control_type_scheduled_draw_throughtest_system_dual_duct.pytest_heating_coil_setpoint_control_type_scheduled_draw_through2021-09-21 12:26:43True
heating_coil_setpoint_schedule_nametest_system_dual_duct.pytest_heating_coil_setpoint_schedule_name2021-09-21 12:27:17True
heating_coil_type_electrictest_system_dual_duct.pytest_heating_coil_type_electric2021-09-21 12:27:50True
heating_coil_type_gastest_system_dual_duct.pytest_heating_coil_type_gas2021-09-21 12:28:21True
heating_coil_type_hot_watertest_system_dual_duct.pytest_heating_coil_type_hot_water2021-09-21 12:28:52True
heating_coil_type_nonetest_system_dual_duct.pytest_heating_coil_type_none2021-09-21 12:29:22False
hot_duct_supply_fan_delta_pressuretest_system_dual_duct.pytest_hot_duct_supply_fan_delta_pressure2021-09-21 12:29:54True
hot_duct_supply_fan_maximum_flow_rate_constant_volumetest_system_dual_duct.pytest_hot_duct_supply_fan_maximum_flow_rate_constant_volume2021-09-21 12:30:27False
hot_duct_supply_fan_maximum_flow_rate_variable_volumetest_system_dual_duct.pytest_hot_duct_supply_fan_maximum_flow_rate_variable_volume2021-09-21 12:31:01False
hot_duct_supply_fan_minimum_flow_fraction_variable_volumetest_system_dual_duct.pytest_hot_duct_supply_fan_minimum_flow_fraction_variable_volume2021-09-21 12:31:37True
hot_duct_supply_fan_motor_efficiencytest_system_dual_duct.pytest_hot_duct_supply_fan_motor_efficiency2021-09-21 12:32:13True
hot_duct_supply_fan_motor_in_air_stream_fractiontest_system_dual_duct.pytest_hot_duct_supply_fan_motor_in_air_stream_fraction2021-09-21 12:32:45True
hot_duct_supply_fan_part_load_power_coefficients_ashrae_appendix_gtest_system_dual_duct.pytest_hot_duct_supply_fan_part_load_power_coefficients_ashrae_appendix_g2021-09-21 12:33:16True
hot_duct_supply_fan_part_load_power_coefficients_inlet_vane_damperstest_system_dual_duct.pytest_hot_duct_supply_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 12:33:49True
hot_duct_supply_fan_part_load_power_coefficients_outlet_damperstest_system_dual_duct.pytest_hot_duct_supply_fan_part_load_power_coefficients_outlet_dampers2021-09-21 12:34:22True
hot_duct_supply_fan_part_load_power_coefficients_variable_speed_motortest_system_dual_duct.pytest_hot_duct_supply_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 12:34:57True
hot_duct_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_resettest_system_dual_duct.pytest_hot_duct_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 12:35:29True
hot_duct_supply_fan_placement_blow_through_constanttest_system_dual_duct.pytest_hot_duct_supply_fan_placement_blow_through_constant2021-09-21 12:36:00True
hot_duct_supply_fan_placement_blow_through_variabletest_system_dual_duct.pytest_hot_duct_supply_fan_placement_blow_through_variable2021-09-21 12:36:32True
hot_duct_supply_fan_placement_draw_through_constanttest_system_dual_duct.pytest_hot_duct_supply_fan_placement_draw_through_constant2021-09-21 12:37:04False
hot_duct_supply_fan_placement_draw_through_variabletest_system_dual_duct.pytest_hot_duct_supply_fan_placement_draw_through_variable2021-09-21 12:37:30False
hot_duct_supply_fan_total_efficiencytest_system_dual_duct.pytest_hot_duct_supply_fan_total_efficiency2021-09-21 12:38:01True
hot_supply_plenum_nametest_system_dual_duct.pytest_hot_supply_plenum_name2021-09-21 12:38:35True
humidifier_inputstest_system_dual_duct.pytest_humidifier_inputs2021-09-21 12:39:38True
humidifier_type_electric_steamtest_system_dual_duct.pytest_humidifier_availability_schedule_name2021-09-21 12:39:06True
humidifier_type_electric_steamtest_system_dual_duct.pytest_humidifier_type_electric_steam2021-09-21 12:40:14True
humidifier_type_nonetest_system_dual_duct.pytest_humidifier_type_none2021-09-21 12:40:47True
main_supply_fan_delta_pressuretest_system_dual_duct.pytest_main_supply_fan_delta_pressure2021-09-21 12:41:22True
main_supply_fan_delta_pressuretest_system_dual_duct.pytest_main_supply_fan_motor_efficiency2021-09-21 12:43:29True
main_supply_fan_maximum_flow_rate_constant_volumetest_system_dual_duct.pytest_main_supply_fan_maximum_flow_rate_constant_volume2021-09-21 12:41:53True
main_supply_fan_maximum_flow_rate_variable_volumetest_system_dual_duct.pytest_main_supply_fan_maximum_flow_rate_variable_volume2021-09-21 12:42:24True
main_supply_fan_minimum_flow_fraction_variable_volumetest_system_dual_duct.pytest_main_supply_fan_minimum_flow_fraction_variable_volume2021-09-21 12:42:55True
main_supply_fan_motor_in_air_stream_fractiontest_system_dual_duct.pytest_main_supply_fan_motor_in_air_stream_fraction2021-09-21 12:44:02True
main_supply_fan_part_load_power_coefficients_ashrae_appendix_gtest_system_dual_duct.pytest_main_supply_fan_part_load_power_coefficients_ashrae_appendix_g2021-09-21 12:44:33True
main_supply_fan_part_load_power_coefficients_inlet_vane_damperstest_system_dual_duct.pytest_main_supply_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 12:45:04True
main_supply_fan_part_load_power_coefficients_outlet_damperstest_system_dual_duct.pytest_main_supply_fan_part_load_power_coefficients_outlet_dampers2021-09-21 12:45:35True
main_supply_fan_part_load_power_coefficients_variable_speed_motortest_system_dual_duct.pytest_main_supply_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 12:46:11True
main_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_resettest_system_dual_duct.pytest_main_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 12:46:43True
main_supply_fan_total_efficiencytest_system_dual_duct.pytest_main_supply_fan_total_efficiency2021-09-21 12:47:14True
minimum_inputstest_system_dual_duct.pytest_minimum_inputs2021-09-21 12:47:36False
minimum_outdoor_air_control_type_fixed_minimumtest_system_dual_duct.pytest_minimum_outdoor_air_control_type_fixed_minimum2021-09-21 12:48:11True
minimum_outdoor_air_control_type_proportional_minimumtest_system_dual_duct.pytest_minimum_outdoor_air_control_type_proportional_minimum2021-09-21 12:48:44True
minimum_outdoor_air_schedule_nametest_system_dual_duct.pytest_minimum_outdoor_air_schedule_name2021-09-21 12:49:17True
night_cycle_control_cycle_on_anytest_system_dual_duct.pytest_night_cycle_control_cycle_on_any2021-09-21 12:49:48True
night_cycle_control_stay_offtest_system_dual_duct.pytest_night_cycle_control_stay_off2021-09-21 12:50:53True
outdoor_air_flow_ratestest_system_dual_duct.pytest_outdoor_air_flow_rates2021-09-21 12:51:26True
preheat_coil_availability_schedule_nametest_system_dual_duct.pytest_preheat_coil_availability_schedule_name2021-09-21 12:51:59True
preheat_coil_design_setpointtest_system_dual_duct.pytest_preheat_coil_design_setpoint2021-09-21 12:52:31True
preheat_coil_setpoint_schedule_nametest_system_dual_duct.pytest_preheat_coil_setpoint_schedule_name2021-09-21 12:53:03True
preheat_coil_type_electrictest_system_dual_duct.pytest_preheat_coil_type_electric2021-09-21 12:53:36True
preheat_coil_type_gastest_system_dual_duct.pytest_preheat_coil_type_gas2021-09-21 12:54:11True
preheat_coil_type_hot_watertest_system_dual_duct.pytest_preheat_coil_type_hot_water2021-09-21 12:54:45True
preheat_coil_type_nonetest_system_dual_duct.pytest_preheat_coil_type_none2021-09-21 12:55:16True
return_fan_inputstest_system_dual_duct.pytest_return_fan_inputs2021-09-21 12:55:54True
return_fan_notest_system_dual_duct.pytest_return_fan_no2021-09-21 12:56:29True
return_fan_yestest_system_dual_duct.pytest_return_fan_yes2021-09-21 12:57:02True
return_plenum_nametest_system_dual_duct.pytest_return_plenum_name2021-09-21 12:57:33True
return_plenum_nametest_system_dual_duct.pytest_return_plenum_name_none2021-09-21 12:58:06True
sizing_option_coincidenttest_system_dual_duct.pytest_sizing_option_coincident2021-09-21 12:58:39True
sizing_option_non_coincidenttest_system_dual_duct.pytest_sizing_option_non_coincident2021-09-21 12:59:15True
system_availability_schedule_nametest_system_dual_duct.pytest_system_availability_schedule_name2021-09-21 12:59:49True
system_configuration_type_dual_fan_constant_volumetest_system_dual_duct.pytest_system_configuration_type_dual_fan_constant_volume2021-09-21 13:00:23True
system_configuration_type_dual_fan_variable_volumetest_system_dual_duct.pytest_system_configuration_type_dual_fan_variable_volume2021-09-21 13:00:57True
system_configuration_type_single_fan_constant_volumetest_system_dual_duct.pytest_system_configuration_type_single_fan_constant_volume2021-09-21 13:01:30True
system_configuration_type_single_fan_variable_volumetest_system_dual_duct.pytest_system_configuration_type_single_fan_variable_volume2021-09-21 13:02:05True
+

Simulation : System : PackagedVAV

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_packaged_vav.pytest_cooling_coil_availability_schedule_name2021-09-21 13:02:40True
cooling_coil_design_setpointtest_system_packaged_vav.pytest_cooling_coil_design_setpoint2021-09-21 13:03:14True
cooling_coil_gross_rated_coptest_system_packaged_vav.pytest_cooling_coil_gross_rated_cop2021-09-21 13:03:49True
cooling_coil_gross_rated_coptest_system_packaged_vav.pytest_cooling_coil_gross_rated_cop_two_speed_humid_control2021-09-21 13:04:19True
cooling_coil_gross_rated_sensible_heat_ratiotest_system_packaged_vav.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 13:04:50True
cooling_coil_gross_rated_sensible_heat_ratiotest_system_packaged_vav.pytest_cooling_coil_gross_rated_sensible_heat_ratio_two_speed_humid_control2021-09-21 13:05:21True
cooling_coil_gross_rated_total_capacitytest_system_packaged_vav.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 13:05:54True
cooling_coil_gross_rated_total_capacity_two_speed_humid_controltest_system_packaged_vav.pytest_cooling_coil_gross_rated_total_capacity_two_speed_humid_control2021-09-21 13:06:29True
cooling_coil_setpoint_schedule_nametest_system_packaged_vav.pytest_cooling_coil_setpoint_schedule_name2021-09-21 13:07:00True
cooling_coil_type_two_speed_dxtest_system_packaged_vav.pytest_cooling_coil_type_two_speed_dx2021-09-21 13:07:33True
cooling_coil_type_two_speed_humid_control_dxtest_system_packaged_vav.pytest_cooling_coil_type_two_speed_humid_control_dx2021-09-21 13:08:04True
dehumidification_control_type_cool_reheattest_system_packaged_vav.pytest_dehumidification_control_type_cool_reheat2021-09-21 13:08:39True
dehumidification_control_type_nonetest_system_packaged_vav.pytest_dehumidification_control_type_none2021-09-21 13:09:12True
economizer_lockout_lockout_with_compressortest_system_packaged_vav.pytest_economizer_lockout_lockout_with_compressor2021-09-21 13:09:43True
economizer_lockout_lockout_with_heatingtest_system_packaged_vav.pytest_economizer_lockout_lockout_with_heating2021-09-21 13:10:18True
economizer_lockout_no_lockouttest_system_packaged_vav.pytest_economizer_lockout_no_lockout2021-09-21 13:10:50True
economizer_maximum_limit_dewpoint_temperaturetest_system_packaged_vav.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 13:11:23True
economizer_maximum_limit_enthalpytest_system_packaged_vav.pytest_economizer_maximum_limit_enthalpy2021-09-21 13:11:55True
economizer_temperature_limitstest_system_packaged_vav.pytest_economizer_temperature_limits2021-09-21 13:12:25True
economizer_type_differential_dry_bulbtest_system_packaged_vav.pytest_economizer_type_differential_dry_bulb2021-09-21 13:12:57True
economizer_type_differential_dry_bulb_and_enthalpytest_system_packaged_vav.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 13:13:33True
economizer_type_differential_enthalpytest_system_packaged_vav.pytest_economizer_type_differential_enthalpy2021-09-21 13:14:08True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_packaged_vav.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 13:15:11True
economizer_type_fixed_dry_bulbtest_system_packaged_vav.pytest_economizer_type_fixed_dry_bulb2021-09-21 13:15:43True
economizer_type_fixed_enthalpytest_system_packaged_vav.pytest_economizer_type_fixed_enthalpy2021-09-21 13:16:13True
economizer_type_no_economizertest_system_packaged_vav.pytest_economizer_type_no_economizer2021-09-21 13:16:45True
electronic_enthalpytest_system_packaged_vav.pytest_economizer_type_electronic_enthalpy2021-09-21 13:14:41True
gas_heating_coil_efficiencytest_system_packaged_vav.pytest_gas_heating_coil_efficiency2021-09-21 13:17:15True
gas_heating_coil_parasitic_electric_loadtest_system_packaged_vav.pytest_gas_heating_coil_parasitic_electric_load2021-09-21 13:17:52True
heat_recovery_effectiveness_enthalpytest_system_packaged_vav.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 13:18:22True
heat_recovery_effectiveness_sensibletest_system_packaged_vav.pytest_heat_recovery_effectiveness_sensible2021-09-21 13:18:55True
heat_recovery_enthalpytest_system_packaged_vav.pytest_heat_recovery_enthalpy2021-09-21 13:19:26True
heat_recovery_sensibletest_system_packaged_vav.pytest_heat_recovery_sensible2021-09-21 13:19:57True
heating_coil_availability_schedule_nametest_system_packaged_vav.pytest_heating_coil_availability_schedule_name2021-09-21 13:20:28True
heating_coil_capacitytest_system_packaged_vav.pytest_heating_coil_capacity2021-09-21 13:20:59True
heating_coil_design_setpointtest_system_packaged_vav.pytest_heating_coil_design_setpoint2021-09-21 13:21:30False
heating_coil_setpoint_schedule_nametest_system_packaged_vav.pytest_heating_coil_setpoint_schedule_name2021-09-21 13:22:04True
heating_coil_type_electrictest_system_packaged_vav.pytest_heating_coil_type_electric2021-09-21 13:22:37True
heating_coil_type_gastest_system_packaged_vav.pytest_heating_coil_type_gas2021-09-21 13:23:08True
heating_coil_type_hot_watertest_system_packaged_vav.pytest_heating_coil_type_hot_water2021-09-21 13:23:40True
heating_coil_type_nonetest_system_packaged_vav.pytest_heating_coil_type_none2021-09-21 13:24:16True
humidifier_inputstest_system_packaged_vav.pytest_humidifier_inputs2021-09-21 13:24:45True
humidifier_typetest_system_packaged_vav.pytest_humidifier_type2021-09-21 13:25:17True
minimum_outdoor_air_control_type_fixed_minimumtest_system_packaged_vav.pytest_minimum_outdoor_air_control_type_fixed_minimum2021-09-21 13:26:08True
minimum_outdoor_air_control_type_proportional_minimumtest_system_packaged_vav.pytest_minimum_outdoor_air_control_type_proportional_minimum2021-09-21 13:26:37True
minimum_outdoor_air_schedule_nametest_system_packaged_vav.pytest_minimum_outdoor_air_schedule_name2021-09-21 13:27:08True
night_cycle_control_cycle_on_anytest_system_packaged_vav.pytest_night_cycle_control_cycle_on_any2021-09-21 13:27:40True
night_cycle_control_cycle_on_any_zone_fans_onlytest_system_packaged_vav.pytest_night_cycle_control_cycle_on_any_zone_fans_only2021-09-21 13:28:14True
night_cycle_control_cycle_on_control_zonetest_system_packaged_vav.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 13:28:44True
night_cycle_control_stay_offtest_system_packaged_vav.pytest_night_cycle_control_stay_off2021-09-21 13:29:18True
outdoor_air_flow_ratestest_system_packaged_vav.pytest_outdoor_air_flow_rates2021-09-21 13:29:51True
return_fan_inputstest_system_packaged_vav.pytest_return_fan_inputs2021-09-21 13:30:23True
return_fan_notest_system_packaged_vav.pytest_return_fan_no2021-09-21 13:30:55True
return_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_gtest_system_packaged_vav.pytest_return_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_g2021-09-21 13:31:31True
return_fan_part_load_power_coefficients_inlet_vane_damperstest_system_packaged_vav.pytest_return_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 13:32:03True
return_fan_part_load_power_coefficients_outlet_damperstest_system_packaged_vav.pytest_return_fan_part_load_power_coefficients_outlet_dampers2021-09-21 13:32:36True
return_fan_part_load_power_coefficients_variable_speed_motortest_system_packaged_vav.pytest_return_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 13:33:05True
return_fan_part_load_power_coefficients_variable_speed_motor_pressure_ressttest_system_packaged_vav.pytest_return_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 13:33:34True
return_fan_yestest_system_packaged_vav.pytest_return_fan_yes2021-09-21 13:34:07True
return_plenum_nametest_system_packaged_vav.pytest_return_plenum_name2021-09-21 13:34:38True
sizing_option_non_coincidenttest_system_packaged_vav.pytest_sizing_option_coincident2021-09-21 13:35:07True
sizing_option_non_coincidenttest_system_packaged_vav.pytest_sizing_option_non_coincident2021-09-21 13:35:37True
supply_fan_delta_pressuretest_system_packaged_vav.pytest_supply_fan_delta_pressure2021-09-21 13:36:08True
supply_fan_maximum_flow_ratetest_system_packaged_vav.pytest_supply_fan_maximum_flow_rate2021-09-21 13:36:37True
supply_fan_minimum_flow_ratetest_system_packaged_vav.pytest_supply_fan_minimum_flow_rate2021-09-21 13:37:06True
supply_fan_motor_efficiencytest_system_packaged_vav.pytest_supply_fan_motor_efficiency2021-09-21 13:37:35True
supply_fan_motor_in_air_stream_fractiontest_system_packaged_vav.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 13:38:06True
supply_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_gtest_system_packaged_vav.pytest_supply_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_g2021-09-21 13:38:35True
supply_fan_part_load_power_coefficients_inlet_vane_damperstest_system_packaged_vav.pytest_supply_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 13:39:07True
supply_fan_part_load_power_coefficients_outlet_damperstest_system_packaged_vav.pytest_supply_fan_part_load_power_coefficients_outlet_dampers2021-09-21 13:39:39True
supply_fan_part_load_power_coefficients_variable_speed_motortest_system_packaged_vav.pytest_supply_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 13:40:11True
supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_ressttest_system_packaged_vav.pytest_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 13:40:42True
supply_fan_placement_blow_through_cooling_none_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_none_heating_none2021-09-21 13:41:13True
supply_fan_placement_blow_through_cooling_none_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_none_heating_outdoor_air_temperature_reset2021-09-21 13:41:43True
supply_fan_placement_blow_through_cooling_warmest_first_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_warmest_temperature_first_heating_none2021-09-21 13:44:15True
supply_fan_placement_blow_through_cooling_warmest_first_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_warmest_temperature_first_heating_outdoor_air_temperature_reset2021-09-21 13:44:46True
supply_fan_placement_blow_through_cooling_warmest_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_warmest_heating_none2021-09-21 13:43:17True
supply_fan_placement_blow_through_cooling_warmest_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_warmest_heating_outdoor_air_temperature_reset2021-09-21 13:43:46True
supply_fan_placement_draw_through_cooling_none_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_none_heating_none2021-09-21 13:45:14True
supply_fan_placement_draw_through_cooling_none_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_none_heating_outdoor_air_temperature_reset2021-09-21 13:45:48True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_outdoor_air_temperature_reset_heating_none2021-09-21 13:42:12True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_none2021-09-21 13:46:18True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_blow_through_cooling_outdoor_air_temperature_reset_heating_outdoor_air_temperature_reset2021-09-21 13:42:44True
supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_outdoor_air_temperature_reset_heating_outdoor_air_temperature_reset2021-09-21 13:46:47True
supply_fan_placement_draw_through_cooling_warmest_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_warmest_heating_none2021-09-21 13:47:20True
supply_fan_placement_draw_through_cooling_warmest_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_warmest_heating_outdoor_air_temperature_reset2021-09-21 13:47:49True
supply_fan_placement_draw_through_cooling_warmest_temperature_first_heating_nonetest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_warmest_temperature_first_heating_none2021-09-21 13:48:20True
supply_fan_placement_draw_through_cooling_warmest_temperature_first_heating_outdoor_air_temperature_resettest_system_packaged_vav.pytest_supply_fan_placement_draw_through_cooling_warmest_temperature_first_heating_outdoor_air_temperature_reset2021-09-21 13:48:49True
supply_fan_total_efficiencytest_system_packaged_vav.pytest_supply_fan_total_efficiency2021-09-21 13:49:22True
supply_plenum_nametest_system_packaged_vav.pytest_supply_plenum_name2021-09-21 13:49:52True
system_availability_schedule_nametest_system_packaged_vav.pytest_system_availability_schedule_name2021-09-21 13:50:24True
+

Simulation : System : Unitary

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_unitary.pytest_cooling_coil_availability_schedule_name2021-09-21 13:50:59True
cooling_coil_gross_rated_coptest_system_unitary.pytest_cooling_coil_gross_rated_cop2021-09-21 13:51:32True
cooling_coil_gross_rated_sensible_heat_ratiotest_system_unitary.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 13:52:04True
cooling_coil_gross_rated_total_capacitytest_system_unitary.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 13:52:39True
cooling_coil_type_nonetest_system_unitary.pytest_cooling_coil_type_none2021-09-21 13:53:10True
cooling_coil_type_single_speed_dxtest_system_unitary.pytest_cooling_coil_type_single_speed_dx2021-09-21 13:53:48True
cooling_design_supply_air_temperaturetest_system_unitary.pytest_cooling_design_supply_air_temperature2021-09-21 13:54:18False
dehumidification_control_type_cool_reheat_electrictest_system_unitary.pytest_dehumidification_control_type_cool_reheat_heating_coil_electric2021-09-21 13:54:49True
dehumidification_control_type_cool_reheat_gastest_system_unitary.pytest_dehumidification_control_type_cool_reheat_heating_coil_gas2021-09-21 13:55:23True
dehumidification_control_type_cool_reheat_hot_watertest_system_unitary.pytest_dehumidification_control_type_cool_reheat_heating_coil_hot_water2021-09-21 13:55:56True
dehumidification_control_type_nonetest_system_unitary.pytest_dehumidification_control_type_none2021-09-21 13:56:26True
economizer_lockout_lockout_with_compressortest_system_unitary.pytest_economizer_lockout_lockout_with_compressor2021-09-21 13:57:01True
economizer_lockout_lockout_with_heatingtest_system_unitary.pytest_economizer_lockout_lockout_with_heating2021-09-21 13:57:33True
economizer_lockout_no_lockouttest_system_unitary.pytest_economizer_lockout_no_lockout2021-09-21 13:58:04True
economizer_maximum_limit_dewpoint_temperaturetest_system_unitary.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 13:58:36True
economizer_temperature_limitstest_system_unitary.pytest_economizer_temperature_limits2021-09-21 13:59:10True
economizer_type_differential_dry_bulbtest_system_unitary.pytest_economizer_type_differential_dry_bulb2021-09-21 13:59:41True
economizer_type_differential_dry_bulb_and_enthalpytest_system_unitary.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 14:00:11True
economizer_type_differential_enthalpytest_system_unitary.pytest_economizer_type_differential_enthalpy2021-09-21 14:00:45True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_unitary.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 14:01:48True
economizer_type_fixed_dry_bulbtest_system_unitary.pytest_economizer_type_fixed_dry_bulb2021-09-21 14:02:22True
economizer_type_fixed_enthalpytest_system_unitary.pytest_economizer_type_fixed_enthalpy2021-09-21 14:02:53True
economizer_type_no_economizertest_system_unitary.pytest_economizer_type_no_economizer2021-09-21 14:03:26True
economizer_upper_enthalpy_limittest_system_unitary.pytest_economizer_upper_enthalpy_limit2021-09-21 14:03:59True
electronic_enthalpytest_system_unitary.pytest_economizer_type_electronic_enthalpy2021-09-21 14:01:17True
gas_heating_coil_efficiencytest_system_unitary.pytest_gas_heating_coil_efficiency2021-09-21 14:04:30True
gas_heating_coil_parasitic_electric_loadtest_system_unitary.pytest_gas_heating_coil_parasitic_electric_load2021-09-21 14:05:02True
heat_recovery_effectiveness_enthalpytest_system_unitary.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 14:05:35True
heat_recovery_effectiveness_sensibletest_system_unitary.pytest_heat_recovery_effectiveness_sensible2021-09-21 14:06:08True
heat_recovery_enthalpytest_system_unitary.pytest_heat_recovery_enthalpy2021-09-21 14:06:40True
heat_recovery_sensibletest_system_unitary.pytest_heat_recovery_sensible2021-09-21 14:07:11True
heating_coil_availability_schedule_nametest_system_unitary.pytest_heating_coil_availability_schedule_name2021-09-21 14:07:44True
heating_coil_capacitytest_system_unitary.pytest_heating_coil_capacity2021-09-21 14:08:14True
heating_coil_type_electrictest_system_unitary.pytest_heating_coil_type_electric2021-09-21 14:08:47True
heating_coil_type_gastest_system_unitary.pytest_heating_coil_type_gas2021-09-21 14:09:17True
heating_coil_type_hot_watertest_system_unitary.pytest_heating_coil_type_hot_water2021-09-21 14:09:48True
heating_design_supply_air_temperaturetest_system_unitary.pytest_heating_design_supply_air_temperature2021-09-21 14:10:24True
humidifier_inputstest_system_unitary.pytest_humidifier_inputs2021-09-21 14:11:18True
humidifier_typetest_system_unitary.pytest_humidifier_and_dehumidifier2021-09-21 14:10:44False
humidifier_typetest_system_unitary.pytest_humidifier_type2021-09-21 14:11:51True
minimum_inputstest_system_unitary.pytest_minimum_inputs2021-09-21 14:12:22True
minimum_inputstest_system_unitary_system.pytest_minimum_inputs2021-09-21 15:39:25True
minimum_outdoor_air_schedule_nametest_system_unitary.pytest_minimum_outdoor_air_schedule_name2021-09-21 14:12:56True
night_cycle_control_cycle_on_anytest_system_unitary.pytest_night_cycle_control_cycle_on_any2021-09-21 14:13:26True
night_cycle_control_cycle_on_control_zonetest_system_unitary.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 14:13:57True
night_cycle_control_stay_offtest_system_unitary.pytest_night_cycle_control_stay_off2021-09-21 14:14:30True
outdoor_air_flow_ratestest_system_unitary.pytest_outdoor_air_flow_rates2021-09-21 14:15:06True
return_fan_inputstest_system_unitary.pytest_return_fan_inputs2021-09-21 14:15:36True
return_fan_notest_system_unitary.pytest_return_fan_no2021-09-21 14:16:10True
return_fan_yestest_system_unitary.pytest_return_fan_yes2021-09-21 14:16:45True
return_plenum_nametest_system_unitary.pytest_return_plenum_name2021-09-21 14:17:20True
supply_fan_delta_pressuretest_system_unitary.pytest_supply_fan_delta_pressure2021-09-21 14:17:52True
supply_fan_maximum_flow_ratetest_system_unitary.pytest_supply_fan_maximum_flow_rate2021-09-21 14:18:25True
supply_fan_motor_efficiencytest_system_unitary.pytest_supply_fan_motor_efficiency2021-09-21 14:18:55True
supply_fan_motor_in_air_stream_fractiontest_system_unitary.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 14:19:26True
supply_fan_placement_blow_throughtest_system_unitary.pytest_supply_fan_placement_blow_through2021-09-21 14:20:29True
supply_fan_placement_draw_throughtest_system_unitary.pytest_supply_fan_placement_draw_through2021-09-21 14:21:00True
supply_fan_total_efficiencytest_system_unitary.pytest_supply_fan_total_efficiency2021-09-21 14:21:35True
supply_plenum_nametest_system_unitary.pytest_supply_plenum_name2021-09-21 14:22:07True
system_availability_schedule_nametest_system_unitary.pytest_system_availability_schedule_name2021-09-21 14:22:37True
+

Simulation : System : UnitaryHeatPump

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_unitary_heat_pump.pytest_cooling_coil_availability_schedule_name2021-09-21 14:23:09True
cooling_coil_gross_rated_coptest_system_unitary_heat_pump.pytest_cooling_coil_gross_rated_cop2021-09-21 14:23:42True
cooling_coil_gross_rated_sensible_heat_ratiotest_system_unitary_heat_pump.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 14:24:14True
cooling_coil_gross_rated_total_capacitytest_system_unitary_heat_pump.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 14:24:48True
cooling_design_supply_air_temperaturetest_system_unitary_heat_pump.pytest_cooling_design_supply_air_temperature2021-09-21 14:25:21False
cooling_supplY_air_flow_ratetest_system_unitary_heat_pump.pytest_cooling_supply_air_flow_rate2021-09-21 14:25:52True
economizer_lockout_lockout_with_compressortest_system_unitary_heat_pump.pytest_economizer_lockout_lockout_with_compressor2021-09-21 14:26:23True
economizer_lockout_lockout_with_heatingtest_system_unitary_heat_pump.pytest_economizer_lockout_lockout_with_heating2021-09-21 14:26:57True
economizer_lockout_no_lockouttest_system_unitary_heat_pump.pytest_economizer_lockout_no_lockout2021-09-21 14:27:30True
economizer_maximum_limit_dewpoint_temperaturetest_system_unitary_heat_pump.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 14:28:03True
economizer_temperature_limitstest_system_unitary_heat_pump.pytest_economizer_temperature_limits2021-09-21 14:29:07True
economizer_type_differential_dry_bulbtest_system_unitary_heat_pump.pytest_economizer_type_differential_dry_bulb2021-09-21 14:29:40True
economizer_type_differential_dry_bulb_and_enthalpytest_system_unitary_heat_pump.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 14:30:11True
economizer_type_differential_enthalpytest_system_unitary_heat_pump.pytest_economizer_type_differential_enthalpy2021-09-21 14:30:41True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_unitary_heat_pump.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 14:31:43True
economizer_type_fixed_dry_bulbtest_system_unitary_heat_pump.pytest_economizer_type_fixed_dry_bulb2021-09-21 14:32:14True
economizer_type_fixed_enthalpytest_system_unitary_heat_pump.pytest_economizer_type_fixed_enthalpy2021-09-21 14:32:45True
economizer_type_no_economizertest_system_unitary_heat_pump.pytest_economizer_type_no_economizer2021-09-21 14:33:16True
economizer_upper_enthalpy_limittest_system_unitary_heat_pump.pytest_economizer_maximum_limit_enthalpy2021-09-21 14:28:35True
electronic_enthalpytest_system_unitary_heat_pump.pytest_economizer_type_electronic_enthalpy2021-09-21 14:31:12True
heat_pump_defrost_control_on_demandtest_system_unitary_heat_pump.pytest_heat_pump_defrost_control_on_demand2021-09-21 14:33:47True
heat_pump_defrost_control_timedtest_system_unitary_heat_pump.pytest_heat_pump_defrost_control_timed2021-09-21 14:34:18True
heat_pump_defrost_maximum_outdoor_dry_bulb_temperaturetest_system_unitary_heat_pump.pytest_heat_pump_defrost_maximum_outdoor_dry_bulb_temperature2021-09-21 14:34:49True
heat_pump_defrost_strategy_resistivetest_system_unitary_heat_pump.pytest_heat_pump_defrost_strategy_resistive2021-09-21 14:35:22True
heat_pump_defrost_strategy_reverse_cycletest_system_unitary_heat_pump.pytest_heat_pump_defrost_strategy_reverse_cycle2021-09-21 14:35:54True
heat_pump_defrost_time_period_fractiontest_system_unitary_heat_pump.pytest_heat_pump_defrost_time_period_fraction2021-09-21 14:36:31True
heat_pump_heating_coil_availability_schedule_nametest_system_unitary_heat_pump.pytest_heat_pump_heating_coil_availability_schedule_name2021-09-21 14:37:03True
heat_pump_heating_coil_rated_coptest_system_unitary_heat_pump.pytest_heat_pump_heating_coil_rated_cop2021-09-21 14:37:37True
heat_pump_heating_minimum_outdoor_dry_bulb_temperaturetest_system_unitary_heat_pump.pytest_heat_pump_heating_minimum_outdoor_dry_bulb_temperature2021-09-21 14:38:12True
heat_recovery_effectiveness_enthalpytest_system_unitary_heat_pump.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 14:38:48True
heat_recovery_effectiveness_sensibletest_system_unitary_heat_pump.pytest_heat_recovery_effectiveness_sensible2021-09-21 14:39:19True
heat_recovery_enthalpytest_system_unitary_heat_pump.pytest_heat_recovery_enthalpy2021-09-21 14:39:50True
heat_recovery_sensibletest_system_unitary_heat_pump.pytest_heat_recovery_sensible2021-09-21 14:40:21True
heating_design_supply_air_temperaturetest_system_unitary_heat_pump.pytest_heating_design_supply_air_temperature2021-09-21 14:40:51False
heating_supplY_air_flow_ratetest_system_unitary_heat_pump.pytest_heating_supply_air_flow_rate2021-09-21 14:41:25False
humidifier_inputstest_system_unitary_heat_pump.pytest_humidifier_inputs2021-09-21 14:41:51False
humidifier_typetest_system_unitary_heat_pump.pytest_humidifier_type2021-09-21 14:42:16False
minimum_outdoor_air_schedule_nametest_system_unitary_heat_pump.pytest_minimum_outdoor_air_schedule_name2021-09-21 14:42:47True
night_cycle_control_cycle_on_anytest_system_unitary_heat_pump.pytest_night_cycle_control_cycle_on_any2021-09-21 14:43:20True
night_cycle_control_cycle_on_control_zonetest_system_unitary_heat_pump.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 14:43:51True
night_cycle_control_stay_offtest_system_unitary_heat_pump.pytest_night_cycle_control_stay_off2021-09-21 14:44:21True
no_load_supplY_air_flow_ratetest_system_unitary_heat_pump.pytest_no_load_supply_air_flow_rate2021-09-21 14:44:52True
outdoor_air_flow_ratestest_system_unitary_heat_pump.pytest_outdoor_air_flow_rates2021-09-21 14:45:23True
return_fan_inputstest_system_unitary_heat_pump.pytest_return_fan_inputs2021-09-21 14:45:56True
return_fan_notest_system_unitary_heat_pump.pytest_return_fan_no2021-09-21 14:46:30True
return_fan_yestest_system_unitary_heat_pump.pytest_return_fan_yes2021-09-21 14:47:01True
return_plenum_nametest_system_unitary_heat_pump.pytest_return_plenum_name2021-09-21 14:47:31True
supplemental_gas_heating_coil_efficiencytest_system_unitary_heat_pump.pytest_supplemental_gas_heating_coil_efficiency2021-09-21 14:48:07True
supplemental_gas_heating_coil_parasitic_electric_loadtest_system_unitary_heat_pump.pytest_supplemental_gas_heating_coil_parasitic_electric_load2021-09-21 14:48:40True
supplemental_heating_coil_availability_schedule_nametest_system_unitary_heat_pump.pytest_supplemental_heating_coil_availability_schedule_name2021-09-21 14:49:11True
supplemental_heating_coil_capacitytest_system_unitary_heat_pump.pytest_supplemental_heating_coil_capacity2021-09-21 14:49:44True
supplemental_heating_coil_maximum_outdoor_dry_bulb_temperaturetest_system_unitary_heat_pump.pytest_supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature2021-09-21 14:50:15True
supplemental_heating_coil_type_electrictest_system_unitary_heat_pump.pytest_supplemental_heating_coil_type_electric2021-09-21 14:50:46True
supplemental_heating_coil_type_gastest_system_unitary_heat_pump.pytest_supplemental_heating_coil_type_gas2021-09-21 14:51:20True
supplemental_heating_coil_type_hot_watertest_system_unitary_heat_pump.pytest_supplemental_heating_coil_type_hot_water2021-09-21 14:51:55True
supply_fan_delta_pressuretest_system_unitary_heat_pump.pytest_supply_fan_delta_pressure2021-09-21 14:52:32True
supply_fan_motor_efficiencytest_system_unitary_heat_pump.pytest_supply_fan_motor_efficiency2021-09-21 14:53:04True
supply_fan_motor_in_air_stream_fractiontest_system_unitary_heat_pump.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 14:53:40True
supply_fan_operating_mode_schedule_nametest_system_unitary_heat_pump.pytest_supply_fan_operating_mode_schedule_name2021-09-21 14:54:11True
supply_fan_placement_blow_throughtest_system_unitary_heat_pump.pytest_supply_fan_placement_blow_through2021-09-21 14:54:43True
supply_fan_placement_draw_throughtest_system_unitary_heat_pump.pytest_supply_fan_placement_draw_through2021-09-21 14:55:14True
supply_fan_total_efficiencytest_system_unitary_heat_pump.pytest_supply_fan_total_efficiency2021-09-21 14:55:45True
supply_plenum_nametest_system_unitary_heat_pump.pytest_supply_plenum_name2021-09-21 14:56:17True
system_availability_schedule_nametest_system_unitary_heat_pump.pytest_system_availability_schedule_name2021-09-21 14:56:49True
+

Simulation : System : UnitarySystem

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
control_type_loadtest_system_unitary_system.pytest_control_type_load2021-09-21 14:57:27True
control_type_set_pointtest_system_unitary_system.pytest_control_type_set_point2021-09-21 14:57:58False
cooling_coil_availability_schedule_nametest_system_unitary_system.pytest_cooling_coil_availability_schedule_name2021-09-21 14:58:35True
cooling_coil_type_chilled_watertest_system_unitary_system.pytest_cooling_coil_type_chilled_water2021-09-21 14:59:13True
cooling_coil_type_chilled_water_detailed_flat_modeltest_system_unitary_system.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 14:59:41False
cooling_coil_type_heat_exchanger_assisted_dxtest_system_unitary_system.pytest_cooling_coil_type_heat_exchanger_assisted_dx2021-09-21 15:01:01True
cooling_coil_type_multi_speed_dxtest_system_unitary_system.pytest_cooling_coil_type_multi_speed_dx2021-09-21 15:01:23False
cooling_coil_type_single_speed_dxtest_system_unitary_system.pytest_cooling_coil_type_single_speed_dx2021-09-21 15:04:00True
cooling_coil_type_single_speed_dx_water_cooledtest_system_unitary_system.pytest_cooling_coil_type_single_speed_dx_water_cooled2021-09-21 15:04:54True
cooling_coil_type_two_speed_dxtest_system_unitary_system.pytest_cooling_coil_type_two_speed_dx2021-09-21 15:05:32True
cooling_coil_type_two_stage_dxtest_system_unitary_system.pytest_cooling_coil_type_two_stage_dx2021-09-21 15:06:11True
cooling_coil_type_two_stage_humidity_control_dxtest_system_unitary_system.pytest_cooling_coil_type_two_stage_humidity_control_dx2021-09-21 15:06:48True
cooling_design_supply_air_temperaturetest_system_unitary_system.pytest_cooling_design_supply_air_temperature2021-09-21 15:07:31False
cooling_supplY_air_flow_ratetest_system_unitary_system.pytest_cooling_supply_air_flow_rate2021-09-21 15:08:11True
dehumidification_control_type_cool_reheattest_system_unitary_system.pytest_dehumidification_control_type_cool_reheat2021-09-21 15:08:53True
dehumidification_control_type_multimodetest_system_unitary_system.pytest_dehumidification_control_type_multimode2021-09-21 15:09:33True
dehumidification_control_type_nonetest_system_unitary_system.pytest_dehumidification_control_type_none2021-09-21 15:10:10True
dehumidification_relative_humidity_setpoint_schedule_nametest_system_unitary_system.pytest_dehumidification_relative_humidity_setpoint_schedule_name2021-09-21 15:10:46True
dx_cooling_coil_gross_rated_coptest_system_unitary_system.pytest_dx_cooling_coil_gross_rated_cop2021-09-21 15:11:23True
dx_cooling_coil_gross_rated_total_capacitytest_system_unitary_system.pytest_dx_cooling_coil_gross_rated_total_capacity2021-09-21 15:12:00True
economizer_lockout_lockout_with_heatingtest_system_unitary_system.pytest_economizer_lockout_lockout_with_compressor2021-09-21 15:12:37True
economizer_lockout_lockout_with_heatingtest_system_unitary_system.pytest_economizer_lockout_lockout_with_heating2021-09-21 15:13:16True
economizer_lockout_no_lockouttest_system_unitary_system.pytest_economizer_lockout_no_lockout2021-09-21 15:13:52True
economizer_maximum_limit_dewpoint_temperaturetest_system_unitary_system.pytest_economizer_maximum_limit_dewpoint_temperature2021-09-21 15:14:31True
economizer_temperature_limitstest_system_unitary_system.pytest_economizer_temperature_limits2021-09-21 15:15:45True
economizer_type_differential_dry_bulbtest_system_unitary_system.pytest_economizer_type_differential_dry_bulb2021-09-21 15:16:22True
economizer_type_differential_dry_bulb_and_enthalpytest_system_unitary_system.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 15:17:00True
economizer_type_differential_enthalpytest_system_unitary_system.pytest_economizer_type_differential_enthalpy2021-09-21 15:17:37True
economizer_type_electronic_enthalpytest_system_unitary_system.pytest_economizer_type_electronic_enthalpy2021-09-21 15:18:14True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_unitary_system.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 15:18:51True
economizer_type_fixed_dry_bulbtest_system_unitary_system.pytest_economizer_type_fixed_dry_bulb2021-09-21 15:19:27True
economizer_type_fixed_enthalpytest_system_unitary_system.pytest_economizer_type_fixed_enthalpy2021-09-21 15:20:04True
economizer_type_no_economizertest_system_unitary_system.pytest_economizer_type_no_economizer2021-09-21 15:20:41True
economizer_upper_enthalpy_limittest_system_unitary_system.pytest_economizer_maximum_limit_enthalpy2021-09-21 15:15:08True
gas_heating_coil_efficiencytest_system_unitary_system.pytest_gas_heating_coil_efficiency2021-09-21 15:21:18True
gas_heating_coil_parasitic_electric_loadtest_system_unitary_system.pytest_gas_heating_coil_parasitic_electric_load2021-09-21 15:21:55True
heat_pump_defrost_control_on_demandtest_system_unitary_system.pytest_heat_pump_defrost_control_on_demand2021-09-21 15:22:32True
heat_pump_defrost_control_timedtest_system_unitary_system.pytest_heat_pump_defrost_control_timed2021-09-21 15:23:14True
heat_pump_defrost_strategy_resistivetest_system_unitary_system.pytest_heat_pump_defrost_strategy_resistive2021-09-21 15:23:53True
heat_pump_defrost_strategy_reverse_cycletest_system_unitary_system.pytest_heat_pump_defrost_strategy_reverse_cycle2021-09-21 15:24:32True
heat_pump_heating_coil_availability_schedule_nametest_system_unitary_system.pytest_heating_coil_availability_schedule_name2021-09-21 15:29:23True
heat_pump_heating_coil_gross_rated_coptest_system_unitary_system.pytest_heat_pump_heating_coil_gross_rated_cop2021-09-21 15:25:12True
heat_pump_outdoor_dry_bulb_temperaturestest_system_unitary_system.pytest_heat_pump_outdoor_dry_bulb_temperatures2021-09-21 15:25:55True
heat_recovery_effectiveness_enthalpytest_system_unitary_system.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 15:26:45True
heat_recovery_effectiveness_sensibletest_system_unitary_system.pytest_heat_recovery_effectiveness_sensible2021-09-21 15:27:27True
heat_recovery_enthalpytest_system_unitary_system.pytest_heat_recovery_enthalpy2021-09-21 15:28:06True
heat_recovery_sensibletest_system_unitary_system.pytest_heat_recovery_sensible2021-09-21 15:28:45True
heating_coil_gross_rated_capacity_electrictest_system_unitary_system.pytest_heating_coil_gross_rated_capacity_electric2021-09-21 15:30:02True
heating_coil_gross_rated_capacity_gastest_system_unitary_system.pytest_heating_coil_gross_rated_capacity_gas2021-09-21 15:30:43True
heating_coil_gross_rated_capacity_hot_watertest_system_unitary_system.pytest_heating_coil_gross_rated_capacity_hot_water2021-09-21 15:31:28True
heating_coil_type_electrictest_system_unitary_system.pytest_heating_coil_type_electric2021-09-21 15:32:08True
heating_coil_type_gastest_system_unitary_system.pytest_heating_coil_type_gas2021-09-21 15:32:46True
heating_coil_type_hot_watertest_system_unitary_system.pytest_heating_coil_type_hot_water2021-09-21 15:33:23True
heating_coil_type_multi_speed_dx_heat_pump_air_sourcetest_system_unitary_system.pytest_heating_coil_type_multi_speed_dx_heat_pump_air_source2021-09-21 15:33:40False
heating_coil_type_multi_stage_electrictest_system_unitary_system.pytest_heating_coil_type_multi_stage_electric2021-09-21 15:34:00False
heating_coil_type_multi_stage_gastest_system_unitary_system.pytest_heating_coil_type_multi_stage_gas2021-09-21 15:34:18False
heating_coil_type_nonetest_system_unitary_system.pytest_cooling_coil_type_none_heating_coil_type_none2021-09-21 15:02:45True
heating_coil_type_nonetest_system_unitary_system.pytest_cooling_coil_type_none_heating_coil_type_none_with_supplemental2021-09-21 15:03:23True
heating_coil_type_nonetest_system_unitary_system.pytest_heating_coil_type_none2021-09-21 15:34:57True
heating_coil_type_single_speed_dx_heat_pump_air_sourcetest_system_unitary_system.pytest_heating_coil_type_single_speed_dx_heat_pump_air_source2021-09-21 15:35:34True
heating_coil_type_single_speed_dx_heat_pump_water_sourcetest_system_unitary_system.pytest_heating_coil_type_single_speed_dx_heat_pump_water_source2021-09-21 15:36:16True
heating_design_supply_air_temperaturetest_system_unitary_system.pytest_heating_design_supply_air_temperature2021-09-21 15:36:53False
heating_supplY_air_flow_ratetest_system_unitary_system.pytest_heating_supply_air_flow_rate2021-09-21 15:37:31True
humidifier_inputstest_system_unitary_system.pytest_humidifier_inputs2021-09-21 15:38:08True
humidifier_typetest_system_unitary_system.pytest_humidifier_type2021-09-21 15:38:45True
minimum_outdoor_air_schedule_nametest_system_unitary_system.pytest_minimum_outdoor_air_schedule_name2021-09-21 15:40:04True
no_load_supplY_air_flow_ratetest_system_unitary_system.pytest_no_load_supply_air_flow_rate2021-09-21 15:40:41True
outdoor_air_flow_ratestest_system_unitary_system.pytest_outdoor_air_flow_rates2021-09-21 15:41:18True
return_fan_inputstest_system_unitary_system.pytest_return_fan_inputs2021-09-21 15:41:56True
return_fan_notest_system_unitary_system.pytest_return_fan_no2021-09-21 15:42:33True
return_fan_yestest_system_unitary_system.pytest_return_fan_yes2021-09-21 15:43:10True
return_plenum_nametest_system_unitary_system.pytest_return_plenum_name2021-09-21 15:43:46True
sizing_option_non_coincidenttest_system_unitary_system.pytest_sizing_option_coincident2021-09-21 15:44:23True
sizing_option_non_coincidenttest_system_unitary_system.pytest_sizing_option_non_coincident2021-09-21 15:45:00True
supplemental_gas_heating_or_reheat_coil_inputstest_system_unitary_system.pytest_supplemental_gas_heating_or_reheat_coil_inputs2021-09-21 15:45:38True
supplemental_heating_or_reheat_coil_availability_schedule_nametest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_availability_schedule_name2021-09-21 15:46:15True
supplemental_heating_or_reheat_coil_capacitytest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_capacity2021-09-21 15:47:07True
supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperaturetest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature2021-09-21 15:47:46True
supplemental_heating_or_reheat_coil_type_desuperheatertest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_type_desuperheater2021-09-21 15:48:24True
supplemental_heating_or_reheat_coil_type_electrictest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_type_electric2021-09-21 15:49:01True
supplemental_heating_or_reheat_coil_type_electrictest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_type_gas2021-09-21 15:49:42True
supplemental_heating_or_reheat_coil_type_hot_watertest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_type_hot_water2021-09-21 15:50:21True
supplemental_heating_or_reheat_coil_type_nonetest_system_unitary_system.pytest_supplemental_heating_or_reheat_coil_type_none2021-09-21 15:50:58True
supply_fan_delta_pressuretest_system_unitary_system.pytest_supply_fan_delta_pressure2021-09-21 15:51:38True
supply_fan_motor_efficiencytest_system_unitary_system.pytest_supply_fan_motor_efficiency2021-09-21 15:52:16True
supply_fan_motor_in_air_stream_fractiontest_system_unitary_system.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 15:52:53True
supply_fan_operating_mode_schedule_nametest_system_unitary_system.pytest_supply_fan_operating_mode_schedule_name2021-09-21 15:53:30True
supply_fan_placement_blow_throughtest_system_unitary_system.pytest_supply_fan_placement_blow_through2021-09-21 15:54:12True
supply_fan_placement_draw_throughtest_system_unitary_system.pytest_supply_fan_placement_draw_through2021-09-21 15:54:49True
supply_fan_total_efficiencytest_system_unitary_system.pytest_supply_fan_total_efficiency2021-09-21 15:55:28True
supply_plenum_nametest_system_unitary_system.pytest_supply_plenum_name2021-09-21 15:56:09True
system_availability_schedule_nametest_system_unitary_system.pytest_system_availability_schedule_name2021-09-21 15:56:46True
+

Simulation : System : VAV

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_coil_availability_schedule_nametest_system_vav.pytest_cooling_coil_availability_schedule_name2021-09-21 15:57:20True
cooling_coil_design_setpointtest_system_vav.pytest_cooling_coil_design_setpoint2021-09-21 15:57:51True
cooling_coil_setpoint_schedule_nametest_system_vav.pytest_cooling_coil_setpoint_schedule_name2021-09-21 15:58:22True
cooling_coil_type_chilled_watertest_system_vav.pytest_cooling_coil_type_chilled_water2021-09-21 15:58:54True
cooling_coil_type_chilled_water_detailed_flat_modeltest_system_vav.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 15:59:24True
dehumidification_control_type_cool_reheattest_system_vav.pytest_dehumidification_control_type_cool_reheat2021-09-21 15:59:56True
dehumidification_control_type_nonetest_system_vav.pytest_dehumidification_control_type_none2021-09-21 16:00:27True
economizer_lockout_no_lockouttest_system_vav.pytest_economizer_lockout_no_lockout2021-09-21 16:00:58True
economizer_temperature_limitstest_system_vav.pytest_economizer_temperature_limits2021-09-21 16:02:05True
economizer_type_differential_dry_bulbtest_system_vav.pytest_economizer_type_differential_dry_bulb2021-09-21 16:02:38True
economizer_type_differential_dry_bulb_and_enthalpytest_system_vav.pytest_economizer_type_differential_dry_bulb_and_enthalpy2021-09-21 16:03:10True
economizer_type_differential_enthalpytest_system_vav.pytest_economizer_type_differential_enthalpy2021-09-21 16:03:43True
economizer_type_electronic_enthalpytest_system_vav.pytest_economizer_type_electronic_enthalpy2021-09-21 16:04:14True
economizer_type_fixed_dew_point_and_dry_bulbtest_system_vav.pytest_economizer_type_fixed_dew_point_and_dry_bulb2021-09-21 16:04:45True
economizer_type_fixed_dry_bulbtest_system_vav.pytest_economizer_type_fixed_dry_bulb2021-09-21 16:05:19True
economizer_type_fixed_enthalpytest_system_vav.pytest_economizer_type_fixed_enthalpy2021-09-21 16:05:50True
economizer_type_no_economizertest_system_vav.pytest_economizer_type_no_economizer2021-09-21 16:06:23True
economizer_upper_enthalpy_limittest_system_vav.pytest_economizer_upper_enthalpy_limit2021-09-21 16:06:57True
gas_heating_coil_inputstest_system_vav.pytest_gas_heating_coil_inputs2021-09-21 16:07:28True
gas_preheat_coil_inputstest_system_vav.pytest_gas_preheat_coil_inputs2021-09-21 16:07:59True
heat_recovery_effectiveness_enthalpytest_system_vav.pytest_heat_recovery_effectiveness_enthalpy2021-09-21 16:08:31True
heat_recovery_effectiveness_sensibletest_system_vav.pytest_heat_recovery_effectiveness_sensible2021-09-21 16:09:04True
heat_recovery_enthalpytest_system_vav.pytest_heat_recovery_enthalpy2021-09-21 16:09:40True
heat_recovery_sensibletest_system_vav.pytest_heat_recovery_sensible2021-09-21 16:10:14True
heating_coil_availability_schedule_nametest_system_vav.pytest_heating_coil_availability_schedule_name2021-09-21 16:10:45True
heating_coil_design_setpointtest_system_vav.pytest_heating_coil_design_setpoint2021-09-21 16:11:18True
heating_coil_setpoint_schedule_nametest_system_vav.pytest_heating_coil_setpoint_schedule_name2021-09-21 16:11:55True
heating_coil_type_electrictest_system_vav.pytest_heating_coil_type_electric2021-09-21 16:12:27True
heating_coil_type_gastest_system_vav.pytest_heating_coil_type_gas2021-09-21 16:13:00True
heating_coil_type_hot_watertest_system_vav.pytest_heating_coil_type_hot_water2021-09-21 16:13:32True
heating_coil_type_nonetest_system_vav.pytest_heating_coil_type_none2021-09-21 16:14:05False
humidifier_inputstest_system_vav.pytest_humidifier_inputs2021-09-21 16:14:40True
humidifier_typetest_system_vav.pytest_humidifier_type2021-09-21 16:15:13True
minimum_inputstest_system_vav.pytest_minimum_inputs2021-09-21 16:15:34False
minimum_outdoor_air_control_type_fixed_minimumtest_system_vav.pytest_minimum_outdoor_air_control_type_fixed_minimum2021-09-21 16:16:06True
minimum_outdoor_air_control_type_proportional_minimumtest_system_vav.pytest_minimum_outdoor_air_control_type_proportional_minimum2021-09-21 16:16:39True
minimum_outdoor_air_schedule_nametest_system_vav.pytest_minimum_outdoor_air_schedule_name2021-09-21 16:17:12True
night_cycle_control_cycle_on_anytest_system_vav.pytest_night_cycle_control_cycle_on_any2021-09-21 16:17:44True
night_cycle_control_cycle_on_any_zone_fans_onlytest_system_vav.pytest_night_cycle_control_cycle_on_any_zone_fans_only2021-09-21 16:18:15True
night_cycle_control_cycle_on_control_zonetest_system_vav.pytest_night_cycle_control_cycle_on_control_zone2021-09-21 16:18:47True
night_cycle_control_stay_offtest_system_vav.pytest_night_cycle_control_stay_off2021-09-21 16:19:18True
outdoor_air_flow_ratestest_system_vav.pytest_outdoor_air_flow_rates2021-09-21 16:19:52True
preheat_coil_availability_schedule_nametest_system_vav.pytest_preheat_coil_availability_schedule_name2021-09-21 16:20:27True
preheat_coil_design_setpointtest_system_vav.pytest_preheat_coil_design_setpoint2021-09-21 16:20:58True
preheat_coil_setpoint_schedule_nametest_system_vav.pytest_preheat_coil_setpoint_schedule_name2021-09-21 16:21:30True
preheat_coil_type_electric_heat_recovery_type_enthalpytest_system_vav.pytest_preheat_coil_type_electric_heat_recovery_type_enthalpy2021-09-21 16:22:01True
preheat_coil_type_electric_heat_recovery_type_sensibletest_system_vav.pytest_preheat_coil_type_electric_heat_recovery_type_sensible2021-09-21 16:22:33True
preheat_coil_type_gas_heat_recovery_type_enthalpytest_system_vav.pytest_preheat_coil_type_gas_heat_recovery_type_enthalpy2021-09-21 16:23:05True
preheat_coil_type_gas_heat_recovery_type_sensibletest_system_vav.pytest_preheat_coil_type_gas_heat_recovery_type_sensible2021-09-21 16:23:41True
preheat_coil_type_hot_watertest_system_vav.pytest_preheat_coil_type_hot_water2021-09-21 16:24:17True
preheat_coil_type_hot_water_heat_recovery_type_enthalpytest_system_vav.pytest_preheat_coil_type_hot_water_heat_recovery_type_enthalpy2021-09-21 16:24:49True
preheat_coil_type_hot_water_heat_recovery_type_enthalpytest_system_vav.pytest_preheat_coil_type_none_heat_recovery_type_enthalpy2021-09-21 16:26:24True
preheat_coil_type_hot_water_heat_recovery_type_sensibletest_system_vav.pytest_preheat_coil_type_hot_water_heat_recovery_type_sensible2021-09-21 16:25:21True
preheat_coil_type_hot_water_heat_recovery_type_sensibletest_system_vav.pytest_preheat_coil_type_none_heat_recovery_type_sensible2021-09-21 16:26:55True
preheat_coil_type_nonetest_system_vav.pytest_preheat_coil_type_none2021-09-21 16:25:52True
return_fan_inputstest_system_vav.pytest_return_fan_inputs2021-09-21 16:27:26True
return_fan_notest_system_vav.pytest_return_fan_no2021-09-21 16:28:00True
return_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_gtest_system_vav.pytest_return_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_g2021-09-21 16:28:34True
return_fan_part_load_power_coefficients_inlet_vane_damperstest_system_vav.pytest_return_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 16:29:05True
return_fan_part_load_power_coefficients_outlet_damperstest_system_vav.pytest_return_fan_part_load_power_coefficients_outlet_dampers2021-09-21 16:29:36True
return_fan_part_load_power_coefficients_variable_speed_motortest_system_vav.pytest_return_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 16:30:11True
return_fan_part_load_power_coefficients_variable_speed_motor_pressure_ressttest_system_vav.pytest_return_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 16:30:43True
return_fan_yestest_system_vav.pytest_return_fan_yes2021-09-21 16:31:14True
return_plenum_nametest_system_vav.pytest_return_plenum_name2021-09-21 16:31:45True
sizing_option_non_coincidenttest_system_vav.pytest_sizing_option_coincident2021-09-21 16:32:16True
sizing_option_non_coincidenttest_system_vav.pytest_sizing_option_non_coincident2021-09-21 16:32:47True
supply_fan_delta_pressuretest_system_vav.pytest_supply_fan_delta_pressure2021-09-21 16:33:21True
supply_fan_maximum_flow_ratetest_system_vav.pytest_supply_fan_maximum_flow_rate2021-09-21 16:33:52True
supply_fan_minimum_flow_ratetest_system_vav.pytest_supply_fan_minimum_flow_rate2021-09-21 16:34:28True
supply_fan_motor_efficiencytest_system_vav.pytest_supply_fan_motor_efficiency2021-09-21 16:35:02True
supply_fan_motor_in_air_stream_fractiontest_system_vav.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 16:35:33True
supply_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_gtest_system_vav.pytest_supply_fan_part_load_power_coefficients_ASHRAE901_2004_appendix_g2021-09-21 16:36:05True
supply_fan_part_load_power_coefficients_inlet_vane_damperstest_system_vav.pytest_supply_fan_part_load_power_coefficients_inlet_vane_dampers2021-09-21 16:36:38True
supply_fan_part_load_power_coefficients_outlet_damperstest_system_vav.pytest_supply_fan_part_load_power_coefficients_outlet_dampers2021-09-21 16:37:10True
supply_fan_part_load_power_coefficients_variable_speed_motortest_system_vav.pytest_supply_fan_part_load_power_coefficients_variable_speed_motor2021-09-21 16:37:43True
supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_ressttest_system_vav.pytest_supply_fan_part_load_power_coefficients_variable_speed_motor_pressure_reset2021-09-21 16:38:17True
supply_fan_total_efficiencytest_system_vav.pytest_supply_fan_total_efficiency2021-09-21 16:38:49True
supply_plenum_nametest_system_vav.pytest_supply_plenum_name2021-09-21 16:39:20True
system_availability_schedule_nametest_system_vav.pytest_system_availability_schedule_name2021-09-21 16:39:51True
+

Simulation : System : VRF

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
basin_heater_capacitytest_system_vrf.pytest_basin_heater_capacity2021-09-21 16:40:21True
basin_heater_operating_schedule_nametest_system_vrf.pytest_basin_heater_operating_schedule_name2021-09-21 16:40:50True
basin_heater_setpoint_temperaturetest_system_vrf.pytest_basin_heater_setpoint_temperature2021-09-21 16:41:19True
condenser_type_air_cooledtest_system_vrf.pytest_condenser_type_air_cooled2021-09-21 16:41:49True
condenser_type_evaporatively_cooledtest_system_vrf.pytest_condenser_type_evaporatively_cooled2021-09-21 16:42:20True
condenser_type_water_cooledtest_system_vrf.pytest_condenser_type_water_cooled2021-09-21 16:42:52True
equivalent_piping_length_used_for_piping_correction_factor_in_cooling_modetest_system_vrf.pytest_equivalent_piping_length_used_for_piping_correction_factor_in_cooling_mode2021-09-21 16:46:27True
evaporative_condenser_air_flow_ratetest_system_vrf.pytest_evaporative_condenser_air_flow_rate2021-09-21 16:47:27True
evaporative_condenser_effectivenesstest_system_vrf.pytest_evaporative_condenser_effectiveness2021-09-21 16:47:57True
evaporative_condenser_pump_rated_power_consumptiontest_system_vrf.pytest_evaporative_condenser_pump_rated_power_consumption2021-09-21 16:48:29True
fuel_type_dieseltest_system_vrf.pytest_fuel_type_diesel2021-09-21 16:48:59True
fuel_type_electricitytest_system_vrf.pytest_fuel_type_electricity2021-09-21 16:49:30True
fuel_type_fuel_oil_no_1test_system_vrf.pytest_fuel_type_fuel_oil_no_12021-09-21 16:50:01True
fuel_type_fuel_oil_no_2test_system_vrf.pytest_fuel_type_fuel_oil_no_22021-09-21 16:50:31True
fuel_type_gasolinetest_system_vrf.pytest_fuel_type_gasoline2021-09-21 16:51:04True
fuel_type_natural_gastest_system_vrf.pytest_fuel_type_natural_gas2021-09-21 16:51:33True
fuel_type_other_fuel_1test_system_vrf.pytest_fuel_type_other_fuel_12021-09-21 16:52:06True
fuel_type_other_fuel_2test_system_vrf.pytest_fuel_type_other_fuel_22021-09-21 16:52:36True
fuel_type_propanetest_system_vrf.pytest_fuel_type_propane2021-09-21 16:53:07True
gross_rated_cooling_coptest_system_vrf.pytest_gross_rated_cooling_cop2021-09-21 16:53:39True
gross_rated_heating_capacitytest_system_vrf.pytest_gross_rated_heating_capacity2021-09-21 16:54:09True
gross_rated_heating_coptest_system_vrf.pytest_gross_rated_heating_cop2021-09-21 16:54:38True
gross_rated_total_cooling_capacitytest_system_vrf.pytest_gross_rated_total_cooling_capacity2021-09-21 16:55:08True
master_thermostat_priority_control_type_load_prioritytest_system_vrf.pytest_master_thermostat_priority_control_type_load_priority2021-09-21 16:56:41True
master_thermostat_priority_control_type_master_thermostat_prioritytest_system_vrf.pytest_master_thermostat_priority_control_type_master_thermostat_priority2021-09-21 16:57:11True
master_thermostat_priority_control_type_thermostat_offset_prioritytest_system_vrf.pytest_master_thermostat_priority_control_type_thermostat_offset_priority2021-09-21 16:57:40True
master_thermostat_priority_control_type_zone_prioritytest_system_vrf.pytest_master_thermostat_priority_control_type_zone_priority2021-09-21 16:58:10True
maximum_outdoor_dry_bulb_temperature_for_defrost_operationtest_system_vrf.pytest_maximum_outdoor_dry_bulb_temperature_for_defrost_operation2021-09-21 16:59:13True
maximum_outdoor_temperature_in_cooling_modetest_system_vrf.pytest_maximum_outdoor_temperature_in_cooling_mode2021-09-21 16:59:45True
maximum_outdoor_temperature_in_heat_recovery_modetest_system_vrf.pytest_maximum_outdoor_temperature_in_heat_recovery_mode2021-09-21 17:00:15True
maximum_outdoor_temperature_in_heating_modetest_system_vrf.pytest_maximum_outdoor_temperature_in_heating_mode2021-09-21 17:00:44True
minimum_heat_pump_part_load_ratiotest_system_vrf.pytest_minimum_heat_pump_part_load_ratio2021-09-21 17:01:14False
minimum_outdoor_temperature_in_cooling_modetest_system_vrf.pytest_minimum_outdoor_temperature_in_cooling_mode2021-09-21 17:01:45True
minimum_outdoor_temperature_in_heat_recovery_modetest_system_vrf.pytest_minimum_outdoor_temperature_in_heat_recovery_mode2021-09-21 17:02:14True
minimum_outdoor_temperature_in_heating_modetest_system_vrf.pytest_minimum_outdoor_temperature_in_heating_mode2021-09-21 17:02:44True
rated_heating_capacity_sizing_ratiotest_system_vrf.pytest_rated_heating_capacity_sizing_ratio2021-09-21 17:03:43True
system_availability_schedule_nametest_system_vrf.pytest_system_availability_schedule_name2021-09-21 17:05:13True
vertical_height_used_for_piping_correction_factortest_system_vrf.pytest_vertical_height_used_for_piping_correction_factor2021-09-21 17:05:42True
waste_heat_recovery_notest_system_vrf.pytest_heat_pump_waste_heat_recovery_no2021-09-21 16:55:37True
waste_heat_recovery_yestest_system_vrf.pytest_heat_pump_waste_heat_recovery_yes2021-09-21 16:56:12True
water_condenser_volume_flow_ratetest_system_vrf.pytest_water_condenser_volume_flow_rate2021-09-21 17:06:16True
zone_name_for_master_thermostat_locationtest_system_vrf.pytest_zone_name_for_master_thermostat_location2021-09-21 17:06:45True
zone_name_for_master_thermostat_priority_control_type_scheduledtest_system_vrf.pytest_zone_name_for_master_thermostat_priority_control_type_scheduled2021-09-21 17:07:17True
+

Simulation : Thermostat

+ + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
test_blanktest_thermostat.pytest_blank2021-09-21 17:07:19True
+

Simulation : VAV : FanPowered

+ + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav_fan_powered.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:28:02True
+

Simulation : VAV : HeatAndCool

+ + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav_heat_and_cool.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:41:06True
+

Simulation : Zone

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
FanCoilzone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_fan_coil.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 17:53:58True
PTACzone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_ptac.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 18:23:03True
PTHPzone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_pthp.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 18:45:55True
+

Simulation : Zone : BaseboardHeat

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_baseboard_heat.pytest_heating_availability_schedule_name2021-09-21 17:08:19True
baseboard_heating_type_electrictest_zone_baseboard_heat.pytest_heating_type_electric2021-09-21 17:08:47True
dedicated_outdoor_air_system_nametest_zone_baseboard_heat.pytest_dedicated_outdoor_air_system_name2021-09-21 17:07:50True
minimum_inputstest_zone_baseboard_heat.pytest_minimum_inputs2021-09-21 17:09:15True
outdoor_air_method_detailed_specificationtest_zone_baseboard_heat.pytest_outdoor_air_method_detailed_specification2021-09-21 17:09:44True
outdoor_air_method_flow_per_areatest_zone_baseboard_heat.pytest_outdoor_air_method_flow_per_area2021-09-21 17:10:15True
outdoor_air_method_flow_per_persontest_zone_baseboard_heat.pytest_outdoor_air_method_flow_per_person2021-09-21 17:10:44True
outdoor_air_method_flow_per_zonetest_zone_baseboard_heat.pytest_outdoor_air_method_flow_per_zone2021-09-21 17:11:14True
zone_heating_sizing_factortest_zone_baseboard_heat.pytest_zone_heating_sizing_factor2021-09-21 17:11:42True
+

Simulation : Zone : ConstantVolume

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_constant_volume.pytest_baseboard_heating_availability_schedule_name2021-09-21 17:12:15True
baseboard_heating_capacitytest_zone_constant_volume.pytest_baseboard_heating_capacity2021-09-21 17:12:50True
baseboard_heating_type_electrictest_zone_constant_volume.pytest_baseboard_heating_type_electric2021-09-21 17:13:24True
baseboard_heating_type_hot_watertest_zone_constant_volume.pytest_baseboard_heating_type_hot_water2021-09-21 17:13:59True
maximum_reheat_air_temperaturetest_zone_constant_volume.pytest_maximum_reheat_air_temperature2021-09-21 17:14:30True
outdoor_air_method_detailed_specificationtest_zone_constant_volume.pytest_outdoor_air_method_detailed_specification2021-09-21 17:16:01True
outdoor_air_method_flow_per_areatest_zone_constant_volume.pytest_outdoor_air_method_flow_per_area2021-09-21 17:16:35True
outdoor_air_method_flow_per_persontest_zone_constant_volume.pytest_outdoor_air_method_flow_per_person2021-09-21 17:17:07True
outdoor_air_method_flow_per_persontest_zone_dual_duct.pytest_outdoor_air_method_flow_per_person2021-09-21 17:30:28True
outdoor_air_method_flow_per_zonetest_zone_constant_volume.pytest_outdoor_air_method_flow_per_zone2021-09-21 17:17:38True
reheat_coil_availability_schedule_nametest_zone_constant_volume.pytest_reheat_coil_availability_schedule_name2021-09-21 17:18:11True
reheat_coil_type_electrictest_zone_constant_volume.pytest_reheat_coil_type_electric2021-09-21 17:18:42True
reheat_coil_type_gastest_zone_constant_volume.pytest_reheat_coil_type_gas2021-09-21 17:19:14True
reheat_coil_type_nonetest_zone_constant_volume.pytest_reheat_coil_type_none2021-09-21 17:19:46True
return_plenum_nametest_zone_constant_volume.pytest_return_plenum_name2021-09-21 17:20:22True
supply_air_maximum_flow_ratetest_zone_constant_volume.pytest_supply_air_maximum_flow_rate2021-09-21 17:20:54True
supply_plenum_nametest_zone_constant_volume.pytest_supply_plenum_name2021-09-21 17:21:27True
test_minimum_inputstest_zone_constant_volume.pytest_minimum_inputs2021-09-21 17:15:02True
test_minimum_inputs_no_thermostattest_zone_constant_volume.pytest_minimum_inputs_no_thermostat2021-09-21 17:15:29True
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_constant_volume.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 17:21:58True
zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperaturetest_zone_constant_volume.pytest_zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperature2021-09-21 17:22:30True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_constant_volume.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 17:23:02True
zone_cooling_sizing_factortest_zone_constant_volume.pytest_zone_cooling_sizing_factor2021-09-21 17:23:34True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_constant_volume.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 17:24:06True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_constant_volume.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 17:24:37True
zone_heating_sizing_factortest_zone_constant_volume.pytest_zone_heating_sizing_factor2021-09-21 17:25:11True
+

Simulation : Zone : DualDuct

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_dual_duct.pytest_baseboard_heating_availability_schedule_name2021-09-21 17:25:45True
baseboard_heating_capacitytest_zone_dual_duct.pytest_baseboard_heating_capacity2021-09-21 17:26:16True
baseboard_heating_type_electrictest_zone_dual_duct.pytest_baseboard_heating_type_electric2021-09-21 17:26:46True
baseboard_heating_type_hot_watertest_zone_dual_duct.pytest_baseboard_heating_type_hot_water2021-09-21 17:27:17True
cold_supply_plenum_nametest_zone_dual_duct.pytest_cold_supply_plenum_name2021-09-21 17:27:51True
hot_supply_plenum_nametest_zone_dual_duct.pytest_hot_supply_plenum_name2021-09-21 17:28:53True
outdoor_air_method_detailed_specificationtest_zone_dual_duct.pytest_design_specification_outdoor_air_object_name_for_control2021-09-21 17:28:22True
outdoor_air_method_detailed_specificationtest_zone_dual_duct.pytest_outdoor_air_method_detailed_specification2021-09-21 17:29:23True
outdoor_air_method_flow_per_areatest_zone_dual_duct.pytest_outdoor_air_method_flow_per_area2021-09-21 17:29:57True
outdoor_air_method_flow_per_zonetest_zone_dual_duct.pytest_outdoor_air_method_flow_per_zone2021-09-21 17:30:59True
return_plenum_nametest_zone_dual_duct.pytest_return_plenum_name2021-09-21 17:31:29True
supply_air_maximum_flow_ratetest_zone_dual_duct.pytest_supply_air_maximum_flow_rate2021-09-21 17:32:00True
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_dual_duct.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 17:32:31True
zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperaturetest_zone_dual_duct.pytest_zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperature2021-09-21 17:33:05True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_dual_duct.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 17:33:36True
zone_cooling_sizing_factortest_zone_dual_duct.pytest_zone_cooling_sizing_factor2021-09-21 17:34:06True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_dual_duct.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 17:34:39True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_dual_duct.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 17:35:10True
zone_heating_sizing_factortest_zone_dual_duct.pytest_zone_heating_sizing_factor2021-09-21 17:35:40True
zone_minimum_air_flow_fractiontest_zone_dual_duct.pytest_zone_minimum_air_flow_fraction2021-09-21 17:36:14True
+

Simulation : Zone : FanCoil

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_fan_coil.pytest_baseboard_heating_availability_schedule_name2021-09-21 17:36:50True
baseboard_heating_capacitytest_zone_fan_coil.pytest_baseboard_heating_capacity2021-09-21 17:37:25True
baseboard_heating_type_electrictest_zone_fan_coil.pytest_baseboard_heating_type_electric2021-09-21 17:38:01True
baseboard_heating_type_hot_watertest_zone_fan_coil.pytest_baseboard_heating_type_hot_water2021-09-21 17:38:39True
capacity_control_methodtest_zone_fan_coil.pytest_capacity_control_method2021-09-21 17:39:14True
cooling_coil_availability_schedule_nametest_zone_fan_coil.pytest_cooling_coil_availability_schedule_name2021-09-21 17:39:50True
cooling_coil_design_setpointtest_zone_fan_coil.pytest_cooling_coil_design_setpoint2021-09-21 17:40:25True
cooling_coil_type_chilled_water_detailed_flat_modeltest_zone_fan_coil.pytest_cooling_coil_type_chilled_water_detailed_flat_model2021-09-21 17:41:00True
cooling_coil_type_heat_exchanger_assisted_chilled_watertest_zone_fan_coil.pytest_cooling_coil_type_heat_exchanger_assisted_chilled_water2021-09-21 17:41:40True
dedicated_outdoor_air_system_nametest_zone_fan_coil.pytest_dedicated_outdoor_air_system_name2021-09-21 17:42:19True
heating_coil_availability_schedule_nametest_zone_fan_coil.pytest_heating_coil_availability_schedule_name2021-09-21 17:42:57True
heating_coil_type_electrictest_zone_fan_coil.pytest_heating_coil_type_electric2021-09-21 17:43:42True
heating_coil_type_hot_watertest_zone_fan_coil.pytest_heating_coil_type_hot_water2021-09-21 17:44:17True
low_speed_supply_air_flow_ratiotest_zone_fan_coil.pytest_low_speed_supply_air_flow_ratio2021-09-21 17:44:53True
medium_speed_supply_air_flow_ratiotest_zone_fan_coil.pytest_medium_speed_supply_air_flow_ratio2021-09-21 17:45:28True
outdoor_air_method_detailed_specificationtest_zone_fan_coil.pytest_outdoor_air_method_detailed_specification2021-09-21 17:47:16True
outdoor_air_method_flow_per_areatest_zone_fan_coil.pytest_outdoor_air_method_flow_per_area2021-09-21 17:47:54True
outdoor_air_method_flow_per_persontest_zone_fan_coil.pytest_outdoor_air_method_flow_per_person2021-09-21 17:48:29True
outdoor_air_method_flow_per_zonetest_zone_fan_coil.pytest_outdoor_air_method_flow_per_zone2021-09-21 17:49:06True
outdoor_air_schedule_nametest_zone_fan_coil.pytest_outdoor_air_schedule_name2021-09-21 17:49:41True
supply_air_maximum_flow_ratetest_zone_fan_coil.pytest_supply_air_maximum_flow_rate2021-09-21 17:50:16True
supply_fan_delta_pressuretest_zone_fan_coil.pytest_supply_fan_delta_pressure2021-09-21 17:50:55True
supply_fan_motor_efficiencytest_zone_fan_coil.pytest_supply_fan_motor_efficiency2021-09-21 17:51:32True
supply_fan_motor_in_air_stream_fractiontest_zone_fan_coil.pytest_supply_fan_motor_in_air_stream_fraction2021-09-21 17:52:08True
supply_fan_total_efficiencytest_zone_fan_coil.pytest_supply_fan_total_efficiency2021-09-21 17:52:43True
system_availability_schedule_nametest_zone_fan_coil.pytest_system_availability_schedule_name2021-09-21 17:53:21True
test_minimum_inputstest_zone_fan_coil.pytest_minimum_inputs2021-09-21 17:46:04True
test_minimum_inputs_doastest_zone_fan_coil.pytest_minimum_inputs_doas2021-09-21 17:46:40True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_fan_coil.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 17:54:34True
zone_cooling_sizing_factortest_zone_fan_coil.pytest_zone_cooling_sizing_factor2021-09-21 17:55:12True
zone_heating_sizing_factortest_zone_fan_coil.pytest_zone_heating_sizing_factor2021-09-21 17:55:48True
+

Simulation : Zone : IdealLoadsAirSystem

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
cooling_availability_schedule_nametest_zone_ideal_loads_air_system.pytest_cooling_availability_schedule_name2021-09-21 17:56:15True
cooling_sensible_heat_ratiotest_zone_ideal_loads_air_system.pytest_cooling_sensible_heat_ratio2021-09-21 17:56:42True
dehumidification_control_typetest_zone_ideal_loads_air_system.pytest_dehumidification_control_type2021-09-21 17:57:10True
dehumidification_setpointtest_zone_ideal_loads_air_system.pytest_dehumidification_setpoint2021-09-21 17:57:31False
demand_controlled_ventilation_typetest_zone_ideal_loads_air_system.pytest_demand_controlled_ventilation_type_co2_setpoint2021-09-21 17:57:59True
demand_controlled_ventilation_typetest_zone_ideal_loads_air_system.pytest_demand_controlled_ventilation_type_occupancy_schedule2021-09-21 17:58:27True
heat_recovery_typetest_zone_ideal_loads_air_system.pytest_heat_recovery_type2021-09-21 17:58:54True
heating_availability_schedule_nametest_zone_ideal_loads_air_system.pytest_heating_availability_schedule_name2021-09-21 17:59:24True
humidification_control_typetest_zone_ideal_loads_air_system.pytest_humidification_control_type2021-09-21 17:59:53True
humidification_setpointtest_zone_ideal_loads_air_system.pytest_humidification_setpoint2021-09-21 18:00:14False
maximum_cooling_air_flow_ratetest_zone_ideal_loads_air_system.pytest_maximum_cooling_air_flow_rate2021-09-21 18:00:45True
maximum_heating_air_flow_ratetest_zone_ideal_loads_air_system.pytest_maximum_heating_air_flow_rate2021-09-21 18:01:12True
maximum_heating_supply_air_humidity_ratiotest_zone_ideal_loads_air_system.pytest_maximum_heating_supply_air_humidity_ratio2021-09-21 18:01:39True
maximum_heating_supply_air_temperaturetest_zone_ideal_loads_air_system.pytest_maximum_heating_supply_air_temperature2021-09-21 18:02:06True
maximum_sensible_heating_capacitytest_zone_ideal_loads_air_system.pytest_maximum_sensible_heating_capacity2021-09-21 18:02:37True
maximum_total_cooling_capacitytest_zone_ideal_loads_air_system.pytest_maximum_total_cooling_capacity2021-09-21 18:03:07True
minimum_cooling_supply_air_humidity_ratiotest_zone_ideal_loads_air_system.pytest_minimum_cooling_supply_air_humidity_ratio2021-09-21 18:03:39True
minimum_cooling_supply_air_temperaturetest_zone_ideal_loads_air_system.pytest_minimum_cooling_supply_air_temperature2021-09-21 18:04:06True
outdoor_air_economizer_typetest_zone_ideal_loads_air_system.pytest_outdoor_air_economizer_type2021-09-21 18:04:33True
outdoor_air_method_detailed_specificationtest_zone_ideal_loads_air_system.pytest_outdoor_air_method_detailed_specification2021-09-21 18:05:00True
outdoor_air_method_flow_per_areatest_zone_ideal_loads_air_system.pytest_outdoor_air_method_flow_per_area2021-09-21 18:05:28True
outdoor_air_method_flow_per_persontest_zone_ideal_loads_air_system.pytest_outdoor_air_method_flow_per_person2021-09-21 18:05:55True
outdoor_air_method_flow_per_zonetest_zone_ideal_loads_air_system.pytest_outdoor_air_method_flow_per_zone2021-09-21 18:06:22True
system_availability_schedule_nametest_zone_ideal_loads_air_system.pytest_system_availability_schedule_name2021-09-21 18:06:50True
+

Simulation : Zone : PTAC

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_ptac.pytest_baseboard_heating_availability_schedule_name2021-09-21 18:07:20True
baseboard_heating_capacitytest_zone_ptac.pytest_baseboard_heating_capacity2021-09-21 18:07:52True
baseboard_heating_type_electrictest_zone_ptac.pytest_baseboard_heating_type_electric2021-09-21 18:08:20True
baseboard_heating_type_hot_watertest_zone_ptac.pytest_baseboard_heating_type_hot_water2021-09-21 18:08:52True
capacity_control_methodtest_zone_ptac.pytest_capacity_control_method2021-09-21 18:09:21True
cooling_coil_availability_schedule_nametest_zone_ptac.pytest_cooling_coil_availability_schedule_name2021-09-21 18:09:49True
cooling_coil_gross_rated_cooling_coptest_zone_ptac.pytest_cooling_coil_gross_rated_cooling_cop2021-09-21 18:10:18True
cooling_coil_gross_rated_sensible_heat_ratiotest_zone_ptac.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 18:10:47True
cooling_coil_gross_rated_total_capacitytest_zone_ptac.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 18:11:16True
cooling_supply_air_flow_ratetest_zone_ptac.pytest_cooling_supply_air_flow_rate2021-09-21 18:11:47True
cooling_supply_air_flow_ratetest_zone_ptac.pytest_heating_supply_air_flow_rate2021-09-21 18:16:10True
dedicated_outdoor_air_system_nametest_zone_ptac.pytest_dedicated_outdoor_air_system_name2021-09-21 18:12:17True
gas_heating_coil_efficiencytest_zone_ptac.pytest_gas_heating_coil_efficiency2021-09-21 18:12:45True
gas_heating_coil_parasitic_electric_loadtest_zone_ptac.pytest_gas_heating_coil_parasitic_electric_load2021-09-21 18:13:14True
heating_coil_availability_schedule_nametest_zone_ptac.pytest_heating_coil_availability_schedule_name2021-09-21 18:13:43True
heating_coil_capacitytest_zone_ptac.pytest_heating_coil_capacity2021-09-21 18:14:12True
heating_coil_type_electrictest_zone_ptac.pytest_heating_coil_type_electric2021-09-21 18:14:40True
heating_coil_type_gastest_zone_ptac.pytest_heating_coil_type_gas2021-09-21 18:15:11True
heating_coil_type_hot_watertest_zone_ptac.pytest_heating_coil_type_hot_water2021-09-21 18:15:40True
no_load_supply_air_flow_ratetest_zone_ptac.pytest_no_load_supply_air_flow_rate2021-09-21 18:17:40True
outdoor_air_method_detailed_specificationtest_zone_ptac.pytest_outdoor_air_method_detailed_specification2021-09-21 18:18:11True
outdoor_air_method_flow_per_areatest_zone_ptac.pytest_outdoor_air_method_flow_per_area2021-09-21 18:18:39True
outdoor_air_method_flow_per_persontest_zone_ptac.pytest_outdoor_air_method_flow_per_person2021-09-21 18:19:08True
outdoor_air_method_flow_per_zonetest_zone_ptac.pytest_outdoor_air_method_flow_per_zone2021-09-21 18:19:37True
supply_fan_delta_pressuretest_zone_ptac.pytest_supply_fan_delta_pressure2021-09-21 18:20:05True
supply_fan_motor_efficiencytest_zone_ptac.pytest_supply_fan_motor_efficiency2021-09-21 18:20:37True
supply_fan_operating_mode_schedule_nametest_zone_ptac.pytest_supply_fan_operating_mode_schedule_name2021-09-21 18:21:06True
supply_fan_placementtest_zone_ptac.pytest_supply_fan_placement2021-09-21 18:21:34True
supply_fan_total_efficiencytest_zone_ptac.pytest_supply_fan_total_efficiency2021-09-21 18:22:03True
system_availability_schedule_nametest_zone_ptac.pytest_system_availability_schedule_name2021-09-21 18:22:35True
test_minimum_inputstest_zone_ptac.pytest_minimum_inputs2021-09-21 18:16:42True
test_minimum_inputs_doastest_zone_ptac.pytest_minimum_inputs_doas2021-09-21 18:17:11True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_ptac.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 18:23:34True
zone_cooling_sizing_factortest_zone_ptac.pytest_zone_cooling_sizing_factor2021-09-21 18:24:02True
zone_heating_sizing_factortest_zone_ptac.pytest_zone_heating_sizing_factor2021-09-21 18:25:30True
+

Simulation : Zone : PTHP

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_pthp.pytest_baseboard_heating_availability_schedule_name2021-09-21 18:26:01True
baseboard_heating_capacitytest_zone_pthp.pytest_baseboard_heating_capacity2021-09-21 18:26:30True
baseboard_heating_type_electrictest_zone_pthp.pytest_baseboard_heating_type_electric2021-09-21 18:26:59True
baseboard_heating_type_hot_watertest_zone_pthp.pytest_baseboard_heating_type_hot_water2021-09-21 18:27:28True
capacity_control_methodtest_zone_pthp.pytest_capacity_control_method2021-09-21 18:27:56True
cooling_coil_availability_schedule_nametest_zone_pthp.pytest_cooling_coil_availability_schedule_name2021-09-21 18:28:25True
cooling_coil_gross_rated_coptest_zone_pthp.pytest_cooling_coil_gross_rated_cop2021-09-21 18:28:55True
cooling_coil_gross_rated_sensible_heat_ratiotest_zone_pthp.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 18:29:25True
cooling_coil_gross_rated_total_capacitytest_zone_pthp.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 18:29:54True
cooling_supply_air_flow_ratetest_zone_pthp.pytest_cooling_supply_air_flow_rate2021-09-21 18:30:21True
cooling_supply_air_flow_ratetest_zone_pthp.pytest_heating_supply_air_flow_rate2021-09-21 18:35:12True
dedicated_outdoor_air_system_nametest_zone_pthp.pytest_dedicated_outdoor_air_system_name2021-09-21 18:30:50True
heat_pump_defrost_controltest_zone_pthp.pytest_heat_pump_defrost_control2021-09-21 18:31:18True
heat_pump_defrost_maximum_outdoor_dry_bulb_temperaturetest_zone_pthp.pytest_heat_pump_defrost_maximum_outdoor_dry_bulb_temperature2021-09-21 18:31:49True
heat_pump_defrost_strategytest_zone_pthp.pytest_heat_pump_defrost_strategy2021-09-21 18:32:17True
heat_pump_defrost_time_period_fractiontest_zone_pthp.pytest_heat_pump_defrost_time_period_fraction2021-09-21 18:32:48True
heat_pump_heating_coil_gross_rated_capacitytest_zone_pthp.pytest_heat_pump_heating_coil_gross_rated_capacity2021-09-21 18:33:16True
heat_pump_heating_coil_gross_rated_coptest_zone_pthp.pytest_heat_pump_heating_coil_gross_rated_cop2021-09-21 18:33:46True
heat_pump_heating_minimum_outdoor_dry_bulb_temperaturetest_zone_pthp.pytest_heat_pump_heating_minimum_outdoor_dry_bulb_temperature2021-09-21 18:34:14True
heating_coil_availability_schedule_nametest_zone_pthp.pytest_heating_coil_availability_schedule_name2021-09-21 18:34:44True
heating_coil_capacitytest_zone_pthp.pytest_supplemental_heating_coil_capacity2021-09-21 18:40:36True
no_load_supply_air_flow_ratetest_zone_pthp.pytest_no_load_supply_air_flow_rate2021-09-21 18:36:37True
outdoor_air_method_detailed_specificationtest_zone_pthp.pytest_outdoor_air_method_detailed_specification2021-09-21 18:37:08True
outdoor_air_method_flow_per_areatest_zone_pthp.pytest_outdoor_air_method_flow_per_area2021-09-21 18:37:36True
outdoor_air_method_flow_per_persontest_zone_pthp.pytest_outdoor_air_method_flow_per_person2021-09-21 18:38:04True
outdoor_air_method_flow_per_zonetest_zone_pthp.pytest_outdoor_air_method_flow_per_zone2021-09-21 18:38:35True
supplemental_gas_heating_coil_efficiencytest_zone_pthp.pytest_supplemental_gas_heating_coil_efficiency2021-09-21 18:39:03True
supplemental_gas_heating_coil_efficiencytest_zone_pthp.pytest_supplemental_gas_heating_coil_parasitic_electric_load2021-09-21 18:39:34True
supplemental_heating_coil_availability_schedule_nametest_zone_pthp.pytest_supplemental_heating_coil_availability_schedule_name2021-09-21 18:40:06True
supplemental_heating_coil_maximum_outdoor_dry_bulb_temperaturetest_zone_pthp.pytest_supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature2021-09-21 18:41:06True
supplemental_heating_coil_type_electrictest_zone_pthp.pytest_supplemental_heating_coil_type_electric2021-09-21 18:41:36True
supplemental_heating_coil_type_gastest_zone_pthp.pytest_supplemental_heating_coil_type_gas2021-09-21 18:42:07True
supplemental_heating_coil_type_hot_watertest_zone_pthp.pytest_supplemental_heating_coil_type_hot_water2021-09-21 18:42:36True
supply_fan_delta_pressuretest_zone_pthp.pytest_supply_fan_delta_pressure2021-09-21 18:43:04True
supply_fan_motor_efficiencytest_zone_pthp.pytest_supply_fan_motor_efficiency2021-09-21 18:43:32True
supply_fan_operating_mode_schedule_nametest_zone_pthp.pytest_supply_fan_operating_mode_schedule_name2021-09-21 18:44:03True
supply_fan_placementtest_zone_pthp.pytest_supply_fan_placement2021-09-21 18:44:31True
supply_fan_total_efficiencytest_zone_pthp.pytest_supply_fan_total_efficiency2021-09-21 18:44:59True
system_availability_schedule_nametest_zone_pthp.pytest_system_availability_schedule_name2021-09-21 18:45:27True
test_minimum_inputstest_zone_pthp.pytest_minimum_inputs2021-09-21 18:35:40True
test_minimum_inputs_doastest_zone_pthp.pytest_minimum_inputs_doas2021-09-21 18:36:09True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_pthp.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 18:46:25True
zone_cooling_sizing_factortest_zone_pthp.pytest_zone_cooling_sizing_factor2021-09-21 18:46:55True
zone_heating_sizing_factortest_zone_pthp.pytest_zone_heating_sizing_factor2021-09-21 18:48:22True
+

Simulation : Zone : Unitary

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_unitary.pytest_baseboard_heating_availability_schedule_name2021-09-21 18:48:53True
baseboard_heating_capacitytest_zone_unitary.pytest_baseboard_heating_capacity2021-09-21 18:49:27True
baseboard_heating_type_electrictest_zone_unitary.pytest_baseboard_heating_type_electric2021-09-21 18:49:57True
baseboard_heating_type_hot_watertest_zone_unitary.pytest_baseboard_heating_type_hot_water2021-09-21 18:50:29True
outdoor_air_method_detailed_specificationtest_zone_unitary.pytest_outdoor_air_method_detailed_specification2021-09-21 18:51:35True
outdoor_air_method_flow_per_areatest_zone_unitary.pytest_outdoor_air_method_flow_per_area2021-09-21 18:52:06True
outdoor_air_method_flow_per_persontest_zone_unitary.pytest_outdoor_air_method_flow_per_person2021-09-21 18:52:37True
outdoor_air_method_flow_per_zonetest_zone_unitary.pytest_outdoor_air_method_flow_per_zone2021-09-21 18:53:08True
return_plenum_nametest_zone_unitary.pytest_return_plenum_name2021-09-21 18:53:39True
supply_air_maximum_flow_ratetest_zone_unitary.pytest_supply_air_maximum_flow_rate2021-09-21 18:54:10True
supply_fan_operating_mode_schedule_nametest_system_unitary.pytest_supply_fan_operating_mode_schedule_name2021-09-21 14:19:57True
supply_plenum_nametest_zone_unitary.pytest_supply_plenum_name2021-09-21 18:54:46True
test_minimum_inputstest_zone_unitary.pytest_minimum_inputs2021-09-21 18:51:01True
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_unitary.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 18:55:19True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_unitary.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 18:56:24True
zone_cooling_sizing_factortest_zone_unitary.pytest_zone_cooling_sizing_factor2021-09-21 18:57:00True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_unitary.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 18:57:31True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_unitary.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 18:58:05True
zone_heating_sizing_factortest_zone_unitary.pytest_zone_heating_sizing_factor2021-09-21 18:58:35True
+

Simulation : Zone : VAV

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_vav.pytest_baseboard_heating_availability_schedule_name2021-09-21 18:59:07True
baseboard_heating_capacitytest_zone_vav.pytest_baseboard_heating_capacity2021-09-21 18:59:38True
baseboard_heating_type_electrictest_zone_vav.pytest_baseboard_heating_type_electric2021-09-21 19:00:11True
baseboard_heating_type_hot_watertest_zone_vav.pytest_baseboard_heating_type_hot_water2021-09-21 19:00:45True
damper_heating_actiontest_zone_vav.pytest_damper_heating_action2021-09-21 19:01:19True
maximum_flow_fraction_during_reheattest_zone_vav.pytest_maximum_flow_fraction_during_reheat2021-09-21 19:02:22True
maximum_flow_per_zone_floor_area_during_reheattest_zone_vav.pytest_maximum_flow_per_zone_floor_area_during_reheat2021-09-21 19:02:56True
maximum_reheat_air_temperaturetest_zone_vav.pytest_maximum_reheat_air_temperature2021-09-21 19:03:27True
outdoor_air_method_detailed_specificationtest_zone_vav.pytest_design_specification_outdoor_air_object_name_for_control2021-09-21 19:01:51True
outdoor_air_method_detailed_specificationtest_zone_vav.pytest_outdoor_air_method_detailed_specification2021-09-21 19:04:00True
outdoor_air_method_flow_per_areatest_zone_vav.pytest_outdoor_air_method_flow_per_area2021-09-21 19:04:35True
outdoor_air_method_flow_per_persontest_zone_vav.pytest_outdoor_air_method_flow_per_person2021-09-21 19:05:06True
outdoor_air_method_flow_per_zonetest_zone_vav.pytest_outdoor_air_method_flow_per_zone2021-09-21 19:05:38True
reheat_coil_availability_schedule_nametest_zone_vav.pytest_reheat_coil_availability_schedule_name2021-09-21 19:06:09True
reheat_coil_type_electrictest_zone_vav.pytest_reheat_coil_type_electric2021-09-21 19:06:40True
reheat_coil_type_gastest_zone_vav.pytest_reheat_coil_type_gas2021-09-21 19:07:11True
reheat_coil_type_hot_watertest_zone_vav.pytest_reheat_coil_type_hot_water2021-09-21 19:07:45True
reheat_coil_type_nonetest_zone_vav.pytest_reheat_coil_type_none2021-09-21 19:08:16True
return_plenum_nametest_zone_vav.pytest_return_plenum_name2021-09-21 19:08:52True
supply_air_maximum_flow_ratetest_zone_vav.pytest_supply_air_maximum_flow_rate2021-09-21 19:09:24True
supply_plenum_nametest_zone_vav.pytest_supply_plenum_name2021-09-21 19:09:55True
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:10:30True
zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperaturetest_zone_vav.pytest_zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperature2021-09-21 19:11:01True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:11:33True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:12:38True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:13:11True
zone_heating_sizing_factortest_zone_vav.pytest_zone_cooling_sizing_factor2021-09-21 19:12:04True
zone_heating_sizing_factortest_zone_vav.pytest_zone_heating_sizing_factor2021-09-21 19:13:42True
zone_minimum_air_flow_input_method_constanttest_zone_vav.pytest_zone_minimum_air_flow_input_method_constant2021-09-21 19:14:14True
zone_minimum_air_flow_input_method_fixed_flow_ratetest_zone_vav.pytest_zone_minimum_air_flow_input_method_fixed_flow_rate2021-09-21 19:14:48True
zone_minimum_air_flow_input_method_scheduledtest_zone_vav.pytest_zone_minimum_air_flow_input_method_scheduled2021-09-21 19:15:19True
+

Simulation : Zone : VAV : FanPowered

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_vav_fan_powered.pytest_baseboard_heating_availability_schedule_name2021-09-21 19:15:50True
baseboard_heating_capacitytest_zone_vav_fan_powered.pytest_baseboard_heating_capacity2021-09-21 19:16:24True
baseboard_heating_type_electrictest_zone_vav_fan_powered.pytest_baseboard_heating_type_electric2021-09-21 19:16:57True
baseboard_heating_type_hot_watertest_zone_vav_fan_powered.pytest_baseboard_heating_type_hot_water2021-09-21 19:17:28True
fan_delta_pressuretest_zone_vav_fan_powered.pytest_fan_delta_pressure2021-09-21 19:18:00True
fan_motor_efficiencytest_zone_vav_fan_powered.pytest_fan_motor_efficiency2021-09-21 19:18:31True
fan_total_efficiencytest_zone_vav_fan_powered.pytest_fan_total_efficiency2021-09-21 19:19:02True
flow_type_parallestest_zone_vav_fan_powered.pytest_flow_type_parallel2021-09-21 19:19:33True
flow_type_seriestest_zone_vav_fan_powered.pytest_flow_type_series2021-09-21 19:20:36True
flow_type_series_from_plenumtest_zone_vav_fan_powered.pytest_flow_type_parallel_from_plenum2021-09-21 19:20:05True
flow_type_series_from_plenumtest_zone_vav_fan_powered.pytest_flow_type_series_from_plenum2021-09-21 19:21:07True
outdoor_air_method_detailed_specificationtest_zone_vav_fan_powered.pytest_outdoor_air_method_detailed_specification2021-09-21 19:21:41True
outdoor_air_method_flow_per_areatest_zone_vav_fan_powered.pytest_outdoor_air_method_flow_per_area2021-09-21 19:22:13True
outdoor_air_method_flow_per_persontest_zone_vav_fan_powered.pytest_outdoor_air_method_flow_per_person2021-09-21 19:22:44True
outdoor_air_method_flow_per_zonetest_zone_vav_fan_powered.pytest_outdoor_air_method_flow_per_zone2021-09-21 19:23:18True
primary_supply_air_maximum_flow_ratetest_zone_vav_fan_powered.pytest_primary_supply_air_maximum_flow_rate2021-09-21 19:23:50True
primary_supply_air_minimum_flow_fractiontest_zone_vav_fan_powered.pytest_primary_supply_air_minimum_flow_fraction2021-09-21 19:24:21True
reheat_coil_availability_schedule_nametest_zone_vav_fan_powered.pytest_reheat_coil_availability_schedule_name2021-09-21 19:24:52True
reheat_coil_type_electrictest_zone_vav_fan_powered.pytest_reheat_coil_type_electric2021-09-21 19:25:23True
reheat_coil_type_gastest_zone_vav_fan_powered.pytest_reheat_coil_type_gas2021-09-21 19:25:54True
reheat_coil_type_hot_watertest_zone_vav_fan_powered.pytest_reheat_coil_type_hot_water2021-09-21 19:26:28True
return_plenum_nametest_zone_vav_fan_powered.pytest_return_plenum_name2021-09-21 19:27:00True
supply_plenum_nametest_zone_vav_fan_powered.pytest_supply_plenum_name2021-09-21 19:27:31True
zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperaturetest_zone_vav_fan_powered.pytest_zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperature2021-09-21 19:28:35True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav_fan_powered.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:29:06True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav_fan_powered.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:30:09True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav_fan_powered.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:30:40True
zone_heating_sizing_factortest_zone_vav_fan_powered.pytest_zone_cooling_sizing_factor2021-09-21 19:29:38True
zone_heating_sizing_factortest_zone_vav_fan_powered.pytest_zone_heating_sizing_factor2021-09-21 19:31:11True
zone_piu_fan_schedule_nametest_zone_vav_fan_powered.pytest_zone_piu_fan_schedule_name2021-09-21 19:31:42True
+

Simulation : Zone : VAV : HeadAndCool

+ + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
outdoor_air_method_detailed_specificationtest_zone_vav_heat_and_cool.pytest_outdoor_air_method_detailed_specification2021-09-21 19:35:14True
outdoor_air_method_flow_per_areatest_zone_vav_heat_and_cool.pytest_outdoor_air_method_flow_per_area2021-09-21 19:35:45True
+

Simulation : Zone : VAV : HeatAndCool

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_vav_heat_and_cool.pytest_baseboard_heating_availability_schedule_name2021-09-21 19:32:11True
baseboard_heating_capacitytest_zone_vav_heat_and_cool.pytest_baseboard_heating_capacity2021-09-21 19:32:40True
baseboard_heating_type_electrictest_zone_vav_heat_and_cool.pytest_baseboard_heating_type_electric2021-09-21 19:33:09True
baseboard_heating_type_hot_watertest_zone_vav_heat_and_cool.pytest_baseboard_heating_type_hot_water2021-09-21 19:33:41True
constant_minimum_air_flow_fractiontest_zone_vav_heat_and_cool.pytest_constant_minimum_air_flow_fraction2021-09-21 19:34:12True
maximum_reheat_air_temperaturetest_zone_vav_heat_and_cool.pytest_maximum_reheat_air_temperature2021-09-21 19:34:45True
outdoor_air_method_flow_per_persontest_zone_vav_heat_and_cool.pytest_outdoor_air_method_flow_per_person2021-09-21 19:36:14True
outdoor_air_method_flow_per_zonetest_zone_vav_heat_and_cool.pytest_outdoor_air_method_flow_per_zone2021-09-21 19:36:43True
reheat_coil_availability_schedule_nametest_zone_vav_heat_and_cool.pytest_reheat_coil_availability_schedule_name2021-09-21 19:37:12True
reheat_coil_type_electrictest_zone_vav_heat_and_cool.pytest_reheat_coil_type_electric2021-09-21 19:37:42True
reheat_coil_type_gastest_zone_vav_heat_and_cool.pytest_reheat_coil_type_gas2021-09-21 19:38:11True
reheat_coil_type_hot_watertest_zone_vav_heat_and_cool.pytest_reheat_coil_type_hot_water2021-09-21 19:38:41True
reheat_coil_type_nonetest_zone_vav_heat_and_cool.pytest_reheat_coil_type_none2021-09-21 19:39:10True
return_plenum_nametest_zone_vav_heat_and_cool.pytest_return_plenum_name2021-09-21 19:39:39True
supply_air_maximum_flow_ratetest_zone_vav_heat_and_cool.pytest_supply_air_maximum_flow_rate2021-09-21 19:40:07True
supply_plenum_nametest_zone_vav_heat_and_cool.pytest_supply_plenum_name2021-09-21 19:40:37True
zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperaturetest_zone_vav_heat_and_cool.pytest_zone_cooling_design_supply_air_temperature_input_method_system_supply_air_temperature2021-09-21 19:41:36True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav_heat_and_cool.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:42:05True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vav_heat_and_cool.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 19:43:03True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_vav_heat_and_cool.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 19:43:32True
zone_heating_sizing_factortest_zone_vav_heat_and_cool.pytest_zone_cooling_sizing_factor2021-09-21 19:42:34True
zone_heating_sizing_factortest_zone_vav_heat_and_cool.pytest_zone_heating_sizing_factor2021-09-21 19:44:02True
+

Simulation : Zone : VRF

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_vrf.pytest_baseboard_heating_availability_schedule_name2021-09-21 19:44:35True
baseboard_heating_capacitytest_zone_vrf.pytest_baseboard_heating_capacity2021-09-21 19:45:05True
baseboard_heating_type_electrictest_zone_vrf.pytest_baseboard_heating_type_electric2021-09-21 19:45:36True
baseboard_heating_type_hot_watertest_zone_vrf.pytest_baseboard_heating_type_hot_water2021-09-21 19:46:08True
cooling_coil_availability_schedule_nametest_zone_vrf.pytest_cooling_coil_availability_schedule_name2021-09-21 19:46:40True
cooling_coil_gross_rated_sensible_heat_ratiotest_zone_vrf.pytest_cooling_coil_gross_rated_sensible_heat_ratio2021-09-21 19:47:09True
cooling_coil_gross_rated_total_capacitytest_zone_vrf.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 19:47:41True
cooling_coil_type_variable_refrigerant_flow_dxtest_zone_vrf.pytest_cooling_coil_type_none2021-09-21 19:48:13True
cooling_coil_type_variable_refrigerant_flow_dxtest_zone_vrf.pytest_cooling_coil_type_variable_refrigerant_flow_dx2021-09-21 19:48:42True
cooling_outdoor_air_flow_ratetest_zone_vrf.pytest_cooling_outdoor_air_flow_rate2021-09-21 19:49:13False
cooling_supply_air_flow_ratetest_zone_vrf.pytest_cooling_supply_air_flow_rate2021-09-21 19:49:43True
dedicated_outdoor_air_system_nametest_zone_vrf.pytest_dedicated_outdoor_air_system_name2021-09-21 19:50:17True
heat_pump_heating_coil_availability_schedule_nametest_zone_vrf.pytest_heat_pump_heating_coil_availability_schedule_name2021-09-21 19:50:46True
heat_pump_heating_coil_gross_rated_total_capacitytest_zone_vrf.pytest_heat_pump_heating_coil_gross_rated_capacity2021-09-21 19:51:16True
heat_pump_heating_coil_type_variable_refrigerant_flow_dxtest_zone_vrf.pytest_heat_pump_heating_coil_type_none2021-09-21 19:51:46True
heat_pump_heating_coil_type_variable_refrigerant_flow_dxtest_zone_vrf.pytest_heat_pump_heating_coil_type_variable_refrigerant_flow_dx2021-09-21 19:52:15True
heating_outdoor_air_flow_ratetest_zone_vrf.pytest_heating_outdoor_air_flow_rate2021-09-21 19:52:45False
heating_supply_air_flow_ratetest_zone_vrf.pytest_heating_supply_air_flow_rate2021-09-21 19:53:17True
no_cooling_supply_air_flow_ratetest_zone_vrf.pytest_no_cooling_supply_air_flow_rate2021-09-21 19:54:30True
no_heating_supply_air_flow_ratetest_zone_vrf.pytest_no_heating_supply_air_flow_rate2021-09-21 19:54:59True
no_load_outdoor_air_flow_ratetest_zone_vrf.pytest_no_load_outdoor_air_flow_rate2021-09-21 19:55:29False
outdoor_air_method_detailed_specificationtest_zone_vrf.pytest_outdoor_air_method_detailed_specification2021-09-21 19:55:58True
outdoor_air_method_flow_per_areatest_zone_vrf.pytest_outdoor_air_method_flow_per_area2021-09-21 19:56:29True
outdoor_air_method_flow_per_persontest_zone_vrf.pytest_outdoor_air_method_flow_per_person2021-09-21 19:57:02True
outdoor_air_method_flow_per_zonetest_zone_vrf.pytest_outdoor_air_method_flow_per_zone2021-09-21 19:57:31True
rated_total_heating_capacity_sizing_ratiotest_zone_vrf.pytest_rated_total_heating_capacity_sizing_ratio2021-09-21 19:58:01True
supply_air_fan_placementtest_zone_vrf.pytest_supply_air_fan_placement_blow_through2021-09-21 19:58:30True
supply_air_fan_placementtest_zone_vrf.pytest_supply_air_fan_placement_draw_through2021-09-21 19:59:02True
supply_fan_delta_pressuretest_zone_vrf.pytest_supply_fan_delta_pressure2021-09-21 19:59:32True
supply_fan_motor_efficiencytest_zone_vrf.pytest_supply_fan_motor_efficiency2021-09-21 20:00:01True
supply_fan_operating_mode_schedule_nametest_zone_vrf.pytest_supply_fan_operating_mode_schedule_name2021-09-21 20:00:30True
supply_fan_total_efficiencytest_zone_vrf.pytest_supply_fan_total_efficiency2021-09-21 20:01:00True
system_availability_schedule_nametest_zone_vrf.pytest_system_availability_schedule_name2021-09-21 20:01:29True
test_minimum_inputstest_zone_vrf.pytest_minimum_inputs2021-09-21 19:53:36False
test_minimum_inputs_doastest_zone_vrf.pytest_minimum_inputs_doas2021-09-21 19:53:59False
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vrf.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 20:01:59True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_vrf.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 20:02:28True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_vrf.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 20:03:30True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_vrf.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 20:04:02True
zone_heating_sizing_factortest_zone_vrf.pytest_zone_cooling_sizing_factor2021-09-21 20:02:59True
zone_heating_sizing_factortest_zone_vrf.pytest_zone_heating_sizing_factor2021-09-21 20:04:31True
+

Simulation : Zone : WaterToAirHeatPump

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
baseboard_heating_availability_schedule_nametest_zone_water_to_air_heat_pump.pytest_baseboard_heating_availability_schedule_name2021-09-21 20:05:00True
baseboard_heating_capacitytest_zone_water_to_air_heat_pump.pytest_baseboard_heating_capacity2021-09-21 20:05:32True
baseboard_heating_type_electrictest_zone_water_to_air_heat_pump.pytest_baseboard_heating_type_electric2021-09-21 20:06:01True
baseboard_heating_type_hot_watertest_zone_water_to_air_heat_pump.pytest_baseboard_heating_type_hot_water2021-09-21 20:06:31True
cooling_coil_gross_rated_cooling_coptest_zone_water_to_air_heat_pump.pytest_cooling_coil_gross_rated_cooling_cop2021-09-21 20:07:00True
cooling_coil_gross_rated_total_capacitytest_zone_water_to_air_heat_pump.pytest_cooling_coil_gross_rated_total_capacity2021-09-21 20:07:29True
cooling_supply_air_flow_ratetest_zone_water_to_air_heat_pump.pytest_cooling_supply_air_flow_rate2021-09-21 20:07:58True
dedicated_outdoor_air_system_nametest_zone_water_to_air_heat_pump.pytest_dedicated_outdoor_air_system_name2021-09-21 20:08:28True
fraction_of_on_cycle_power_usetest_zone_water_to_air_heat_pump.pytest_fraction_of_on_cycle_power_use2021-09-21 20:09:00True
heat_pump_coil_water_flow_modetest_zone_water_to_air_heat_pump.pytest_heat_pump_coil_water_flow_mode2021-09-21 20:09:29True
heat_pump_fan_delay_timetest_zone_water_to_air_heat_pump.pytest_heat_pump_fan_delay_time2021-09-21 20:09:59True
heat_pump_heating_coil_gross_rated_capacitytest_zone_water_to_air_heat_pump.pytest_heat_pump_heating_coil_gross_rated_capacity2021-09-21 20:10:28True
heat_pump_heating_coil_gross_rated_coptest_zone_water_to_air_heat_pump.pytest_heat_pump_heating_coil_gross_rated_cop2021-09-21 20:10:59True
heat_pump_heating_coil_type_hot_watertest_zone_water_to_air_heat_pump.pytest_supplemental_heating_coil_type_hot_water2021-09-21 20:18:03True
heat_pump_time_constanttest_zone_water_to_air_heat_pump.pytest_heat_pump_time_constant2021-09-21 20:11:31True
heating_supply_air_flow_ratetest_zone_water_to_air_heat_pump.pytest_heating_supply_air_flow_rate2021-09-21 20:12:00True
maximum_cycling_ratetest_zone_water_to_air_heat_pump.pytest_maximum_cycling_rate2021-09-21 20:12:29True
no_load_supply_air_flow_ratetest_zone_water_to_air_heat_pump.pytest_no_load_supply_air_flow_rate2021-09-21 20:14:04True
outdoor_air_method_detailed_specificationtest_zone_water_to_air_heat_pump.pytest_outdoor_air_method_detailed_specification2021-09-21 20:14:33True
outdoor_air_method_flow_per_areatest_zone_water_to_air_heat_pump.pytest_outdoor_air_method_flow_per_area2021-09-21 20:15:01True
outdoor_air_method_flow_per_persontest_zone_water_to_air_heat_pump.pytest_outdoor_air_method_flow_per_person2021-09-21 20:15:34True
outdoor_air_method_flow_per_zonetest_zone_water_to_air_heat_pump.pytest_outdoor_air_method_flow_per_zone2021-09-21 20:16:03True
supplemental_heating_coil_availability_schedule_nametest_zone_water_to_air_heat_pump.pytest_supplemental_heating_coil_availability_schedule_name2021-09-21 20:16:35True
supplemental_heating_coil_capacitytest_zone_water_to_air_heat_pump.pytest_supplemental_heating_coil_capacity2021-09-21 20:17:04True
supplemental_heating_coil_type_electrictest_zone_water_to_air_heat_pump.pytest_supplemental_heating_coil_type_electric2021-09-21 20:17:33True
supply_fan_delta_pressuretest_zone_water_to_air_heat_pump.pytest_supply_fan_delta_pressure2021-09-21 20:18:32True
supply_fan_motor_efficiencytest_zone_water_to_air_heat_pump.pytest_supply_fan_motor_efficiency2021-09-21 20:19:01True
supply_fan_operating_mode_schedule_nametest_zone_water_to_air_heat_pump.pytest_supply_fan_operating_mode_schedule_name2021-09-21 20:19:30True
supply_fan_placement_blow_throughtest_zone_water_to_air_heat_pump.pytest_supply_fan_placement_blow_through2021-09-21 20:19:59True
supply_fan_placement_draw_throughtest_zone_water_to_air_heat_pump.pytest_supply_fan_placement_draw_through2021-09-21 20:20:30True
supply_fan_total_efficiencytest_zone_water_to_air_heat_pump.pytest_supply_fan_total_efficiency2021-09-21 20:20:59True
system_availability_schedule_nametest_zone_water_to_air_heat_pump.pytest_system_availability_schedule_name2021-09-21 20:21:28True
test_minimum_inputstest_zone_water_to_air_heat_pump.pytest_minimum_inputs2021-09-21 20:13:01True
test_minimum_inputstest_zone_water_to_air_heat_pump.pytest_minimum_inputs_doas2021-09-21 20:13:33True
zone_cooling_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_water_to_air_heat_pump.pytest_zone_cooling_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 20:21:57True
zone_cooling_design_supply_air_temperature_input_method_temperature_differencetest_zone_water_to_air_heat_pump.pytest_zone_cooling_design_supply_air_temperature_input_method_temperature_difference2021-09-21 20:22:27True
zone_cooling_sizing_factortest_zone_water_to_air_heat_pump.pytest_zone_cooling_sizing_factor2021-09-21 20:23:00True
zone_heating_design_supply_air_temperature_input_method_supply_air_temperaturetest_zone_water_to_air_heat_pump.pytest_zone_heating_design_supply_air_temperature_input_method_supply_air_temperature2021-09-21 20:23:33True
zone_heating_design_supply_air_temperature_input_method_temperature_differencetest_zone_water_to_air_heat_pump.pytest_zone_heating_design_supply_air_temperature_input_method_temperature_difference2021-09-21 20:24:02True
zone_heating_sizing_factortest_zone_water_to_air_heat_pump.pytest_zone_heating_sizing_factor2021-09-21 20:24:32True
+ + + + \ No newline at end of file diff --git a/src/pyExpandObjects/docs/_static/testing_base.html b/src/pyExpandObjects/docs/_static/testing_base.html new file mode 100644 index 00000000000..16ff11ffa5b --- /dev/null +++ b/src/pyExpandObjects/docs/_static/testing_base.html @@ -0,0 +1 @@ +Main Page \ No newline at end of file diff --git a/src/pyExpandObjects/docs/_static/testing_output.html b/src/pyExpandObjects/docs/_static/testing_output.html new file mode 100644 index 00000000000..7367d7ac2e6 --- /dev/null +++ b/src/pyExpandObjects/docs/_static/testing_output.html @@ -0,0 +1,352 @@ + + + + + Unittest Results + Main Page

HVACTemplate

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Create always value scheduletest_expand_objects.pytest_make_compact_schedule_always_val2021-09-21 20:24:38True
Verify Bad templates caughttest_hvac_template.pytest_bad_template_name_returns_error2021-09-21 20:24:49True
Verify bad templates are rejectedtest_hvac_template.pytest_thermostat_bad_templates_raise_error2021-09-21 20:25:06True
Verify plant equipment class templates createdtest_hvac_template.pytest_plant_equipment_templates_have_good_objects2021-09-21 20:24:59True
Verify plant loop class templates createdtest_hvac_template.pytest_plant_loop_templates_have_good_objects2021-09-21 20:25:00True
Verify system class templates createdtest_hvac_template.pytest_system_templates_have_good_objects2021-09-21 20:25:03True
Verify thermostat class templates createdtest_hvac_template.pytest_thermostat_templates_have_good_objects2021-09-21 20:25:09True
Verify zone class templates createdtest_hvac_template.pytest_zone_templates_have_good_objects2021-09-21 20:25:12True
+

HVACTemplate : PlantEquipment

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Input Template Requiredtest_expand_plant_equipment.pytest_check_templates_are_required2021-09-21 20:24:40True
Verify Plant Equipment template completes from parent class (HVACTemplate)test_hvac_template.pytest_plant_equipment_processing2021-09-21 20:24:58True
Verify valid template objecttest_expand_plant_equipment.pytest_verify_good_template2021-09-21 20:24:40True
+

HVACTemplate : PlantLoop

+ + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Input Template Requiredtest_expand_plant_loop.pytest_check_templates_are_required2021-09-21 20:24:41True
Verify valid template objecttest_expand_plant_loop.pytest_verify_good_template2021-09-21 20:24:41True
+

HVACTemplate : System

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Input Template Requiredtest_expand_system.pytest_check_templates_are_required2021-09-21 20:24:41True
VAV w zone connectionstest_systems.pytest_simulation2021-09-21 08:23:28True
Verify System template completes from parent class (HVACTemplate)test_hvac_template.pytest_system_processing2021-09-21 20:25:02True
Verify valid template objecttest_expand_system.pytest_verify_good_template2021-09-21 20:24:42True
+

HVACTemplate : Thermostat

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Assign schedule from constant setpointtest_expand_thermostats.pytest_assign_thermostat_schedule_from_constant_setpoint2021-09-21 20:24:42True
Create schedule from constant setpointtest_expand_thermostats.pytest_create_thermostat_schedule_from_constant_setpoint2021-09-21 20:24:42True
Input Template Requiredtest_expand_thermostats.pytest_check_templates_are_required2021-09-21 20:24:42True
Processing testtest_expand_thermostats.pytest_processing2021-09-21 20:24:43True
Reject empty templatetest_expand_thermostats.pytest_reject_no_inputs2021-09-21 20:24:43True
Simulation testtest_thermostats.pytest_simulation2021-09-21 08:23:41True
Verify Thermostat template completes from parent class (HVACTemplate)test_hvac_template.pytest_thermostat_processing2021-09-21 20:25:08True
Verify valid template objecttest_expand_thermostats.pytest_verify_good_template2021-09-21 20:24:43True
+

HVACTemplate : Thermostat : Options

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
DualSetpoint from schedulestest_expand_thermostats.pytest_create_dual_thermostat_from_schedules2021-09-21 20:24:42True
DualSetpoint from setpointstest_expand_thermostats.pytest_create_dual_thermostat_from_setpoints2021-09-21 20:24:42True
Object summary testtest_expand_thermostats.pytest_check_output_objects2021-09-21 20:24:42True
SingleCooling from scheduletest_expand_thermostats.pytest_create_thermostat_single_cooling_from_schedule2021-09-21 20:24:42True
SingleCooling from setpointtest_expand_thermostats.pytest_create_thermostat_single_cooling_from_setpoint2021-09-21 20:24:42True
SingleHeating from scheduletest_expand_thermostats.pytest_create_thermostat_single_heating_from_schedule2021-09-21 20:24:42True
SingleHeating from setpointtest_expand_thermostats.pytest_create_thermostat_single_heating_from_setpoint2021-09-21 20:24:43True
+

HVACTemplate : Zone

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestFileNameFunctionNameLast CheckStatus
Input Template Requiredtest_expand_zone.pytest_check_templates_are_required2021-09-21 20:24:44True
Test all componentstest_expand_zone.pytest_processing2021-09-21 20:24:45True
Verify Zone template completes from parent class (HVACTemplate)test_hvac_template.pytest_zone_processing2021-09-21 20:25:12True
Verify valid template objecttest_expand_zone.pytest_verify_good_template2021-09-21 20:24:46True
+ + + + \ No newline at end of file diff --git a/src/pyExpandObjects/docs/conf.py b/src/pyExpandObjects/docs/conf.py new file mode 100644 index 00000000000..898bd6a8879 --- /dev/null +++ b/src/pyExpandObjects/docs/conf.py @@ -0,0 +1,52 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import os +import sys +sys.path.insert(0, os.path.abspath('..')) +sys.path.insert(0, os.path.abspath('../src')) + +# -- Project information ----------------------------------------------------- + +project = 'EpJSON ExpandObjects' +copyright = '2021, GARD Analytics and NREL for US DOE' +author = 'GARD Analytics and NREL for US DOE' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = ['sphinx.ext.autodoc', ] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'alabaster' + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] \ No newline at end of file diff --git a/src/pyExpandObjects/docs/index.rst b/src/pyExpandObjects/docs/index.rst new file mode 100644 index 00000000000..73724648554 --- /dev/null +++ b/src/pyExpandObjects/docs/index.rst @@ -0,0 +1,40 @@ +.. EpJSON ExpandObjects documentation master file, created by + sphinx-quickstart on Tue Feb 2 14:04:14 2021. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to EpJSON ExpandObjects's documentation! +================================================ + +Documentation +************* + +.. toctree:: + :maxdepth: 2 + :caption: Overview: + + CodeStructureOverview + +.. toctree:: + :maxdepth: 2 + :caption: Python Documentation: + + General + HVACTemplate + ExpandObjects + +Testing Reports +*************** + +* `Testing Outputs`_ +* `Simulation Outputs`_ + +.. _Testing Outputs: _static/testing_output.html +.. _Simulation Outputs: _static/simulation_output.html + +Indices and tables +****************** + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/src/pyExpandObjects/docs/make.bat b/src/pyExpandObjects/docs/make.bat new file mode 100644 index 00000000000..2119f51099b --- /dev/null +++ b/src/pyExpandObjects/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/src/pyExpandObjects/logs/logging.conf b/src/pyExpandObjects/logs/logging.conf new file mode 100644 index 00000000000..dd997716136 --- /dev/null +++ b/src/pyExpandObjects/logs/logging.conf @@ -0,0 +1,56 @@ +[loggers] +keys=root, console_only_logger, expand_objects_logger, testing_logger + +[handlers] +keys=base_Handler, testing_Handler, consoleHandler + +[formatters] +keys=simpleFormatter, testingFormatter + +[logger_root] +level=DEBUG +handlers=consoleHandler + +[logger_console_only_logger] +level=DEBUG +handlers=consoleHandler +qualname=console_only_logger +propagate=0 + +[logger_expand_objects_logger] +level=DEBUG +handlers=base_Handler +qualname=expand_objects_logger +propagate=1 + +[logger_testing_logger] +level=DEBUG +handlers=testing_Handler +qualname=testing_logger +propagate=0 + +[handler_consoleHandler] +class=StreamHandler +level=NOTSET +formatter=simpleFormatter +args=(sys.stdout,) + +[handler_base_Handler] +class=handlers.RotatingFileHandler +level=NOTSET +formatter=simpleFormatter +args=(r'%(base_log_filename)s', 'a', 10000000, 'utf-8') + +[handler_testing_Handler] +class=handlers.RotatingFileHandler +level=NOTSET +formatter=testingFormatter +args=(r'%(testing_log_filename)s', 'a', 10000000, 'utf-8') + +[formatter_simpleFormatter] +format=%(asctime)s - %(name)s - %(levelname)s - %(message)s +datefmt=%Y-%m-%d %H:%M:%S + +[formatter_testingFormatter] +format=%(asctime)s, %(message)s +datefmt=%Y-%m-%d %H:%M:%S \ No newline at end of file diff --git a/src/pyExpandObjects/requirements.txt b/src/pyExpandObjects/requirements.txt new file mode 100644 index 00000000000..9740f9228b7 --- /dev/null +++ b/src/pyExpandObjects/requirements.txt @@ -0,0 +1,20 @@ + +# always needed +jsonschema==3.2.0 +pyYaml==5.4.1 + +# for building sphinx +sphinx==3.4.3 + +# for local testing +flake8==3.8.4 +nose==1.3.7 +coverage==5.4 + +# for testing on CI so it can push to coveralls +coveralls==3.0.0 +pandas==1.2.3 +nose-exclude==0.5.0 + +# for building packages +pyinstaller==4.2 diff --git a/src/pyExpandObjects/setup.cfg b/src/pyExpandObjects/setup.cfg new file mode 100644 index 00000000000..63559041223 --- /dev/null +++ b/src/pyExpandObjects/setup.cfg @@ -0,0 +1,6 @@ +[nosetests] +with-coverage=1 +cover-erase=1 +cover-html=1 +exclude-dir=tests/simulations +cover-package=src diff --git a/src/pyExpandObjects/setup.py b/src/pyExpandObjects/setup.py new file mode 100644 index 00000000000..8d089b02eb6 --- /dev/null +++ b/src/pyExpandObjects/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + +setup( + name='pyExpandObjects', + version='0.1', + packages=['src'], + url='https://github.com/john-grando/pyExpandObjects', + license='', + author='GARD Analytics and NREL for US DOE', + author_email='', + description='Tool for Expanding EpJSON Templates', + entry_points={ + 'console_scripts': ['expandobjects=src.main:main'], + } +) diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_base.epJSON new file mode 100644 index 00000000000..10c83076bde --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_base.epJSON @@ -0,0 +1,2864 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ventilation Standard Density Volume Flow Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Baseboard Total Heating Rate" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 21.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 21.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "No-Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "VENT-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneVentilation:DesignFlowRate": { + "SPACE1-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_expanded.epJSON new file mode 100644 index 00000000000..954d83605ac --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_expanded.epJSON @@ -0,0 +1,3516 @@ +{ + "AvailabilityManagerAssignmentList": { + "Hot Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "SPACE1-1 Baseboard Heat Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Baseboard HW Inlet", + "component_name": "SPACE1-1 Baseboard Heat", + "component_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water", + "component_outlet_node_name": "SPACE1-1 Baseboard HW Outlet" + } + ] + }, + "SPACE2-1 Baseboard Heat Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Baseboard HW Inlet", + "component_name": "SPACE2-1 Baseboard Heat", + "component_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water", + "component_outlet_node_name": "SPACE2-1 Baseboard HW Outlet" + } + ] + }, + "SPACE3-1 Baseboard Heat Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Baseboard HW Inlet", + "component_name": "SPACE3-1 Baseboard Heat", + "component_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water", + "component_outlet_node_name": "SPACE3-1 Baseboard HW Outlet" + } + ] + }, + "SPACE4-1 Baseboard Heat Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Baseboard HW Inlet", + "component_name": "SPACE4-1 Baseboard Heat", + "component_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water", + "component_outlet_node_name": "SPACE4-1 Baseboard HW Outlet" + } + ] + }, + "SPACE5-1 Baseboard Heat Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Baseboard HW Inlet", + "component_name": "SPACE5-1 Baseboard Heat", + "component_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water", + "component_outlet_node_name": "SPACE5-1 Baseboard HW Outlet" + } + ] + } + }, + "BranchList": { + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SPACE5-1 Baseboard Heat Hw Branch" + }, + { + "branch_name": "SPACE4-1 Baseboard Heat Hw Branch" + }, + { + "branch_name": "SPACE3-1 Baseboard Heat Hw Branch" + }, + { + "branch_name": "SPACE2-1 Baseboard Heat Hw Branch" + }, + { + "branch_name": "SPACE1-1 Baseboard Heat Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Connector:Mixer": { + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Baseboard Heat Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Baseboard Heat Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Baseboard Heat Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Baseboard Heat Hw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Baseboard Heat Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Baseboard Heat Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Baseboard Heat Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Baseboard Heat Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Baseboard Heat Hw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Baseboard Heat Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ventilation Standard Density Volume Flow Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Baseboard Total Heating Rate" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 21.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 21.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "No-Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 99.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "VENT-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "Heat Only SP Control": { + "cooling_setpoint_temperature_schedule_name": "No-Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "Heat Only SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "Heat Only SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "Heat Only SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "Heat Only SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "Heat Only SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:Baseboard:RadiantConvective:Water": { + "SPACE1-1 Baseboard Heat": { + "design_object": "SPACE1-1 Baseboard Heat Design Object", + "fraction_of_radiant_energy_incident_on_people": 0.0, + "heating_design_capacity": "Autosize", + "inlet_node_name": "SPACE1-1 Baseboard HW Inlet", + "maximum_water_flow_rate": "Autosize", + "outlet_node_name": "SPACE1-1 Baseboard HW Outlet" + }, + "SPACE2-1 Baseboard Heat": { + "design_object": "SPACE2-1 Baseboard Heat Design Object", + "fraction_of_radiant_energy_incident_on_people": 0.0, + "heating_design_capacity": "Autosize", + "inlet_node_name": "SPACE2-1 Baseboard HW Inlet", + "maximum_water_flow_rate": "Autosize", + "outlet_node_name": "SPACE2-1 Baseboard HW Outlet" + }, + "SPACE3-1 Baseboard Heat": { + "design_object": "SPACE3-1 Baseboard Heat Design Object", + "fraction_of_radiant_energy_incident_on_people": 0.0, + "heating_design_capacity": "Autosize", + "inlet_node_name": "SPACE3-1 Baseboard HW Inlet", + "maximum_water_flow_rate": "Autosize", + "outlet_node_name": "SPACE3-1 Baseboard HW Outlet" + }, + "SPACE4-1 Baseboard Heat": { + "design_object": "SPACE4-1 Baseboard Heat Design Object", + "fraction_of_radiant_energy_incident_on_people": 0.0, + "heating_design_capacity": "Autosize", + "inlet_node_name": "SPACE4-1 Baseboard HW Inlet", + "maximum_water_flow_rate": "Autosize", + "outlet_node_name": "SPACE4-1 Baseboard HW Outlet" + }, + "SPACE5-1 Baseboard Heat": { + "design_object": "SPACE5-1 Baseboard Heat Design Object", + "fraction_of_radiant_energy_incident_on_people": 0.0, + "heating_design_capacity": "Autosize", + "inlet_node_name": "SPACE5-1 Baseboard HW Inlet", + "maximum_water_flow_rate": "Autosize", + "outlet_node_name": "SPACE5-1 Baseboard HW Outlet" + } + }, + "ZoneHVAC:Baseboard:RadiantConvective:Water:Design": { + "SPACE1-1 Baseboard Heat Design Object": { + "fraction_radiant": 0.0 + }, + "SPACE2-1 Baseboard Heat Design Object": { + "fraction_radiant": 0.0 + }, + "SPACE3-1 Baseboard Heat Design Object": { + "fraction_radiant": 0.0 + }, + "SPACE4-1 Baseboard Heat Design Object": { + "fraction_radiant": 0.0 + }, + "SPACE5-1 Baseboard Heat Design Object": { + "fraction_radiant": 0.0 + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 Baseboard Heat", + "zone_equipment_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 Baseboard Heat", + "zone_equipment_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 Baseboard Heat", + "zone_equipment_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 Baseboard Heat", + "zone_equipment_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 Baseboard Heat", + "zone_equipment_object_type": "ZoneHVAC:Baseboard:RadiantConvective:Water" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneVentilation:DesignFlowRate": { + "SPACE1-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Ventilation": { + "air_changes_per_hour": 5.0, + "constant_term_coefficient": 1.0, + "delta_temperature": 1.0, + "design_flow_rate_calculation_method": "AirChanges/Hour", + "fan_pressure_rise": 400.0, + "fan_total_efficiency": 0.9, + "minimum_indoor_temperature": 24.0, + "minimum_outdoor_temperature": 10, + "schedule_name": "VENT-SCH", + "temperature_term_coefficient": 0.0, + "velocity_squared_term_coefficient": 0.0, + "velocity_term_coefficient": 0.0, + "ventilation_type": "Exhaust", + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_hvac_templates.epJSON new file mode 100644 index 00000000000..fa52ad61171 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneBaseboardHeat_hvac_templates.epJSON @@ -0,0 +1,69 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Thermostat": { + "Heat Only": { + "cooling_setpoint_schedule_name": "No-Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:BaseboardHeat": { + "HVACTemplate:Zone:BaseboardHeat 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "HotWater", + "outdoor_air_method": "Flow/Person", + "template_thermostat_name": "Heat Only", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:BaseboardHeat 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "HotWater", + "outdoor_air_method": "Flow/Person", + "template_thermostat_name": "Heat Only", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:BaseboardHeat 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "HotWater", + "outdoor_air_method": "Flow/Person", + "template_thermostat_name": "Heat Only", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:BaseboardHeat 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "HotWater", + "outdoor_air_method": "Flow/Person", + "template_thermostat_name": "Heat Only", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:BaseboardHeat 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "HotWater", + "outdoor_air_method": "Flow/Person", + "template_thermostat_name": "Heat Only", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_base.epJSON new file mode 100644 index 00000000000..6301785e48a --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_base.epJSON @@ -0,0 +1,2912 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 25": { + "key_value": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 26": { + "key_value": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 27": { + "key_value": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 28": { + "key_value": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 29": { + "key_value": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "AHU 2 Space 5 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 31": { + "key_value": "AHU 2 Space 5 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 32": { + "key_value": "AHU 2 Space 5 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 33": { + "key_value": "AHU 2 Space 5 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 34": { + "key_value": "AHU 2 Space 5 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 35": { + "key_value": "AHU 2 Space 5 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_expanded.epJSON new file mode 100644 index 00000000000..fb058d45dd8 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_expanded.epJSON @@ -0,0 +1,4889 @@ +{ + "AirLoopHVAC": { + "AHU 1 Spaces 1-4": { + "availability_manager_list_name": "AHU 1 Spaces 1-4 Availability Managers", + "branch_list_name": "AHU 1 Spaces 1-4 Branches", + "controller_list_name": "AHU 1 Spaces 1-4 Controllers", + "demand_side_inlet_node_names": "AHU 1 Spaces 1-4 Supply Path Inlet", + "demand_side_outlet_node_name": "AHU 1 Spaces 1-4 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "AHU 1 Spaces 1-4 Air Loop Inlet", + "supply_side_outlet_node_names": "AHU 1 Spaces 1-4 Supply Fan Outlet" + }, + "AHU 2 Space 5": { + "availability_manager_list_name": "AHU 2 Space 5 Availability Managers", + "branch_list_name": "AHU 2 Space 5 Branches", + "controller_list_name": "AHU 2 Space 5 Controllers", + "demand_side_inlet_node_names": "AHU 2 Space 5 Supply Path Inlet", + "demand_side_outlet_node_name": "AHU 2 Space 5 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "AHU 2 Space 5 Air Loop Inlet", + "supply_side_outlet_node_names": "AHU 2 Space 5 Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "AHU 1 Spaces 1-4 Controllers": { + "controller_1_name": "AHU 1 Spaces 1-4 Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "AHU 1 Spaces 1-4 Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "AHU 1 Spaces 1-4 OA Controllers": { + "controller_1_name": "AHU 1 Spaces 1-4 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "AHU 2 Space 5 Controllers": { + "controller_1_name": "AHU 2 Space 5 Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "AHU 2 Space 5 Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "AHU 2 Space 5 OA Controllers": { + "controller_1_name": "AHU 2 Space 5 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "AHU 1 Spaces 1-4 OA System": { + "availability_manager_list_name": "AHU 1 Spaces 1-4 Availability Managers", + "controller_list_name": "AHU 1 Spaces 1-4 OA Controllers", + "outdoor_air_equipment_list_name": "AHU 1 Spaces 1-4 OA System Equipment" + }, + "AHU 2 Space 5 OA System": { + "availability_manager_list_name": "AHU 2 Space 5 Availability Managers", + "controller_list_name": "AHU 2 Space 5 OA Controllers", + "outdoor_air_equipment_list_name": "AHU 2 Space 5 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "AHU 1 Spaces 1-4 OA System Equipment": { + "component_1_name": "AHU 1 Spaces 1-4 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "AHU 2 Space 5 OA System Equipment": { + "component_1_name": "AHU 2 Space 5 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "AHU 1 Spaces 1-4 Return Path": { + "components": [ + { + "component_name": "AHU 1 Spaces 1-4 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "AHU 1 Spaces 1-4 Return Air Outlet" + }, + "AHU 2 Space 5 Return Path": { + "components": [ + { + "component_name": "AHU 2 Space 5 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "AHU 2 Space 5 Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "AHU 1 Spaces 1-4 Supply Path": { + "components": [ + { + "component_name": "AHU 1 Spaces 1-4 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "AHU 1 Spaces 1-4 Supply Path Inlet" + }, + "AHU 2 Space 5 Supply Path": { + "components": [ + { + "component_name": "AHU 2 Space 5 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "AHU 2 Space 5 Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneMixer": { + "AHU 1 Spaces 1-4 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "AHU 1 Spaces 1-4 Return Air Outlet" + }, + "AHU 2 Space 5 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "AHU 2 Space 5 Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "AHU 1 Spaces 1-4 Zone Splitter": { + "inlet_node_name": "AHU 1 Spaces 1-4 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + }, + "AHU 2 Space 5 Zone Splitter": { + "inlet_node_name": "AHU 2 Space 5 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:ConstantVolume:NoReheat": { + "SPACE5-1 CV": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + } + }, + "AirTerminal:SingleDuct:ConstantVolume:Reheat": { + "SPACE1-1 CV Reheat": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE1-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water" + }, + "SPACE2-1 CV Reheat": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE2-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water" + }, + "SPACE3-1 CV Reheat": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE3-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water" + }, + "SPACE4-1 CV Reheat": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE4-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water" + } + }, + "AvailabilityManager:LowTemperatureTurnOff": { + "Chilled Water Loop Availability Low Temp TurnOff": { + "sensor_node_name": "Chilled Water Loop Outside Air Sensor", + "temperature": 7.22 + } + }, + "AvailabilityManager:NightCycle": { + "AHU 1 Spaces 1-4 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "AHU 2 Space 5 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "AHU 1 Spaces 1-4 Availability Managers": { + "managers": [ + { + "availability_manager_name": "AHU 1 Spaces 1-4 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "AHU 2 Space 5 Availability Managers": { + "managers": [ + { + "availability_manager_name": "AHU 2 Space 5 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Chilled Water Loop Availability Managers": { + "managers": [ + { + "availability_manager_name": "Chilled Water Loop Availability Low Temp TurnOff", + "availability_manager_object_type": "AvailabilityManager:LowTemperatureTurnOff" + } + ] + }, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "AHU 1 Spaces 1-4 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Inlet", + "component_name": "AHU 1 Spaces 1-4 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Outlet" + } + ] + }, + "AHU 1 Spaces 1-4 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Hw Inlet", + "component_name": "AHU 1 Spaces 1-4 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Hw Outlet" + } + ] + }, + "AHU 1 Spaces 1-4 Main Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Air Loop Inlet", + "component_name": "AHU 1 Spaces 1-4 Return Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Return Fan Outlet" + }, + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Return Fan Outlet", + "component_name": "AHU 1 Spaces 1-4 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "component_name": "AHU 1 Spaces 1-4 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "component_name": "AHU 1 Spaces 1-4 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "component_name": "AHU 1 Spaces 1-4 Supply Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet" + } + ] + }, + "AHU 2 Space 5 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 2 Space 5 Cooling Coil Chw Inlet", + "component_name": "AHU 2 Space 5 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "AHU 2 Space 5 Cooling Coil Chw Outlet" + } + ] + }, + "AHU 2 Space 5 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 2 Space 5 Heating Coil Hw Inlet", + "component_name": "AHU 2 Space 5 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "AHU 2 Space 5 Heating Coil Hw Outlet" + } + ] + }, + "AHU 2 Space 5 Main Branch": { + "components": [ + { + "component_inlet_node_name": "AHU 2 Space 5 Air Loop Inlet", + "component_name": "AHU 2 Space 5 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "AHU 2 Space 5 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "AHU 2 Space 5 Mixed Air Outlet", + "component_name": "AHU 2 Space 5 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "AHU 2 Space 5 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "AHU 2 Space 5 Cooling Coil Outlet", + "component_name": "AHU 2 Space 5 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "AHU 2 Space 5 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "component_name": "AHU 2 Space 5 Supply Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "AHU 2 Space 5 Supply Fan Outlet" + } + ] + }, + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SPACE1-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + } + }, + "BranchList": { + "AHU 1 Spaces 1-4 Branches": { + "branches": [ + { + "branch_name": "AHU 1 Spaces 1-4 Main Branch" + } + ] + }, + "AHU 2 Space 5 Branches": { + "branches": [ + { + "branch_name": "AHU 2 Space 5 Main Branch" + } + ] + }, + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "AHU 2 Space 5 Cooling Coil Chw Branch" + }, + { + "branch_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "AHU 2 Space 5 Heating Coil Hw Branch" + }, + { + "branch_name": "AHU 1 Spaces 1-4 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "AHU 1 Spaces 1-4 Cooling Coil": { + "air_inlet_node_name": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "air_outlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Inlet", + "water_outlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Outlet" + }, + "AHU 2 Space 5 Cooling Coil": { + "air_inlet_node_name": "AHU 2 Space 5 Mixed Air Outlet", + "air_outlet_node_name": "AHU 2 Space 5 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "AHU 2 Space 5 Cooling Coil Chw Inlet", + "water_outlet_node_name": "AHU 2 Space 5 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "AHU 1 Spaces 1-4 Heating Coil": { + "air_inlet_node_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "air_outlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Hw Inlet", + "water_outlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Hw Outlet" + }, + "AHU 2 Space 5 Heating Coil": { + "air_inlet_node_name": "AHU 2 Space 5 Cooling Coil Outlet", + "air_outlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "AHU 2 Space 5 Heating Coil Hw Inlet", + "water_outlet_node_name": "AHU 2 Space 5 Heating Coil Hw Outlet" + }, + "SPACE1-1 Reheat Coil": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Reheat Coil": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Reheat Coil": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Reheat Coil": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "AHU 2 Space 5 Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "AHU 1 Spaces 1-4 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "AHU 2 Space 5 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "AHU 2 Space 5 Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "AHU 1 Spaces 1-4 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "AHU 2 Space 5 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "AHU 1 Spaces 1-4 OA Controller": { + "actuator_node_name": "AHU 1 Spaces 1-4 Outdoor Air Inlet", + "economizer_control_type": "FixedDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "mixed_air_node_name": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "relief_air_outlet_node_name": "AHU 1 Spaces 1-4 Relief Air Outlet", + "return_air_node_name": "AHU 1 Spaces 1-4 Return Fan Outlet" + }, + "AHU 2 Space 5 OA Controller": { + "actuator_node_name": "AHU 2 Space 5 Outdoor Air Inlet", + "economizer_control_type": "FixedDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "mixed_air_node_name": "AHU 2 Space 5 Mixed Air Outlet", + "relief_air_outlet_node_name": "AHU 2 Space 5 Relief Air Outlet", + "return_air_node_name": "AHU 2 Space 5 Air Loop Inlet" + } + }, + "Controller:WaterCoil": { + "AHU 1 Spaces 1-4 Cooling Coil Controller": { + "actuator_node_name": "AHU 1 Spaces 1-4 Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet" + }, + "AHU 1 Spaces 1-4 Heating Coil Controller": { + "actuator_node_name": "AHU 1 Spaces 1-4 Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet" + }, + "AHU 2 Space 5 Cooling Coil Controller": { + "actuator_node_name": "AHU 2 Space 5 Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "AHU 2 Space 5 Cooling Coil Outlet" + }, + "AHU 2 Space 5 Heating Coil Controller": { + "actuator_node_name": "AHU 2 Space 5 Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "AHU 2 Space 5 Heating Coil Outlet" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:ConstantVolume": { + "AHU 1 Spaces 1-4 Return Fan": { + "air_inlet_node_name": "AHU 1 Spaces 1-4 Air Loop Inlet", + "air_outlet_node_name": "AHU 1 Spaces 1-4 Return Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 300 + }, + "AHU 1 Spaces 1-4 Supply Fan": { + "air_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "air_outlet_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "AHU 2 Space 5 Supply Fan": { + "air_inlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "air_outlet_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "AHU 1 Spaces 1-4 OA Mixing Box": { + "mixed_air_node_name": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "outdoor_air_stream_node_name": "AHU 1 Spaces 1-4 Outdoor Air Inlet", + "relief_air_stream_node_name": "AHU 1 Spaces 1-4 Relief Air Outlet", + "return_air_stream_node_name": "AHU 1 Spaces 1-4 Return Fan Outlet" + }, + "AHU 2 Space 5 OA Mixing Box": { + "mixed_air_node_name": "AHU 2 Space 5 Mixed Air Outlet", + "outdoor_air_stream_node_name": "AHU 2 Space 5 Outdoor Air Inlet", + "relief_air_stream_node_name": "AHU 2 Space 5 Relief Air Outlet", + "return_air_stream_node_name": "AHU 2 Space 5 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Chilled Water Loop Outside Air Sensor": {}, + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "AHU 1 Spaces 1-4 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "AHU 1 Spaces 1-4 Outdoor Air Inlet" + } + ] + }, + "AHU 2 Space 5 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "AHU 2 Space 5 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "AHU 1 Spaces 1-4 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 25": { + "key_value": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 26": { + "key_value": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 27": { + "key_value": "AHU 1 Spaces 1-4 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 28": { + "key_value": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 29": { + "key_value": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "AHU 2 Space 5 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 31": { + "key_value": "AHU 2 Space 5 Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 32": { + "key_value": "AHU 2 Space 5 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 33": { + "key_value": "AHU 2 Space 5 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 34": { + "key_value": "AHU 2 Space 5 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 35": { + "key_value": "AHU 2 Space 5 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "AHU 1 Spaces 1-4 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "AHU 1 Spaces 1-4 Cooling Coil Outlet" + }, + "AHU 1 Spaces 1-4 Economizer Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "AHU 1 Spaces 1-4 Mixed Air Outlet" + }, + "AHU 1 Spaces 1-4 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 1 Spaces 1-4 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 1 Spaces 1-4 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 1 Spaces 1-4 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "AHU 1 Spaces 1-4 Heating Coil Outlet" + }, + "AHU 2 Space 5 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "AHU 2 Space 5 Cooling Coil Outlet" + }, + "AHU 2 Space 5 Economizer Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "AHU 2 Space 5 Mixed Air Outlet" + }, + "AHU 2 Space 5 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "AHU 2 Space 5 Heating Coil Outlet", + "fan_outlet_node_name": "AHU 2 Space 5 Supply Fan Outlet", + "reference_setpoint_node_name": "AHU 2 Space 5 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "AHU 2 Space 5 Heating Coil Outlet" + } + }, + "SetpointManager:OutdoorAirReset": { + "AHU 1 Spaces 1-4 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 12.2, + "outdoor_low_temperature": 7.8, + "setpoint_at_outdoor_high_temperature": 12.2, + "setpoint_at_outdoor_low_temperature": 15, + "setpoint_node_or_nodelist_name": "AHU 1 Spaces 1-4 Supply Path Inlet" + }, + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 26.7, + "outdoor_low_temperature": 15.6, + "setpoint_at_outdoor_high_temperature": 6.7, + "setpoint_at_outdoor_low_temperature": 12.2, + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:SingleZone:Cooling": { + "AHU 2 Space 5 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE5-1", + "maximum_supply_air_temperature": 51.0, + "minimum_supply_air_temperature": 12.8, + "setpoint_node_or_nodelist_name": "AHU 2 Space 5 Supply Fan Outlet", + "zone_inlet_node_name": "SPACE5-1 Supply Inlet", + "zone_node_name": "SPACE5-1 Zone Air Node" + } + }, + "SetpointManager:SingleZone:Heating": { + "AHU 2 Space 5 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE5-1", + "maximum_supply_air_temperature": 50.0, + "minimum_supply_air_temperature": 11.8, + "setpoint_node_or_nodelist_name": "AHU 2 Space 5 Supply Path Inlet", + "zone_inlet_node_name": "SPACE5-1 Supply Inlet", + "zone_node_name": "SPACE5-1 Zone Air Node" + } + }, + "SetpointManager:Warmest": { + "AHU 1 Spaces 1-4 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "hvac_air_loop_name": "AHU 1 Spaces 1-4", + "maximum_setpoint_temperature": 18, + "minimum_setpoint_temperature": 12.8, + "setpoint_node_or_nodelist_name": "AHU 1 Spaces 1-4 Supply Fan Outlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "AHU 1 Spaces 1-4 Sizing System": { + "airloop_name": "AHU 1 Spaces 1-4", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 15, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "AHU 2 Space 5 Sizing System": { + "airloop_name": "AHU 2 Space 5", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 CV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:Reheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 CV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:Reheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 CV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:Reheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 CV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:Reheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_hvac_templates.epJSON new file mode 100644 index 00000000000..94c931ef468 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneConstantVolumeChillerBoiler_hvac_templates.epJSON @@ -0,0 +1,266 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "minimum_outdoor_dry_bulb_temperature": 7.22, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:ConstantVolume": { + "AHU 1 Spaces 1-4": { + "cooling_coil_design_setpoint_temperature": 12.8, + "cooling_coil_reset_outdoor_dry_bulb_high": 23.3, + "cooling_coil_reset_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_at_outdoor_dry_bulb_high": 12.8, + "cooling_coil_setpoint_at_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_control_type": "Warmest", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "economizer_lower_temperature_limit": 4, + "economizer_type": "FixedDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_preheat_coil_efficiency": 0.8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_design_setpoint": 15, + "heating_coil_reset_outdoor_dry_bulb_high": 12.2, + "heating_coil_reset_outdoor_dry_bulb_low": 7.8, + "heating_coil_setpoint_at_outdoor_dry_bulb_high": 12.2, + "heating_coil_setpoint_at_outdoor_dry_bulb_low": 15, + "heating_coil_setpoint_control_type": "OutdoorAirTemperatureReset", + "heating_coil_type": "HotWater", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "night_cycle_control": "CycleOnAny", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_fan": "Yes", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "AHU 2 Space 5": { + "cooling_coil_control_zone_name": "SPACE5-1", + "cooling_coil_design_setpoint_temperature": 12.8, + "cooling_coil_reset_outdoor_dry_bulb_high": 23.3, + "cooling_coil_reset_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_at_outdoor_dry_bulb_high": 12.8, + "cooling_coil_setpoint_at_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_control_type": "ControlZone", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "economizer_lower_temperature_limit": 4, + "economizer_type": "FixedDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_preheat_coil_efficiency": 0.8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_control_zone_name": "SPACE5-1", + "heating_coil_design_setpoint": 50.0, + "heating_coil_reset_outdoor_dry_bulb_high": 12.2, + "heating_coil_reset_outdoor_dry_bulb_low": 7.8, + "heating_coil_setpoint_at_outdoor_dry_bulb_high": 12.2, + "heating_coil_setpoint_at_outdoor_dry_bulb_low": 50.0, + "heating_coil_setpoint_control_type": "ControlZone", + "heating_coil_type": "HotWater", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "night_cycle_control": "CycleOnAny", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:ConstantVolume": { + "HVACTemplate:Zone:ConstantVolume 1": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_constant_volume_system_name": "AHU 1 Spaces 1-4", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:ConstantVolume 2": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_constant_volume_system_name": "AHU 1 Spaces 1-4", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:ConstantVolume 3": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_constant_volume_system_name": "AHU 1 Spaces 1-4", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:ConstantVolume 4": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_constant_volume_system_name": "AHU 1 Spaces 1-4", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:ConstantVolume 5": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "None", + "supply_air_maximum_flow_rate": "Autosize", + "template_constant_volume_system_name": "AHU 2 Space 5", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_base.epJSON new file mode 100644 index 00000000000..2627478f402 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_base.epJSON @@ -0,0 +1,2917 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Electricity Rate" + }, + "Output:Variable 25": { + "key_value": "SYS 1 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 26": { + "key_value": "SYS 1 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 27": { + "key_value": "SYS 1 Hot Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 28": { + "key_value": "SYS 1 Hot Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 29": { + "key_value": "SYS 1 Cold Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "SYS 1 Cold Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 31": { + "key_value": "SYS 1 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 32": { + "key_value": "SYS 1 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 33": { + "key_value": "SYS 1 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 34": { + "key_value": "SYS 1 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal Cold Supply Duct Damper Position" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal Hot Supply Duct Damper Position" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_expanded.epJSON new file mode 100644 index 00000000000..195b9ba3493 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_expanded.epJSON @@ -0,0 +1,4662 @@ +{ + "AirLoopHVAC": { + "SYS 1": { + "availability_manager_list_name": "SYS 1 Availability Managers", + "branch_list_name": "SYS 1 Branches", + "connector_list_name": "SYS 1 Connectors", + "controller_list_name": "SYS 1 Controllers", + "demand_side_inlet_node_names": "SYS 1 Supply Path Inlets", + "demand_side_outlet_node_name": "SYS 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "SYS 1 Air Loop Inlet", + "supply_side_outlet_node_names": "SYS 1 Supply Side Outlets" + } + }, + "AirLoopHVAC:ControllerList": { + "SYS 1 Controllers": { + "controller_1_name": "SYS 1 HotDuct Heating Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "SYS 1 ColdDuct Cooling Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "SYS 1 OA Controllers": { + "controller_1_name": "SYS 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "SYS 1 OA System": { + "availability_manager_list_name": "SYS 1 Availability Managers", + "controller_list_name": "SYS 1 OA Controllers", + "outdoor_air_equipment_list_name": "SYS 1 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "SYS 1 OA System Equipment": { + "component_1_name": "SYS 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "SYS 1 Return Path": { + "components": [ + { + "component_name": "SYS 1 Return Plenum", + "component_object_type": "AirLoopHVAC:ReturnPlenum" + } + ], + "return_air_path_outlet_node_name": "SYS 1 Return Air Outlet" + } + }, + "AirLoopHVAC:ReturnPlenum": { + "SYS 1 Return Plenum": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "SYS 1 Return Air Outlet", + "zone_name": "PLENUM-1", + "zone_node_name": "PLENUM-1 Zone Air Node" + } + }, + "AirLoopHVAC:SupplyPath": { + "SYS 1 Cold Supply Path": { + "components": [ + { + "component_name": "SYS 1 Cold Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "SYS 1 Cold Supply Path Inlet" + }, + "SYS 1 Hot Supply Path": { + "components": [ + { + "component_name": "SYS 1 Hot Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "SYS 1 Hot Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "SYS 1 Cold Zone Splitter": { + "inlet_node_name": "SYS 1 Cold Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Cold Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Cold Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Cold Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Cold Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Cold Inlet" + } + ] + }, + "SYS 1 Hot Zone Splitter": { + "inlet_node_name": "SYS 1 Hot Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Hot Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Hot Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Hot Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Hot Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Hot Inlet" + } + ] + } + }, + "AirTerminal:DualDuct:ConstantVolume": { + "SPACE1-1 Dual Duct": { + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "cold_air_inlet_node_name": "SPACE1-1 Zone Equip Cold Inlet", + "hot_air_inlet_node_name": "SPACE1-1 Zone Equip Hot Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE2-1 Dual Duct": { + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "cold_air_inlet_node_name": "SPACE2-1 Zone Equip Cold Inlet", + "hot_air_inlet_node_name": "SPACE2-1 Zone Equip Hot Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE3-1 Dual Duct": { + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "cold_air_inlet_node_name": "SPACE3-1 Zone Equip Cold Inlet", + "hot_air_inlet_node_name": "SPACE3-1 Zone Equip Hot Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE4-1 Dual Duct": { + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "cold_air_inlet_node_name": "SPACE4-1 Zone Equip Cold Inlet", + "hot_air_inlet_node_name": "SPACE4-1 Zone Equip Hot Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE5-1 Dual Duct": { + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "cold_air_inlet_node_name": "SPACE5-1 Zone Equip Cold Inlet", + "hot_air_inlet_node_name": "SPACE5-1 Zone Equip Hot Inlet", + "maximum_air_flow_rate": "Autosize" + } + }, + "AvailabilityManager:LowTemperatureTurnOff": { + "Chilled Water Loop Availability Low Temp TurnOff": { + "sensor_node_name": "Chilled Water Loop Outside Air Sensor", + "temperature": 7.22 + } + }, + "AvailabilityManager:NightCycle": { + "SYS 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": { + "managers": [ + { + "availability_manager_name": "Chilled Water Loop Availability Low Temp TurnOff", + "availability_manager_object_type": "AvailabilityManager:LowTemperatureTurnOff" + } + ] + }, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {}, + "SYS 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "SYS 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SYS 1 ColdDuct Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Chw Inlet", + "component_name": "SYS 1 ColdDuct Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SYS 1 ColdDuct Cooling Coil Chw Outlet" + } + ] + }, + "SYS 1 ColdDuct Main Branch": { + "components": [ + { + "component_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Inlet", + "component_name": "SYS 1 ColdDuct Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SYS 1 ColdDuct Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Outlet", + "component_name": "SYS 1 ColdDuct Supply Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "SYS 1 ColdDuct Supply Fan Outlet" + } + ] + }, + "SYS 1 HotDuct Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SYS 1 HotDuct Heating Coil Hw Inlet", + "component_name": "SYS 1 HotDuct Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SYS 1 HotDuct Heating Coil Hw Outlet" + } + ] + }, + "SYS 1 HotDuct Main Branch": { + "components": [ + { + "component_inlet_node_name": "SYS 1 HotDuct Supply Fan Inlet", + "component_name": "SYS 1 HotDuct Supply Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "SYS 1 HotDuct Supply Fan Outlet" + }, + { + "component_inlet_node_name": "SYS 1 HotDuct Supply Fan Outlet", + "component_name": "SYS 1 HotDuct Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SYS 1 HotDuct Heating Coil Outlet" + }, + { + "component_inlet_node_name": "SYS 1 HotDuct Heating Coil Outlet", + "component_name": "SYS 1 HotDuct Humidifier", + "component_object_type": "Humidifier:Steam:Electric", + "component_outlet_node_name": "SYS 1 HotDuct Humidifier Outlet" + } + ] + }, + "SYS 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "SYS 1 Air Loop Inlet", + "component_name": "SYS 1 Return Fan", + "component_object_type": "Fan:ConstantVolume", + "component_outlet_node_name": "SYS 1 Return Fan Outlet" + }, + { + "component_inlet_node_name": "SYS 1 Return Fan Outlet", + "component_name": "SYS 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "SYS 1 Mixed Air Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SYS 1 ColdDuct Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SYS 1 HotDuct Heating Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + }, + "SYS 1 Branches": { + "branches": [ + { + "branch_name": "SYS 1 Main Branch" + }, + { + "branch_name": "SYS 1 HotDuct Main Branch" + }, + { + "branch_name": "SYS 1 ColdDuct Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "SYS 1 ColdDuct Cooling Coil": { + "air_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Inlet", + "air_outlet_node_name": "SYS 1 ColdDuct Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Chw Inlet", + "water_outlet_node_name": "SYS 1 ColdDuct Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "SYS 1 HotDuct Heating Coil": { + "air_inlet_node_name": "SYS 1 HotDuct Supply Fan Outlet", + "air_outlet_node_name": "SYS 1 HotDuct Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SYS 1 HotDuct Heating Coil Hw Inlet", + "water_outlet_node_name": "SYS 1 HotDuct Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SYS 1 ColdDuct Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SYS 1 HotDuct Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SYS 1 ColdDuct Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SYS 1 HotDuct Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + }, + "SYS 1 Duct Splitter": { + "branches": [ + { + "outlet_branch_name": "SYS 1 HotDuct Main Branch" + }, + { + "outlet_branch_name": "SYS 1 ColdDuct Main Branch" + } + ], + "inlet_branch_name": "SYS 1 Main Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "SYS 1 Connectors": { + "connector_1_name": "SYS 1 Duct Splitter", + "connector_1_object_type": "Connector:Splitter" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "SYS 1 OA Controller": { + "actuator_node_name": "SYS 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "mixed_air_node_name": "SYS 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "SYS 1 Relief Air Outlet", + "return_air_node_name": "SYS 1 Return Fan Outlet" + } + }, + "Controller:WaterCoil": { + "SYS 1 ColdDuct Cooling Coil Controller": { + "actuator_node_name": "SYS 1 ColdDuct Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "SYS 1 ColdDuct Cooling Coil Outlet" + }, + "SYS 1 HotDuct Heating Coil Controller": { + "actuator_node_name": "SYS 1 HotDuct Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "SYS 1 HotDuct Heating Coil Outlet" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:ConstantVolume": { + "SYS 1 ColdDuct Supply Fan": { + "air_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Outlet", + "air_outlet_node_name": "SYS 1 ColdDuct Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + }, + "SYS 1 HotDuct Supply Fan": { + "air_inlet_node_name": "SYS 1 HotDuct Supply Fan Inlet", + "air_outlet_node_name": "SYS 1 HotDuct Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + }, + "SYS 1 Return Fan": { + "air_inlet_node_name": "SYS 1 Air Loop Inlet", + "air_outlet_node_name": "SYS 1 Return Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 500 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Humidifier:Steam:Electric": { + "SYS 1 HotDuct Humidifier": { + "air_inlet_node_name": "SYS 1 HotDuct Heating Coil Outlet", + "air_outlet_node_name": "SYS 1 HotDuct Humidifier Outlet", + "rated_capacity": 1e-06, + "rated_fan_power": 0, + "rated_power": "Autosize", + "standby_power": 0 + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "SYS 1 ColdDuct Cooling Setpoint Nodes": { + "nodes": [ + { + "node_name": "SYS 1 ColdDuct Cooling Coil Outlet" + }, + { + "node_name": "SYS 1 Mixed Air Outlet" + } + ] + }, + "SYS 1 Supply Path Inlets": { + "nodes": [ + { + "node_name": "SYS 1 Hot Supply Path Inlet" + }, + { + "node_name": "SYS 1 Cold Supply Path Inlet" + } + ] + }, + "SYS 1 Supply Side Outlets": { + "nodes": [ + { + "node_name": "SYS 1 HotDuct Humidifier Outlet" + }, + { + "node_name": "SYS 1 ColdDuct Supply Fan Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "SYS 1 OA Mixing Box": { + "mixed_air_node_name": "SYS 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SYS 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SYS 1 Relief Air Outlet", + "return_air_stream_node_name": "SYS 1 Return Fan Outlet" + } + }, + "OutdoorAir:Node": { + "Chilled Water Loop Outside Air Sensor": {}, + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "SYS 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SYS 1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Electricity Rate" + }, + "Output:Variable 25": { + "key_value": "SYS 1 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 26": { + "key_value": "SYS 1 Mixed Air Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 27": { + "key_value": "SYS 1 Hot Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 28": { + "key_value": "SYS 1 Hot Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 29": { + "key_value": "SYS 1 Cold Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "SYS 1 Cold Supply Path Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 31": { + "key_value": "SYS 1 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 32": { + "key_value": "SYS 1 Cooling Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 33": { + "key_value": "SYS 1 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 34": { + "key_value": "SYS 1 Heating Coil Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal Cold Supply Duct Damper Position" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal Hot Supply Duct Damper Position" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always100": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 100.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always30": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 30.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always7.22": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 7.22 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "SYS 1 ColdDuct Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "SYS 1 ColdDuct Cooling Coil Outlet", + "fan_outlet_node_name": "SYS 1 ColdDuct Supply Fan Outlet", + "reference_setpoint_node_name": "SYS 1 ColdDuct Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "SYS 1 ColdDuct Cooling Setpoint Nodes" + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + }, + "SYS 1 ColdDuct Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 23.3, + "outdoor_low_temperature": 15.6, + "setpoint_at_outdoor_high_temperature": 12.8, + "setpoint_at_outdoor_low_temperature": 15.6, + "setpoint_node_or_nodelist_name": "SYS 1 ColdDuct Supply Fan Outlet" + }, + "SYS 1 HotDuct Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 12.2, + "outdoor_low_temperature": 7.8, + "setpoint_at_outdoor_high_temperature": 26, + "setpoint_at_outdoor_low_temperature": 50, + "setpoint_node_or_nodelist_name": "SYS 1 HotDuct Heating Coil Outlet" + } + }, + "SetpointManager:Scheduled": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always7.22", + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:SingleZone:Humidity:Minimum": { + "SYS 1 HotDuct Humidification Setpoint Manager": { + "control_zone_air_node_name": "SPACE5-1 Zone Air Node", + "setpoint_node_or_nodelist_name": "SYS 1 HotDuct Humidifier Outlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "SYS 1 Sizing System": { + "airloop_name": "SYS 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Humidistat": { + "SYS 1 Humidification Humidistat": { + "dehumidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always100", + "humidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always30", + "zone_name": "SPACE5-1" + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 Dual Duct", + "air_terminal_object_type": "AirTerminal:DualDuct:ConstantVolume" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 Dual Duct", + "air_terminal_object_type": "AirTerminal:DualDuct:ConstantVolume" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 Dual Duct", + "air_terminal_object_type": "AirTerminal:DualDuct:ConstantVolume" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 Dual Duct", + "air_terminal_object_type": "AirTerminal:DualDuct:ConstantVolume" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 Dual Duct", + "air_terminal_object_type": "AirTerminal:DualDuct:ConstantVolume" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_hvac_templates.epJSON new file mode 100644 index 00000000000..3246587521c --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneDualDuct_hvac_templates.epJSON @@ -0,0 +1,236 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 4.44, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 7.22, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "None", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "minimum_outdoor_dry_bulb_temperature": 7.22, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:DualDuct": { + "SYS 1": { + "cold_duct_supply_fan_delta_pressure": 1000, + "cold_duct_supply_fan_maximum_flow_rate": "Autosize", + "cold_duct_supply_fan_minimum_flow_fraction": 0.2, + "cold_duct_supply_fan_motor_efficiency": 0.9, + "cold_duct_supply_fan_motor_in_air_stream_fraction": 1, + "cold_duct_supply_fan_part_load_power_coefficients": "InletVaneDampers", + "cold_duct_supply_fan_placement": "DrawThrough", + "cold_duct_supply_fan_total_efficiency": 0.7, + "cooling_coil_design_setpoint_temperature": 12.8, + "cooling_coil_reset_outdoor_dry_bulb_high": 23.3, + "cooling_coil_reset_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_at_outdoor_dry_bulb_high": 12.8, + "cooling_coil_setpoint_at_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_control_type": "OutdoorAirTemperatureReset", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "gas_preheat_coil_efficiency": 0.8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_design_setpoint": 50, + "heating_coil_reset_outdoor_dry_bulb_high": 12.2, + "heating_coil_reset_outdoor_dry_bulb_low": 7.8, + "heating_coil_setpoint_at_outdoor_dry_bulb_high": 26, + "heating_coil_setpoint_at_outdoor_dry_bulb_low": 50, + "heating_coil_setpoint_control_type": "OutdoorAirTemperatureReset", + "heating_coil_type": "HotWater", + "hot_duct_supply_fan_delta_pressure": 1000, + "hot_duct_supply_fan_maximum_flow_rate": "Autosize", + "hot_duct_supply_fan_minimum_flow_fraction": 0.2, + "hot_duct_supply_fan_motor_efficiency": 0.9, + "hot_duct_supply_fan_motor_in_air_stream_fraction": 1, + "hot_duct_supply_fan_part_load_power_coefficients": "InletVaneDampers", + "hot_duct_supply_fan_placement": "BlowThrough", + "hot_duct_supply_fan_total_efficiency": 0.7, + "humidifier_control_zone_name": "SPACE5-1", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "ElectricSteam", + "latent_heat_recovery_effectiveness": 0.65, + "main_supply_fan_delta_pressure": 1000, + "main_supply_fan_maximum_flow_rate": "Autosize", + "main_supply_fan_minimum_flow_fraction": 0.2, + "main_supply_fan_motor_efficiency": 0.9, + "main_supply_fan_motor_in_air_stream_fraction": 1, + "main_supply_fan_part_load_power_coefficients": "InletVaneDampers", + "main_supply_fan_total_efficiency": 0.7, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "night_cycle_control": "CycleOnAny", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_fan": "Yes", + "return_fan_delta_pressure": 500, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_part_load_power_coefficients": "InletVaneDampers", + "return_fan_total_efficiency": 0.7, + "return_plenum_name": "PLENUM-1", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "system_availability_schedule_name": "FanAvailSched", + "system_configuration_type": "DualFanConstantVolume" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:DualDuct": { + "HVACTemplate:Zone:DualDuct 1": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_dual_duct_system_name": "SYS 1", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_minimum_air_flow_fraction": 0.2, + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:DualDuct 2": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_dual_duct_system_name": "SYS 1", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_minimum_air_flow_fraction": 0.2, + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:DualDuct 3": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_dual_duct_system_name": "SYS 1", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_minimum_air_flow_fraction": 0.2, + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:DualDuct 4": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_dual_duct_system_name": "SYS 1", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_minimum_air_flow_fraction": 0.2, + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:DualDuct 5": { + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_dual_duct_system_name": "SYS 1", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_minimum_air_flow_fraction": 0.2, + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_base.epJSON new file mode 100644 index 00000000000..3baf4407958 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_base.epJSON @@ -0,0 +1,2971 @@ +{ + "Building": { + "Fan Coil with DOAS": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Diagnostics": { + "Output:Diagnostics 1": { + "diagnostics": [ + { + "key": "DisplayAllWarnings" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Economizer Status" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Heat Recovery Bypass Status" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Flow Fraction" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Minimum Flow Fraction" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Heating Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Gain Rate" + }, + "Output:Variable 31": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Total Heating Rate" + }, + "Output:Variable 32": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Cooling Rate" + }, + "Output:Variable 33": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Cooling Rate" + }, + "Output:Variable 34": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Total Cooling Rate" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Electricity Rate" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Effectiveness" + }, + "Output:Variable 37": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Effectiveness" + }, + "Output:Variable 38": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Supply Air Bypass Mass Flow Rate" + }, + "Output:Variable 39": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Exhaust Air Bypass Mass Flow Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 40": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Defrost Time Fraction" + }, + "Output:Variable 41": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 42": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Humidity Ratio" + }, + "Output:Variable 43": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 44": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Relative Humidity" + }, + "Output:Variable 45": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_expanded.epJSON new file mode 100644 index 00000000000..bbd11b1dd47 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_expanded.epJSON @@ -0,0 +1,5193 @@ +{ + "AirLoopHVAC": { + "DOAS": { + "availability_manager_list_name": "DOAS Availability Managers", + "branch_list_name": "DOAS Branches", + "controller_list_name": "DOAS Controllers", + "demand_side_inlet_node_names": "DOAS Supply Path Inlet", + "demand_side_outlet_node_name": "DOAS Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "DOAS Air Loop Inlet", + "supply_side_outlet_node_names": "DOAS Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "DOAS Controllers": { + "controller_1_name": "DOAS Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "DOAS Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "DOAS OA Controllers": { + "controller_1_name": "DOAS OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "DOAS OA System": { + "availability_manager_list_name": "DOAS Availability Managers", + "controller_list_name": "DOAS OA Controllers", + "outdoor_air_equipment_list_name": "DOAS OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "DOAS OA System Equipment": { + "component_1_name": "DOAS Heat Recovery", + "component_1_object_type": "HeatExchanger:AirToAir:SensibleAndLatent", + "component_2_name": "DOAS OA Mixing Box", + "component_2_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "DOAS Return Path": { + "components": [ + { + "component_name": "DOAS Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "DOAS Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "DOAS Supply Path": { + "components": [ + { + "component_name": "DOAS Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "DOAS Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneMixer": { + "DOAS Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "DOAS Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "DOAS Zone Splitter": { + "inlet_node_name": "DOAS Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:VAV:NoReheat": { + "SPACE1-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE2-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE3-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE4-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE5-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:NightCycle": { + "DOAS Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "OCCUPY-1", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManager:Scheduled": { + "DOAS Availability": { + "schedule_name": "OCCUPY-1" + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": {}, + "Condenser Water Loop Availability Managers": {}, + "DOAS Availability Managers": { + "managers": [ + { + "availability_manager_name": "DOAS Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "DOAS Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Hot Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "DOAS Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "DOAS Cooling Coil Chw Inlet", + "component_name": "DOAS Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "DOAS Cooling Coil Chw Outlet" + } + ] + }, + "DOAS Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "DOAS Heating Coil Hw Inlet", + "component_name": "DOAS Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "DOAS Heating Coil Hw Outlet" + } + ] + }, + "DOAS Main Branch": { + "components": [ + { + "component_inlet_node_name": "DOAS Air Loop Inlet", + "component_name": "DOAS OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "DOAS Mixed Air Outlet" + }, + { + "component_inlet_node_name": "DOAS Mixed Air Outlet", + "component_name": "DOAS Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "DOAS Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "DOAS Cooling Coil Outlet", + "component_name": "DOAS Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "DOAS Heating Coil Outlet" + }, + { + "component_inlet_node_name": "DOAS Heating Coil Outlet", + "component_name": "DOAS Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "DOAS Supply Fan Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SPACE1-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Cooling Coil Chw Inlet", + "component_name": "SPACE1-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE1-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE1-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Cooling Coil Chw Inlet", + "component_name": "SPACE2-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE2-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE2-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Cooling Coil Chw Inlet", + "component_name": "SPACE3-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE3-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE3-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Cooling Coil Chw Inlet", + "component_name": "SPACE4-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE4-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE4-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE5-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Cooling Coil Chw Inlet", + "component_name": "SPACE5-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE5-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE5-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "component_name": "SPACE5-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "DOAS Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE5-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "DOAS Branches": { + "branches": [ + { + "branch_name": "DOAS Main Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "DOAS Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE5-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Fan Coil with DOAS": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "DOAS Cooling Coil": { + "air_inlet_node_name": "DOAS Mixed Air Outlet", + "air_outlet_node_name": "DOAS Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "DOAS Cooling Coil Chw Inlet", + "water_outlet_node_name": "DOAS Cooling Coil Chw Outlet" + }, + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE1-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE1-1 Cooling Coil Chw Outlet" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE2-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE2-1 Cooling Coil Chw Outlet" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE3-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE3-1 Cooling Coil Chw Outlet" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE4-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE4-1 Cooling Coil Chw Outlet" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE5-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE5-1 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "DOAS Heating Coil": { + "air_inlet_node_name": "DOAS Cooling Coil Outlet", + "air_outlet_node_name": "DOAS Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "DOAS Heating Coil Hw Inlet", + "water_outlet_node_name": "DOAS Heating Coil Hw Outlet" + }, + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + }, + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "DOAS Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "DOAS Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "DOAS Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "DOAS Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "DOAS OA Controller": { + "actuator_node_name": "DOAS Outdoor Air Inlet", + "economizer_control_action_type": "MinimumFlowWithBypass", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "mixed_air_node_name": "DOAS Mixed Air Outlet", + "relief_air_outlet_node_name": "DOAS Relief Air Outlet", + "return_air_node_name": "DOAS Air Loop Inlet" + } + }, + "Controller:WaterCoil": { + "DOAS Cooling Coil Controller": { + "actuator_node_name": "DOAS Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "DOAS Cooling Coil Outlet" + }, + "DOAS Heating Coil Controller": { + "actuator_node_name": "DOAS Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "DOAS Heating Coil Outlet" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:SystemModel": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + } + }, + "Fan:VariableVolume": { + "DOAS Supply Fan": { + "air_inlet_node_name": "DOAS Heating Coil Outlet", + "air_outlet_node_name": "DOAS Supply Fan Outlet", + "availability_schedule_name": "OCCUPY-1", + "fan_power_coefficient_1": 0.0015302446, + "fan_power_coefficient_2": 0.0052080574, + "fan_power_coefficient_3": 1.1086242, + "fan_power_coefficient_4": -0.11635563, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "HeatExchanger:AirToAir:SensibleAndLatent": { + "DOAS Heat Recovery": { + "economizer_lockout": "Yes", + "exhaust_air_inlet_node_name": "DOAS Relief Air Outlet", + "exhaust_air_outlet_node_name": "DOAS Heat Recovery Relief Outlet", + "frost_control_type": "MinimumExhaustTemperature", + "heat_exchanger_type": "Plate", + "latent_effectiveness_at_100_cooling_air_flow": 0.65, + "latent_effectiveness_at_100_heating_air_flow": 0.65, + "latent_effectiveness_at_75_cooling_air_flow": 0.7000000000000001, + "latent_effectiveness_at_75_heating_air_flow": 0.7000000000000001, + "nominal_supply_air_flow_rate": "Autosize", + "sensible_effectiveness_at_100_cooling_air_flow": 0.7, + "sensible_effectiveness_at_100_heating_air_flow": 0.7, + "sensible_effectiveness_at_75_cooling_air_flow": 0.75, + "sensible_effectiveness_at_75_heating_air_flow": 0.75, + "supply_air_inlet_node_name": "DOAS Outdoor Air Inlet", + "supply_air_outlet_node_name": "DOAS Heat Recovery Supply Outlet", + "supply_air_outlet_temperature_control": "Yes" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "SPACE1-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE1-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE1-1 DOAS Supply Inlet" + } + ] + }, + "SPACE2-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE2-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE2-1 DOAS Supply Inlet" + } + ] + }, + "SPACE3-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE3-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE3-1 DOAS Supply Inlet" + } + ] + }, + "SPACE4-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE4-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE4-1 DOAS Supply Inlet" + } + ] + }, + "SPACE5-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE5-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE5-1 DOAS Supply Inlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "DOAS OA Mixing Box": { + "mixed_air_node_name": "DOAS Mixed Air Outlet", + "outdoor_air_stream_node_name": "DOAS Heat Recovery Supply Outlet", + "relief_air_stream_node_name": "DOAS Relief Air Outlet", + "return_air_stream_node_name": "DOAS Air Loop Inlet" + }, + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "DOAS Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "DOAS Outdoor Air Inlet" + } + ] + }, + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Diagnostics": { + "Output:Diagnostics 1": { + "diagnostics": [ + { + "key": "DisplayAllWarnings" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Economizer Status" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Heat Recovery Bypass Status" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Flow Fraction" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Air System Outdoor Air Minimum Flow Fraction" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Heating Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Gain Rate" + }, + "Output:Variable 31": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Total Heating Rate" + }, + "Output:Variable 32": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Cooling Rate" + }, + "Output:Variable 33": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Cooling Rate" + }, + "Output:Variable 34": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Total Cooling Rate" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Electricity Rate" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Sensible Effectiveness" + }, + "Output:Variable 37": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Latent Effectiveness" + }, + "Output:Variable 38": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Supply Air Bypass Mass Flow Rate" + }, + "Output:Variable 39": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Exhaust Air Bypass Mass Flow Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 40": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heat Exchanger Defrost Time Fraction" + }, + "Output:Variable 41": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Temperature" + }, + "Output:Variable 42": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Humidity Ratio" + }, + "Output:Variable 43": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Setpoint Temperature" + }, + "Output:Variable 44": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Relative Humidity" + }, + "Output:Variable 45": { + "key_value": "DOAS Supply Fan Outlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.2": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.2 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "DOAS Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DOAS Heating Coil Outlet", + "fan_outlet_node_name": "DOAS Supply Fan Outlet", + "reference_setpoint_node_name": "DOAS Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "DOAS Cooling Coil Outlet" + }, + "DOAS Heat Recovery Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DOAS Heating Coil Outlet", + "fan_outlet_node_name": "DOAS Supply Fan Outlet", + "reference_setpoint_node_name": "DOAS Supply Path Inlet", + "setpoint_node_or_nodelist_name": "DOAS Heat Recovery Supply Outlet" + }, + "DOAS Heat Recovery Economizer Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DOAS Heating Coil Outlet", + "fan_outlet_node_name": "DOAS Supply Fan Outlet", + "reference_setpoint_node_name": "DOAS Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "DOAS Mixed Air Outlet" + }, + "DOAS Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DOAS Heating Coil Outlet", + "fan_outlet_node_name": "DOAS Supply Fan Outlet", + "reference_setpoint_node_name": "DOAS Supply Path Inlet", + "setpoint_node_or_nodelist_name": "DOAS Heating Coil Outlet" + } + }, + "SetpointManager:OutdoorAirReset": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 26.7, + "outdoor_low_temperature": 15.6, + "setpoint_at_outdoor_high_temperature": 6.7, + "setpoint_at_outdoor_low_temperature": 12.2, + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + }, + "DOAS Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "DOAS Supply Fan Outlet" + }, + "DOAS Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.2", + "setpoint_node_or_nodelist_name": "DOAS Supply Path Inlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "DOAS Sizing System": { + "100_outdoor_air_in_cooling": "Yes", + "100_outdoor_air_in_heating": "Yes", + "airloop_name": "DOAS", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_humidity_ratio": 0.00924, + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_humidity_ratio": 0.003, + "central_heating_design_supply_air_temperature": 12.2, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 2, + "system_outdoor_air_method": "ZoneSum", + "type_of_load_to_size_on": "VentilationRequirement", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE1-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE2-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE2-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE3-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE3-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE4-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE4-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE5-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE5-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Inlets", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Inlets", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Inlets", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Inlets", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Inlets", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE1-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE2-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE3-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE4-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE5-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + } + }, + "ZoneHVAC:FourPipeFanCoil": { + "SPACE1-1 Fan Coil": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "CyclingFan", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": 0.0, + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE2-1 Fan Coil": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "CyclingFan", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": 0.0, + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE3-1 Fan Coil": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "CyclingFan", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": 0.0, + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE4-1 Fan Coil": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "CyclingFan", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": 0.0, + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE5-1 Fan Coil": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "CyclingFan", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": 0.0, + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_hvac_templates.epJSON new file mode 100644 index 00000000000..37806fc6e82 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil-DOAS_hvac_templates.epJSON @@ -0,0 +1,238 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:DedicatedOutdoorAir": { + "DOAS": { + "air_outlet_type": "DirectIntoZone", + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_design_setpoint_temperature": 12.8, + "cooling_coil_reset_outdoor_dry_bulb_high": 23.3, + "cooling_coil_reset_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_at_outdoor_dry_bulb_high": 12.8, + "cooling_coil_setpoint_at_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_control_type": "FixedSetpoint", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 0.00924, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heat_recovery_frost_control_type": "MinimumExhaustTemperature", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_latent_effectiveness": 0.65, + "heat_recovery_sensible_effectiveness": 0.7, + "heat_recovery_type": "Enthalpy", + "heating_coil_design_setpoint": 12.2, + "heating_coil_reset_outdoor_dry_bulb_high": 12.2, + "heating_coil_reset_outdoor_dry_bulb_low": 7.8, + "heating_coil_setpoint_at_outdoor_dry_bulb_high": 12.2, + "heating_coil_setpoint_at_outdoor_dry_bulb_low": 15, + "heating_coil_setpoint_control_type": "FixedSetpoint", + "heating_coil_type": "HotWater", + "humidifier_constant_setpoint": 0.003, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_type": "None", + "supply_fan_delta_pressure": 1000, + "supply_fan_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "OCCUPY-1" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:FanCoil": { + "HVACTemplate:Zone:FanCoil 1": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "dedicated_outdoor_air_system_name": "DOAS", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:FanCoil 2": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "dedicated_outdoor_air_system_name": "DOAS", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:FanCoil 3": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "dedicated_outdoor_air_system_name": "DOAS", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:FanCoil 4": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "dedicated_outdoor_air_system_name": "DOAS", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:FanCoil 5": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "dedicated_outdoor_air_system_name": "DOAS", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_base.epJSON new file mode 100644 index 00000000000..a864c90b7ef --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_base.epJSON @@ -0,0 +1,2857 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_expanded.epJSON new file mode 100644 index 00000000000..eb7b7cd67a7 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_expanded.epJSON @@ -0,0 +1,4550 @@ +{ + "AvailabilityManager:LowTemperatureTurnOff": { + "Chilled Water Loop Availability Low Temp TurnOff": { + "sensor_node_name": "Chilled Water Loop Outside Air Sensor", + "temperature": 7.22 + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": { + "managers": [ + { + "availability_manager_name": "Chilled Water Loop Availability Low Temp TurnOff", + "availability_manager_object_type": "AvailabilityManager:LowTemperatureTurnOff" + } + ] + }, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SPACE1-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Cooling Coil Chw Inlet", + "component_name": "SPACE1-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE1-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE1-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Cooling Coil Chw Inlet", + "component_name": "SPACE2-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE2-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE2-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Cooling Coil Chw Inlet", + "component_name": "SPACE3-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE3-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE3-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Cooling Coil Chw Inlet", + "component_name": "SPACE4-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE4-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE4-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE5-1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Cooling Coil Chw Inlet", + "component_name": "SPACE5-1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "SPACE5-1 Cooling Coil Chw Outlet" + } + ] + }, + "SPACE5-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "component_name": "SPACE5-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SPACE5-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SPACE5-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE1-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE1-1 Cooling Coil Chw Outlet" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE2-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE2-1 Cooling Coil Chw Outlet" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE3-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE3-1 Cooling Coil Chw Outlet" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE4-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE4-1 Cooling Coil Chw Outlet" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "SPACE5-1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "SPACE5-1 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + }, + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Cooling Coil Chw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:SystemModel": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "design_maximum_air_flow_rate": "Autosize", + "design_power_sizing_method": "TotalEfficiencyAndPressure", + "design_pressure_rise": 75, + "electric_power_minimum_flow_rate_fraction": 0, + "fan_total_efficiency": 0.7, + "motor_efficiency": 0.9, + "motor_in_air_stream_fraction": 1 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "Chilled Water Loop Outside Air Sensor": {}, + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:OutdoorAirReset": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 26.7, + "outdoor_low_temperature": 15.6, + "setpoint_at_outdoor_high_temperature": 6.7, + "setpoint_at_outdoor_low_temperature": 12.2, + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.5, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 Fan Coil", + "zone_equipment_object_type": "ZoneHVAC:FourPipeFanCoil" + } + ] + } + }, + "ZoneHVAC:FourPipeFanCoil": { + "SPACE1-1 Fan Coil": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "ConstantFanVariableFlow", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": "Autosize", + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE2-1 Fan Coil": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "ConstantFanVariableFlow", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": "Autosize", + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE3-1 Fan Coil": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "ConstantFanVariableFlow", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": "Autosize", + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE4-1 Fan Coil": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "ConstantFanVariableFlow", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": "Autosize", + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + }, + "SPACE5-1 Fan Coil": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "availability_schedule_name": "FanAvailSched", + "capacity_control_method": "ConstantFanVariableFlow", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "maximum_cold_water_flow_rate": "Autosize", + "maximum_hot_water_flow_rate": "Autosize", + "maximum_outdoor_air_flow_rate": "Autosize", + "maximum_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:SystemModel" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_hvac_templates.epJSON new file mode 100644 index 00000000000..99beb221cec --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFanCoil_hvac_templates.epJSON @@ -0,0 +1,192 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "minimum_outdoor_dry_bulb_temperature": 7.22, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:FanCoil": { + "HVACTemplate:Zone:FanCoil 1": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:FanCoil 2": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:FanCoil 3": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:FanCoil 4": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:FanCoil 5": { + "cooling_coil_design_setpoint": 12.5, + "cooling_coil_type": "ChilledWater", + "heating_coil_design_setpoint": 50, + "heating_coil_type": "HotWater", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched", + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_base.epJSON new file mode 100644 index 00000000000..2559c2c7868 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_base.epJSON @@ -0,0 +1,2848 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "NaturalGas:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met Time" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Runtime Fraction" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "AlwaysOn": { + "hourly_value": 1.0, + "schedule_type_limits_name": "On/Off" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_expanded.epJSON new file mode 100644 index 00000000000..7b040d6a7f4 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_expanded.epJSON @@ -0,0 +1,4515 @@ +{ + "AirLoopHVAC": { + "Furnace DX 1-1": { + "availability_manager_list_name": "Furnace DX 1-1 Availability Managers", + "branch_list_name": "Furnace DX 1-1 Branches", + "demand_side_inlet_node_names": "Furnace DX 1-1 Supply Path Inlet", + "demand_side_outlet_node_name": "Furnace DX 1-1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Furnace DX 1-1 Air Loop Inlet", + "supply_side_outlet_node_names": "Furnace DX 1-1 Heating Coil Outlet" + }, + "Furnace DX 2-1": { + "availability_manager_list_name": "Furnace DX 2-1 Availability Managers", + "branch_list_name": "Furnace DX 2-1 Branches", + "demand_side_inlet_node_names": "Furnace DX 2-1 Supply Path Inlet", + "demand_side_outlet_node_name": "Furnace DX 2-1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Furnace DX 2-1 Air Loop Inlet", + "supply_side_outlet_node_names": "Furnace DX 2-1 Heating Coil Outlet" + }, + "Furnace DX 3-1": { + "availability_manager_list_name": "Furnace DX 3-1 Availability Managers", + "branch_list_name": "Furnace DX 3-1 Branches", + "demand_side_inlet_node_names": "Furnace DX 3-1 Supply Path Inlet", + "demand_side_outlet_node_name": "Furnace DX 3-1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Furnace DX 3-1 Air Loop Inlet", + "supply_side_outlet_node_names": "Furnace DX 3-1 Supply Fan Outlet" + }, + "Furnace DX 4-1": { + "availability_manager_list_name": "Furnace DX 4-1 Availability Managers", + "branch_list_name": "Furnace DX 4-1 Branches", + "demand_side_inlet_node_names": "Furnace DX 4-1 Supply Path Inlet", + "demand_side_outlet_node_name": "Furnace DX 4-1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Furnace DX 4-1 Air Loop Inlet", + "supply_side_outlet_node_names": "Furnace DX 4-1 Supply Fan Outlet" + }, + "Furnace DX 5-1": { + "availability_manager_list_name": "Furnace DX 5-1 Availability Managers", + "branch_list_name": "Furnace DX 5-1 Branches", + "demand_side_inlet_node_names": "Furnace DX 5-1 Supply Path Inlet", + "demand_side_outlet_node_name": "Furnace DX 5-1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Furnace DX 5-1 Air Loop Inlet", + "supply_side_outlet_node_names": "Furnace DX 5-1 Heating Coil Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "Furnace DX 1-1 OA Controllers": { + "controller_1_name": "Furnace DX 1-1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Furnace DX 2-1 OA Controllers": { + "controller_1_name": "Furnace DX 2-1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Furnace DX 3-1 OA Controllers": { + "controller_1_name": "Furnace DX 3-1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Furnace DX 4-1 OA Controllers": { + "controller_1_name": "Furnace DX 4-1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Furnace DX 5-1 OA Controllers": { + "controller_1_name": "Furnace DX 5-1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "Furnace DX 1-1 OA System": { + "availability_manager_list_name": "Furnace DX 1-1 Availability Managers", + "controller_list_name": "Furnace DX 1-1 OA Controllers", + "outdoor_air_equipment_list_name": "Furnace DX 1-1 OA System Equipment" + }, + "Furnace DX 2-1 OA System": { + "availability_manager_list_name": "Furnace DX 2-1 Availability Managers", + "controller_list_name": "Furnace DX 2-1 OA Controllers", + "outdoor_air_equipment_list_name": "Furnace DX 2-1 OA System Equipment" + }, + "Furnace DX 3-1 OA System": { + "availability_manager_list_name": "Furnace DX 3-1 Availability Managers", + "controller_list_name": "Furnace DX 3-1 OA Controllers", + "outdoor_air_equipment_list_name": "Furnace DX 3-1 OA System Equipment" + }, + "Furnace DX 4-1 OA System": { + "availability_manager_list_name": "Furnace DX 4-1 Availability Managers", + "controller_list_name": "Furnace DX 4-1 OA Controllers", + "outdoor_air_equipment_list_name": "Furnace DX 4-1 OA System Equipment" + }, + "Furnace DX 5-1 OA System": { + "availability_manager_list_name": "Furnace DX 5-1 Availability Managers", + "controller_list_name": "Furnace DX 5-1 OA Controllers", + "outdoor_air_equipment_list_name": "Furnace DX 5-1 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "Furnace DX 1-1 OA System Equipment": { + "component_1_name": "Furnace DX 1-1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Furnace DX 2-1 OA System Equipment": { + "component_1_name": "Furnace DX 2-1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Furnace DX 3-1 OA System Equipment": { + "component_1_name": "Furnace DX 3-1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Furnace DX 4-1 OA System Equipment": { + "component_1_name": "Furnace DX 4-1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Furnace DX 5-1 OA System Equipment": { + "component_1_name": "Furnace DX 5-1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "Furnace DX 1-1 Return Path": { + "components": [ + { + "component_name": "Furnace DX 1-1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Furnace DX 1-1 Return Air Outlet" + }, + "Furnace DX 2-1 Return Path": { + "components": [ + { + "component_name": "Furnace DX 2-1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Furnace DX 2-1 Return Air Outlet" + }, + "Furnace DX 3-1 Return Path": { + "components": [ + { + "component_name": "Furnace DX 3-1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Furnace DX 3-1 Return Air Outlet" + }, + "Furnace DX 4-1 Return Path": { + "components": [ + { + "component_name": "Furnace DX 4-1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Furnace DX 4-1 Return Air Outlet" + }, + "Furnace DX 5-1 Return Path": { + "components": [ + { + "component_name": "Furnace DX 5-1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Furnace DX 5-1 Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "Furnace DX 1-1 Supply Path": { + "components": [ + { + "component_name": "Furnace DX 1-1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Furnace DX 1-1 Supply Path Inlet" + }, + "Furnace DX 2-1 Supply Path": { + "components": [ + { + "component_name": "Furnace DX 2-1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Furnace DX 2-1 Supply Path Inlet" + }, + "Furnace DX 3-1 Supply Path": { + "components": [ + { + "component_name": "Furnace DX 3-1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Furnace DX 3-1 Supply Path Inlet" + }, + "Furnace DX 4-1 Supply Path": { + "components": [ + { + "component_name": "Furnace DX 4-1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Furnace DX 4-1 Supply Path Inlet" + }, + "Furnace DX 5-1 Supply Path": { + "components": [ + { + "component_name": "Furnace DX 5-1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Furnace DX 5-1 Supply Path Inlet" + } + }, + "AirLoopHVAC:Unitary:Furnace:HeatCool": { + "Furnace DX 1-1 Furnace with DX Cooling": { + "controlling_zone_or_thermostat_location": "SPACE1-1", + "cooling_coil_name": "Furnace DX 1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "furnace_air_inlet_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "furnace_air_outlet_node_name": "Furnace DX 1-1 Heating Coil Outlet", + "heating_coil_name": "Furnace DX 1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Fuel", + "heating_supply_air_flow_rate": "Autosize", + "maximum_supply_air_temperature": 80, + "no_load_supply_air_flow_rate": "Autosize", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Furnace DX 1-1 Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Furnace DX 2-1 Furnace with DX Cooling": { + "controlling_zone_or_thermostat_location": "SPACE2-1", + "cooling_coil_name": "Furnace DX 2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "furnace_air_inlet_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "furnace_air_outlet_node_name": "Furnace DX 2-1 Heating Coil Outlet", + "heating_coil_name": "Furnace DX 2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Fuel", + "heating_supply_air_flow_rate": "Autosize", + "maximum_supply_air_temperature": 80, + "no_load_supply_air_flow_rate": "Autosize", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Furnace DX 2-1 Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Furnace DX 3-1 Furnace with DX Cooling": { + "controlling_zone_or_thermostat_location": "SPACE3-1", + "cooling_coil_name": "Furnace DX 3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "fan_placement": "DrawThrough", + "furnace_air_inlet_node_name": "Furnace DX 3-1 Mixed Air Outlet", + "furnace_air_outlet_node_name": "Furnace DX 3-1 Supply Fan Outlet", + "heating_coil_name": "Furnace DX 3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Fuel", + "heating_supply_air_flow_rate": "Autosize", + "maximum_supply_air_temperature": 80, + "no_load_supply_air_flow_rate": "Autosize", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Furnace DX 3-1 Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Furnace DX 4-1 Furnace with DX Cooling": { + "controlling_zone_or_thermostat_location": "SPACE4-1", + "cooling_coil_name": "Furnace DX 4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "fan_placement": "DrawThrough", + "furnace_air_inlet_node_name": "Furnace DX 4-1 Mixed Air Outlet", + "furnace_air_outlet_node_name": "Furnace DX 4-1 Supply Fan Outlet", + "heating_coil_name": "Furnace DX 4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_supply_air_flow_rate": "Autosize", + "maximum_supply_air_temperature": 80, + "no_load_supply_air_flow_rate": "Autosize", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Furnace DX 4-1 Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Furnace DX 5-1 Furnace with DX Cooling": { + "controlling_zone_or_thermostat_location": "SPACE5-1", + "cooling_coil_name": "Furnace DX 5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "furnace_air_inlet_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "furnace_air_outlet_node_name": "Furnace DX 5-1 Heating Coil Outlet", + "heating_coil_name": "Furnace DX 5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_supply_air_flow_rate": "Autosize", + "maximum_supply_air_temperature": 80, + "no_load_supply_air_flow_rate": "Autosize", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Furnace DX 5-1 Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + } + }, + "AirLoopHVAC:ZoneMixer": { + "Furnace DX 1-1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + } + ], + "outlet_node_name": "Furnace DX 1-1 Return Air Outlet" + }, + "Furnace DX 2-1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE2-1 Return Outlet" + } + ], + "outlet_node_name": "Furnace DX 2-1 Return Air Outlet" + }, + "Furnace DX 3-1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE3-1 Return Outlet" + } + ], + "outlet_node_name": "Furnace DX 3-1 Return Air Outlet" + }, + "Furnace DX 4-1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "Furnace DX 4-1 Return Air Outlet" + }, + "Furnace DX 5-1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "Furnace DX 5-1 Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "Furnace DX 1-1 Zone Splitter": { + "inlet_node_name": "Furnace DX 1-1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + } + ] + }, + "Furnace DX 2-1 Zone Splitter": { + "inlet_node_name": "Furnace DX 2-1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + } + ] + }, + "Furnace DX 3-1 Zone Splitter": { + "inlet_node_name": "Furnace DX 3-1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + } + ] + }, + "Furnace DX 4-1 Zone Splitter": { + "inlet_node_name": "Furnace DX 4-1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + }, + "Furnace DX 5-1 Zone Splitter": { + "inlet_node_name": "Furnace DX 5-1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:ConstantVolume:NoReheat": { + "SPACE1-1 CV": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE2-1 CV": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE3-1 CV": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE4-1 CV": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE5-1 CV": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + } + }, + "AvailabilityManager:NightCycle": { + "Furnace DX 1-1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "AlwaysOn", + "thermostat_tolerance": 0.2 + }, + "Furnace DX 2-1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "AlwaysOn", + "thermostat_tolerance": 0.2 + }, + "Furnace DX 3-1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "AlwaysOn", + "thermostat_tolerance": 0.2 + }, + "Furnace DX 4-1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "AlwaysOn", + "thermostat_tolerance": 0.2 + }, + "Furnace DX 5-1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "AlwaysOn", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Furnace DX 1-1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Furnace DX 1-1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Furnace DX 2-1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Furnace DX 2-1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Furnace DX 3-1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Furnace DX 3-1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Furnace DX 4-1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Furnace DX 4-1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Furnace DX 5-1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Furnace DX 5-1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Branch": { + "Furnace DX 1-1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Furnace DX 1-1 Air Loop Inlet", + "component_name": "Furnace DX 1-1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Furnace DX 1-1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "component_name": "Furnace DX 1-1 Furnace with DX Cooling", + "component_object_type": "AirLoopHVAC:Unitary:Furnace:HeatCool", + "component_outlet_node_name": "Furnace DX 1-1 Heating Coil Outlet" + } + ] + }, + "Furnace DX 2-1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Furnace DX 2-1 Air Loop Inlet", + "component_name": "Furnace DX 2-1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Furnace DX 2-1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "component_name": "Furnace DX 2-1 Furnace with DX Cooling", + "component_object_type": "AirLoopHVAC:Unitary:Furnace:HeatCool", + "component_outlet_node_name": "Furnace DX 2-1 Heating Coil Outlet" + } + ] + }, + "Furnace DX 3-1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Furnace DX 3-1 Air Loop Inlet", + "component_name": "Furnace DX 3-1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Furnace DX 3-1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Furnace DX 3-1 Mixed Air Outlet", + "component_name": "Furnace DX 3-1 Furnace with DX Cooling", + "component_object_type": "AirLoopHVAC:Unitary:Furnace:HeatCool", + "component_outlet_node_name": "Furnace DX 3-1 Supply Fan Outlet" + } + ] + }, + "Furnace DX 4-1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Furnace DX 4-1 Air Loop Inlet", + "component_name": "Furnace DX 4-1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Furnace DX 4-1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Furnace DX 4-1 Mixed Air Outlet", + "component_name": "Furnace DX 4-1 Furnace with DX Cooling", + "component_object_type": "AirLoopHVAC:Unitary:Furnace:HeatCool", + "component_outlet_node_name": "Furnace DX 4-1 Supply Fan Outlet" + } + ] + }, + "Furnace DX 5-1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Furnace DX 5-1 Air Loop Inlet", + "component_name": "Furnace DX 5-1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Furnace DX 5-1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "component_name": "Furnace DX 5-1 Furnace with DX Cooling", + "component_object_type": "AirLoopHVAC:Unitary:Furnace:HeatCool", + "component_outlet_node_name": "Furnace DX 5-1 Heating Coil Outlet" + } + ] + } + }, + "BranchList": { + "Furnace DX 1-1 Branches": { + "branches": [ + { + "branch_name": "Furnace DX 1-1 Main Branch" + } + ] + }, + "Furnace DX 2-1 Branches": { + "branches": [ + { + "branch_name": "Furnace DX 2-1 Main Branch" + } + ] + }, + "Furnace DX 3-1 Branches": { + "branches": [ + { + "branch_name": "Furnace DX 3-1 Main Branch" + } + ] + }, + "Furnace DX 4-1 Branches": { + "branches": [ + { + "branch_name": "Furnace DX 4-1 Main Branch" + } + ] + }, + "Furnace DX 5-1 Branches": { + "branches": [ + { + "branch_name": "Furnace DX 5-1 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "Furnace DX 1-1 Cooling Coil": { + "air_inlet_node_name": "Furnace DX 1-1 Supply Fan Outlet", + "air_outlet_node_name": "Furnace DX 1-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Furnace DX 1-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Furnace DX 1-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Furnace DX 1-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Furnace DX 1-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Furnace DX 1-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Furnace DX 1-1 Cool DX Coil Cap-FT" + }, + "Furnace DX 2-1 Cooling Coil": { + "air_inlet_node_name": "Furnace DX 2-1 Supply Fan Outlet", + "air_outlet_node_name": "Furnace DX 2-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Furnace DX 2-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Furnace DX 2-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Furnace DX 2-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Furnace DX 2-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Furnace DX 2-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Furnace DX 2-1 Cool DX Coil Cap-FT" + }, + "Furnace DX 3-1 Cooling Coil": { + "air_inlet_node_name": "Furnace DX 3-1 Mixed Air Outlet", + "air_outlet_node_name": "Furnace DX 3-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Furnace DX 3-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Furnace DX 3-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Furnace DX 3-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Furnace DX 3-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Furnace DX 3-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Furnace DX 3-1 Cool DX Coil Cap-FT" + }, + "Furnace DX 4-1 Cooling Coil": { + "air_inlet_node_name": "Furnace DX 4-1 Mixed Air Outlet", + "air_outlet_node_name": "Furnace DX 4-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Furnace DX 4-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Furnace DX 4-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Furnace DX 4-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Furnace DX 4-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Furnace DX 4-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Furnace DX 4-1 Cool DX Coil Cap-FT" + }, + "Furnace DX 5-1 Cooling Coil": { + "air_inlet_node_name": "Furnace DX 5-1 Supply Fan Outlet", + "air_outlet_node_name": "Furnace DX 5-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Furnace DX 5-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Furnace DX 5-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Furnace DX 5-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Furnace DX 5-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Furnace DX 5-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Furnace DX 5-1 Cool DX Coil Cap-FT" + } + }, + "Coil:Heating:Electric": { + "Furnace DX 4-1 Heating Coil": { + "air_inlet_node_name": "Furnace DX 4-1 Cooling Coil Outlet", + "air_outlet_node_name": "Furnace DX 4-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Furnace DX 5-1 Heating Coil": { + "air_inlet_node_name": "Furnace DX 5-1 Cooling Coil Outlet", + "air_outlet_node_name": "Furnace DX 5-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "Furnace DX 1-1 Heating Coil": { + "air_inlet_node_name": "Furnace DX 1-1 Cooling Coil Outlet", + "air_outlet_node_name": "Furnace DX 1-1 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "parasitic_electric_load": 0.0, + "part_load_fraction_correlation_curve_name": "Furnace DX 1-1 Heating Coil PLF-FPLR" + }, + "Furnace DX 2-1 Heating Coil": { + "air_inlet_node_name": "Furnace DX 2-1 Cooling Coil Outlet", + "air_outlet_node_name": "Furnace DX 2-1 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "parasitic_electric_load": 0.0, + "part_load_fraction_correlation_curve_name": "Furnace DX 2-1 Heating Coil PLF-FPLR" + }, + "Furnace DX 3-1 Heating Coil": { + "air_inlet_node_name": "Furnace DX 3-1 Cooling Coil Outlet", + "air_outlet_node_name": "Furnace DX 3-1 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "parasitic_electric_load": 0.0, + "part_load_fraction_correlation_curve_name": "Furnace DX 3-1 Heating Coil PLF-FPLR" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "Furnace DX 1-1 OA Controller": { + "actuator_node_name": "Furnace DX 1-1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Furnace DX 1-1 Relief Air Outlet", + "return_air_node_name": "Furnace DX 1-1 Air Loop Inlet" + }, + "Furnace DX 2-1 OA Controller": { + "actuator_node_name": "Furnace DX 2-1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Furnace DX 2-1 Relief Air Outlet", + "return_air_node_name": "Furnace DX 2-1 Air Loop Inlet" + }, + "Furnace DX 3-1 OA Controller": { + "actuator_node_name": "Furnace DX 3-1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Furnace DX 3-1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Furnace DX 3-1 Relief Air Outlet", + "return_air_node_name": "Furnace DX 3-1 Air Loop Inlet" + }, + "Furnace DX 4-1 OA Controller": { + "actuator_node_name": "Furnace DX 4-1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Furnace DX 4-1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Furnace DX 4-1 Relief Air Outlet", + "return_air_node_name": "Furnace DX 4-1 Air Loop Inlet" + }, + "Furnace DX 5-1 OA Controller": { + "actuator_node_name": "Furnace DX 5-1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Furnace DX 5-1 Relief Air Outlet", + "return_air_node_name": "Furnace DX 5-1 Air Loop Inlet" + } + }, + "Curve:Biquadratic": { + "Furnace DX 1-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 1-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 2-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 2-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 3-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 3-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 4-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 4-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 5-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Furnace DX 5-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + } + }, + "Curve:Cubic": { + "Furnace DX 1-1 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 2-1 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 3-1 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "Curve:Quadratic": { + "Furnace DX 1-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 1-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 1-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 2-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 2-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 2-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 3-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 3-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 3-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 4-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 4-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 4-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Furnace DX 5-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 5-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Furnace DX 5-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "Furnace DX 1-1 Supply Fan": { + "air_inlet_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "air_outlet_node_name": "Furnace DX 1-1 Supply Fan Outlet", + "availability_schedule_name": "AlwaysOn", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Furnace DX 2-1 Supply Fan": { + "air_inlet_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "air_outlet_node_name": "Furnace DX 2-1 Supply Fan Outlet", + "availability_schedule_name": "AlwaysOn", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Furnace DX 3-1 Supply Fan": { + "air_inlet_node_name": "Furnace DX 3-1 Heating Coil Outlet", + "air_outlet_node_name": "Furnace DX 3-1 Supply Fan Outlet", + "availability_schedule_name": "AlwaysOn", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Furnace DX 4-1 Supply Fan": { + "air_inlet_node_name": "Furnace DX 4-1 Heating Coil Outlet", + "air_outlet_node_name": "Furnace DX 4-1 Supply Fan Outlet", + "availability_schedule_name": "AlwaysOn", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Furnace DX 5-1 Supply Fan": { + "air_inlet_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "air_outlet_node_name": "Furnace DX 5-1 Supply Fan Outlet", + "availability_schedule_name": "AlwaysOn", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "OutdoorAir:Mixer": { + "Furnace DX 1-1 OA Mixing Box": { + "mixed_air_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Furnace DX 1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Furnace DX 1-1 Relief Air Outlet", + "return_air_stream_node_name": "Furnace DX 1-1 Air Loop Inlet" + }, + "Furnace DX 2-1 OA Mixing Box": { + "mixed_air_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Furnace DX 2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Furnace DX 2-1 Relief Air Outlet", + "return_air_stream_node_name": "Furnace DX 2-1 Air Loop Inlet" + }, + "Furnace DX 3-1 OA Mixing Box": { + "mixed_air_node_name": "Furnace DX 3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Furnace DX 3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Furnace DX 3-1 Relief Air Outlet", + "return_air_stream_node_name": "Furnace DX 3-1 Air Loop Inlet" + }, + "Furnace DX 4-1 OA Mixing Box": { + "mixed_air_node_name": "Furnace DX 4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Furnace DX 4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Furnace DX 4-1 Relief Air Outlet", + "return_air_stream_node_name": "Furnace DX 4-1 Air Loop Inlet" + }, + "Furnace DX 5-1 OA Mixing Box": { + "mixed_air_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Furnace DX 5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Furnace DX 5-1 Relief Air Outlet", + "return_air_stream_node_name": "Furnace DX 5-1 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Furnace DX 1-1 Cooling Coil Condenser Inlet": {}, + "Furnace DX 2-1 Cooling Coil Condenser Inlet": {}, + "Furnace DX 3-1 Cooling Coil Condenser Inlet": {}, + "Furnace DX 4-1 Cooling Coil Condenser Inlet": {}, + "Furnace DX 5-1 Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "Furnace DX 1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Furnace DX 1-1 Outdoor Air Inlet" + } + ] + }, + "Furnace DX 2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Furnace DX 2-1 Outdoor Air Inlet" + } + ] + }, + "Furnace DX 3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Furnace DX 3-1 Outdoor Air Inlet" + } + ] + }, + "Furnace DX 4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Furnace DX 4-1 Outdoor Air Inlet" + } + ] + }, + "Furnace DX 5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Furnace DX 5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "NaturalGas:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met Time" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Runtime Fraction" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "AlwaysOn": { + "hourly_value": 1.0, + "schedule_type_limits_name": "On/Off" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "Furnace DX 1-1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Furnace DX 1-1 Mixed Air Outlet", + "fan_outlet_node_name": "Furnace DX 1-1 Supply Fan Outlet", + "reference_setpoint_node_name": "Furnace DX 1-1 Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Furnace DX 1-1 Mixed Air Outlet" + }, + "Furnace DX 2-1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Furnace DX 2-1 Mixed Air Outlet", + "fan_outlet_node_name": "Furnace DX 2-1 Supply Fan Outlet", + "reference_setpoint_node_name": "Furnace DX 2-1 Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Furnace DX 2-1 Mixed Air Outlet" + }, + "Furnace DX 3-1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Furnace DX 3-1 Heating Coil Outlet", + "fan_outlet_node_name": "Furnace DX 3-1 Supply Fan Outlet", + "reference_setpoint_node_name": "Furnace DX 3-1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "Furnace DX 3-1 Mixed Air Outlet" + }, + "Furnace DX 4-1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Furnace DX 4-1 Heating Coil Outlet", + "fan_outlet_node_name": "Furnace DX 4-1 Supply Fan Outlet", + "reference_setpoint_node_name": "Furnace DX 4-1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "Furnace DX 4-1 Mixed Air Outlet" + }, + "Furnace DX 5-1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Furnace DX 5-1 Mixed Air Outlet", + "fan_outlet_node_name": "Furnace DX 5-1 Supply Fan Outlet", + "reference_setpoint_node_name": "Furnace DX 5-1 Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Furnace DX 5-1 Mixed Air Outlet" + } + }, + "SetpointManager:SingleZone:Cooling": { + "Furnace DX 1-1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE1-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Furnace DX 1-1 Heating Coil Outlet", + "zone_inlet_node_name": "SPACE1-1 Supply Inlet", + "zone_node_name": "SPACE1-1 Zone Air Node" + }, + "Furnace DX 2-1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE2-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Furnace DX 2-1 Heating Coil Outlet", + "zone_inlet_node_name": "SPACE2-1 Supply Inlet", + "zone_node_name": "SPACE2-1 Zone Air Node" + }, + "Furnace DX 3-1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE3-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Furnace DX 3-1 Supply Fan Outlet", + "zone_inlet_node_name": "SPACE3-1 Supply Inlet", + "zone_node_name": "SPACE3-1 Zone Air Node" + }, + "Furnace DX 4-1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE4-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Furnace DX 4-1 Supply Fan Outlet", + "zone_inlet_node_name": "SPACE4-1 Supply Inlet", + "zone_node_name": "SPACE4-1 Zone Air Node" + }, + "Furnace DX 5-1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE5-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Furnace DX 5-1 Heating Coil Outlet", + "zone_inlet_node_name": "SPACE5-1 Supply Inlet", + "zone_node_name": "SPACE5-1 Zone Air Node" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:System": { + "Furnace DX 1-1 Sizing System": { + "airloop_name": "Furnace DX 1-1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14.0, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Furnace DX 2-1 Sizing System": { + "airloop_name": "Furnace DX 2-1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14.0, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Furnace DX 3-1 Sizing System": { + "airloop_name": "Furnace DX 3-1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14.0, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Furnace DX 4-1 Sizing System": { + "airloop_name": "Furnace DX 4-1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14.0, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Furnace DX 5-1 Sizing System": { + "airloop_name": "Furnace DX 5-1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14.0, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_hvac_templates.epJSON new file mode 100644 index 00000000000..8d73dfb36a6 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneFurnaceDX_hvac_templates.epJSON @@ -0,0 +1,287 @@ +{ + "HVACTemplate:System:Unitary": { + "Furnace DX 1-1": { + "control_zone_or_thermostat_location_name": "SPACE1-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14.0, + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Gas", + "heating_design_supply_air_temperature": 50.0, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "StayOff", + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "AlwaysOn" + }, + "Furnace DX 2-1": { + "control_zone_or_thermostat_location_name": "SPACE2-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14.0, + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Gas", + "heating_design_supply_air_temperature": 50.0, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "StayOff", + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "AlwaysOn" + }, + "Furnace DX 3-1": { + "control_zone_or_thermostat_location_name": "SPACE3-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14.0, + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Gas", + "heating_design_supply_air_temperature": 50.0, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "StayOff", + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "AlwaysOn" + }, + "Furnace DX 4-1": { + "control_zone_or_thermostat_location_name": "SPACE4-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14.0, + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_design_supply_air_temperature": 50.0, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "StayOff", + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "AlwaysOn" + }, + "Furnace DX 5-1": { + "control_zone_or_thermostat_location_name": "SPACE5-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14.0, + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_design_supply_air_temperature": 50.0, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "StayOff", + "sensible_heat_recovery_effectiveness": 0.7, + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "AlwaysOn" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:Unitary": { + "HVACTemplate:Zone:Unitary 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Furnace DX 1-1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:Unitary 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Furnace DX 2-1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:Unitary 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Furnace DX 3-1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:Unitary 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Furnace DX 4-1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:Unitary 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Furnace DX 5-1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_base.epJSON new file mode 100644 index 00000000000..976ea970ec6 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_base.epJSON @@ -0,0 +1,2800 @@ +{ + "Building": { + "PTAC with DOAS RH Control": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Heating Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Fan Part Load Ratio" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Compressor Part Load Ratio" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_expanded.epJSON new file mode 100644 index 00000000000..6736e651496 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_expanded.epJSON @@ -0,0 +1,4282 @@ +{ + "AirLoopHVAC": { + "DOAS": { + "availability_manager_list_name": "DOAS Availability Managers", + "branch_list_name": "DOAS Branches", + "demand_side_inlet_node_names": "DOAS Supply Path Inlet", + "demand_side_outlet_node_name": "DOAS Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "DOAS Air Loop Inlet", + "supply_side_outlet_node_names": "DOAS Heating Coil Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "DOAS OA Controllers": { + "controller_1_name": "DOAS OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "DOAS OA System": { + "availability_manager_list_name": "DOAS Availability Managers", + "controller_list_name": "DOAS OA Controllers", + "outdoor_air_equipment_list_name": "DOAS OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "DOAS OA System Equipment": { + "component_1_name": "DOAS OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "DOAS Return Path": { + "components": [ + { + "component_name": "DOAS Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "DOAS Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "DOAS Supply Path": { + "components": [ + { + "component_name": "DOAS Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "DOAS Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneMixer": { + "DOAS Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "DOAS Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "DOAS Zone Splitter": { + "inlet_node_name": "DOAS Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:VAV:NoReheat": { + "SPACE1-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE2-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE3-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE4-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE5-1 DOAS Air Terminal": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 DOAS Supply Inlet", + "constant_minimum_air_flow_fraction": 1.0, + "maximum_air_flow_rate": "Autosize", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:NightCycle": { + "DOAS Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "OCCUPY-1", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManager:Scheduled": { + "DOAS Availability": { + "schedule_name": "OCCUPY-1" + } + }, + "AvailabilityManagerAssignmentList": { + "DOAS Availability Managers": { + "managers": [ + { + "availability_manager_name": "DOAS Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "DOAS Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Branch": { + "DOAS Main Branch": { + "components": [ + { + "component_inlet_node_name": "DOAS Air Loop Inlet", + "component_name": "DOAS OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "DOAS Mixed Air Outlet" + }, + { + "component_inlet_node_name": "DOAS Mixed Air Outlet", + "component_name": "DOAS Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "DOAS Supply Fan Outlet" + }, + { + "component_inlet_node_name": "DOAS Supply Fan Outlet", + "component_name": "DOAS Cooling System", + "component_object_type": "CoilSystem:Cooling:DX", + "component_outlet_node_name": "DOAS Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "DOAS Cooling Coil Outlet", + "component_name": "DOAS Heating Coil", + "component_object_type": "Coil:Heating:Fuel", + "component_outlet_node_name": "DOAS Heating Coil Outlet" + } + ] + } + }, + "BranchList": { + "DOAS Branches": { + "branches": [ + { + "branch_name": "DOAS Main Branch" + } + ] + } + }, + "Building": { + "PTAC with DOAS RH Control": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE1-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE1-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil Cap-FT" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE2-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE2-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil Cap-FT" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE3-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE3-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil Cap-FT" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE4-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE4-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil Cap-FT" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE5-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE5-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil Cap-FT" + } + }, + "Coil:Cooling:DX:TwoStageWithHumidityControlMode": { + "DOAS Cooling Coil": { + "air_inlet_node_name": "DOAS Supply Fan Outlet", + "air_outlet_node_name": "DOAS Cooling Coil Outlet", + "dehumidification_mode_1_stage_1_2_coil_performance_name": "DOAS Dehumid Perf 1+2", + "dehumidification_mode_1_stage_1_2_coil_performance_object_type": "CoilPerformance:DX:Cooling", + "dehumidification_mode_1_stage_1_coil_performance_name": "DOAS Dehumid Perf 1", + "dehumidification_mode_1_stage_1_coil_performance_object_type": "CoilPerformance:DX:Cooling", + "normal_mode_stage_1_2_coil_performance_name": "DOAS Standard Perf 1+2", + "normal_mode_stage_1_2_coil_performance_object_type": "CoilPerformance:DX:Cooling", + "normal_mode_stage_1_coil_performance_name": "DOAS Standard Perf 1", + "normal_mode_stage_1_coil_performance_object_type": "CoilPerformance:DX:Cooling", + "number_of_capacity_stages": 2, + "number_of_enhanced_dehumidification_modes": 1 + } + }, + "Coil:Heating:Electric": { + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "DOAS Heating Coil": { + "air_inlet_node_name": "DOAS Cooling Coil Outlet", + "air_outlet_node_name": "DOAS Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DOAS Heating Coil PLF-FPLR", + "temperature_setpoint_node_name": "DOAS Heating Coil Outlet" + } + }, + "CoilPerformance:DX:Cooling": { + "DOAS Dehumid Perf 1": { + "energy_input_ratio_function_of_flow_fraction_curve_name": "DOAS DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DOAS DX Coil Dehum EIR-FT", + "fraction_of_air_flow_bypassed_around_coil": 0.5, + "gross_rated_cooling_cop": 2.7, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DOAS DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DOAS DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DOAS DX Coil Dehum Cap-FT" + }, + "DOAS Dehumid Perf 1+2": { + "energy_input_ratio_function_of_flow_fraction_curve_name": "DOAS DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DOAS DX Coil Dehum EIR-FT", + "gross_rated_cooling_cop": 2.7, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DOAS DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DOAS DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DOAS DX Coil Dehum Cap-FT" + }, + "DOAS Standard Perf 1": { + "energy_input_ratio_function_of_flow_fraction_curve_name": "DOAS DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DOAS DX Coil Std EIR-FT", + "fraction_of_air_flow_bypassed_around_coil": 0.5, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DOAS DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DOAS DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DOAS DX Coil Std Cap-FT" + }, + "DOAS Standard Perf 1+2": { + "energy_input_ratio_function_of_flow_fraction_curve_name": "DOAS DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DOAS DX Coil Std EIR-FT", + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DOAS DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DOAS DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DOAS DX Coil Std Cap-FT" + } + }, + "CoilSystem:Cooling:DX": { + "DOAS Cooling System": { + "cooling_coil_name": "DOAS Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:TwoStageWithHumidityControlMode", + "dehumidification_control_type": "Multimode", + "dx_cooling_coil_system_inlet_node_name": "DOAS Supply Fan Outlet", + "dx_cooling_coil_system_outlet_node_name": "DOAS Cooling Coil Outlet", + "dx_cooling_coil_system_sensor_node_name": "DOAS Cooling Coil Outlet", + "run_on_latent_load": "Yes", + "use_outdoor_air_dx_cooling_coil": "Yes" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "DOAS OA Controller": { + "actuator_node_name": "DOAS Outdoor Air Inlet", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "mixed_air_node_name": "DOAS Mixed Air Outlet", + "relief_air_outlet_node_name": "DOAS Relief Air Outlet", + "return_air_node_name": "DOAS Air Loop Inlet" + } + }, + "Curve:Biquadratic": { + "DOAS DX Coil Dehum Cap-FT": { + "coefficient1_constant": 0.596779741, + "coefficient2_x": 0.034216637, + "coefficient3_x_2": 0.000113924, + "coefficient4_y": -0.00375859, + "coefficient5_y_2": -9.17495e-05, + "coefficient6_x_y": -8.98373e-05, + "maximum_value_of_x": 100, + "maximum_value_of_y": 100, + "minimum_value_of_x": -100, + "minimum_value_of_y": -100 + }, + "DOAS DX Coil Dehum EIR-FT": { + "coefficient1_constant": 0.435347586, + "coefficient2_x": 0.004015641, + "coefficient3_x_2": 0.000604235, + "coefficient4_y": 0.015824043, + "coefficient5_y_2": 0.000747287, + "coefficient6_x_y": -0.001779745, + "maximum_value_of_x": 100, + "maximum_value_of_y": 100, + "minimum_value_of_x": -100, + "minimum_value_of_y": -100 + }, + "DOAS DX Coil Std Cap-FT": { + "coefficient1_constant": 1.067939449, + "coefficient2_x": -0.031261829, + "coefficient3_x_2": 0.001974308, + "coefficient4_y": -0.002726426, + "coefficient5_y_2": -5.52654e-05, + "coefficient6_x_y": -6.31169e-05, + "maximum_value_of_x": 100, + "maximum_value_of_y": 100, + "minimum_value_of_x": -100, + "minimum_value_of_y": -100 + }, + "DOAS DX Coil Std EIR-FT": { + "coefficient1_constant": 0.174059889, + "coefficient2_x": 0.022281508, + "coefficient3_x_2": -0.000134077, + "coefficient4_y": 0.028298025, + "coefficient5_y_2": 0.0004851, + "coefficient6_x_y": -0.001677095, + "maximum_value_of_x": 100, + "maximum_value_of_y": 100, + "minimum_value_of_x": -100, + "minimum_value_of_y": -100 + }, + "SPACE1-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE1-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + } + }, + "Curve:Cubic": { + "DOAS Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "Curve:Quadratic": { + "DOAS DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DOAS DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DOAS DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE1-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE2-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE3-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE4-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE5-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + } + }, + "Fan:VariableVolume": { + "DOAS Supply Fan": { + "air_inlet_node_name": "DOAS Mixed Air Outlet", + "air_outlet_node_name": "DOAS Supply Fan Outlet", + "availability_schedule_name": "OCCUPY-1", + "fan_power_coefficient_1": 0.0015302446, + "fan_power_coefficient_2": 0.0052080574, + "fan_power_coefficient_3": 1.1086242, + "fan_power_coefficient_4": -0.11635563, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "DOAS Cooling Setpoint Nodes": { + "nodes": [ + { + "node_name": "DOAS Cooling Coil Outlet" + } + ] + }, + "SPACE1-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE1-1 Supply Fan Outlet" + }, + { + "node_name": "SPACE1-1 DOAS Supply Inlet" + } + ] + }, + "SPACE2-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE2-1 Supply Fan Outlet" + }, + { + "node_name": "SPACE2-1 DOAS Supply Inlet" + } + ] + }, + "SPACE3-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE3-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE3-1 DOAS Supply Inlet" + } + ] + }, + "SPACE4-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE4-1 Heating Coil Outlet" + }, + { + "node_name": "SPACE4-1 DOAS Supply Inlet" + } + ] + }, + "SPACE5-1 Inlets": { + "nodes": [ + { + "node_name": "SPACE5-1 Supply Fan Outlet" + }, + { + "node_name": "SPACE5-1 DOAS Supply Inlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "DOAS OA Mixing Box": { + "mixed_air_node_name": "DOAS Mixed Air Outlet", + "outdoor_air_stream_node_name": "DOAS Outdoor Air Inlet", + "relief_air_stream_node_name": "DOAS Relief Air Outlet", + "return_air_stream_node_name": "DOAS Air Loop Inlet" + }, + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "SPACE1-1 Cooling Coil Condenser Inlet": {}, + "SPACE2-1 Cooling Coil Condenser Inlet": {}, + "SPACE3-1 Cooling Coil Condenser Inlet": {}, + "SPACE4-1 Cooling Coil Condenser Inlet": {}, + "SPACE5-1 Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "DOAS Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "DOAS Outdoor Air Inlet" + } + ] + }, + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Heating Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Fan Part Load Ratio" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Compressor Part Load Ratio" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always0.00924": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.00924 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.2": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.2 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:Scheduled": { + "DOAS Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "DOAS Cooling Setpoint Nodes" + }, + "DOAS Dehumidification Setpoint Manager": { + "control_variable": "MaximumHumidityRatio", + "schedule_name": "HVACTemplate-Always0.00924", + "setpoint_node_or_nodelist_name": "DOAS Cooling Coil Outlet" + }, + "DOAS Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.2", + "setpoint_node_or_nodelist_name": "DOAS Heating Coil Outlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:System": { + "DOAS Sizing System": { + "100_outdoor_air_in_cooling": "Yes", + "100_outdoor_air_in_heating": "Yes", + "airloop_name": "DOAS", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_humidity_ratio": 0.00924, + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_humidity_ratio": 0.003, + "central_heating_design_supply_air_temperature": 12.2, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 2, + "system_outdoor_air_method": "ZoneSum", + "type_of_load_to_size_on": "VentilationRequirement", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE1-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE2-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE2-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE3-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE3-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE4-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE4-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + }, + "SPACE5-1 DOAS ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 DOAS Supply Inlet", + "air_terminal_name": "SPACE5-1 DOAS Air Terminal", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Inlets", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Inlets", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Inlets", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Inlets", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Inlets", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE1-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE2-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE3-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE4-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 DOAS ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + }, + { + "zone_equipment_cooling_sequence": 2, + "zone_equipment_heating_or_no_load_sequence": 2, + "zone_equipment_name": "SPACE5-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + } + }, + "ZoneHVAC:PackagedTerminalAirConditioner": { + "SPACE1-1 PTAC": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": 0.0, + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": 0.0, + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": 0.0, + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE2-1 PTAC": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": 0.0, + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": 0.0, + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": 0.0, + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE3-1 PTAC": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": 0.0, + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": 0.0, + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": 0.0, + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE4-1 PTAC": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": 0.0, + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": 0.0, + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": 0.0, + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE5-1 PTAC": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": 0.0, + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": 0.0, + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": 0.0, + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_hvac_templates.epJSON new file mode 100644 index 00000000000..105274d6931 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC-DOAS_hvac_templates.epJSON @@ -0,0 +1,187 @@ +{ + "HVACTemplate:System:DedicatedOutdoorAir": { + "DOAS": { + "air_outlet_type": "DirectIntoZone", + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_design_setpoint_temperature": 12.8, + "cooling_coil_reset_outdoor_dry_bulb_high": 23.3, + "cooling_coil_reset_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_at_outdoor_dry_bulb_high": 12.8, + "cooling_coil_setpoint_at_outdoor_dry_bulb_low": 15.6, + "cooling_coil_setpoint_control_type": "FixedSetpoint", + "cooling_coil_type": "TwoStageHumidityControlDX", + "dehumidification_control_type": "Multimode", + "dehumidification_setpoint": 0.00924, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_latent_effectiveness": 0.65, + "heat_recovery_sensible_effectiveness": 0.7, + "heat_recovery_type": "None", + "heating_coil_design_setpoint": 12.2, + "heating_coil_reset_outdoor_dry_bulb_high": 12.2, + "heating_coil_reset_outdoor_dry_bulb_low": 7.8, + "heating_coil_setpoint_at_outdoor_dry_bulb_high": 12.2, + "heating_coil_setpoint_at_outdoor_dry_bulb_low": 15, + "heating_coil_setpoint_control_type": "FixedSetpoint", + "heating_coil_type": "Gas", + "humidifier_constant_setpoint": 0.003, + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_type": "None", + "supply_fan_delta_pressure": 1000, + "supply_fan_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "OCCUPY-1" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:PTAC": { + "HVACTemplate:Zone:PTAC 1": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "dedicated_outdoor_air_system_name": "DOAS", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:PTAC 2": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "dedicated_outdoor_air_system_name": "DOAS", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:PTAC 3": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "dedicated_outdoor_air_system_name": "DOAS", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:PTAC 4": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "dedicated_outdoor_air_system_name": "DOAS", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:PTAC 5": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "dedicated_outdoor_air_system_name": "DOAS", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_base.epJSON new file mode 100644 index 00000000000..a522cffa438 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_base.epJSON @@ -0,0 +1,2836 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Heating Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Heating Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Cooling Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Electricity Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Fan Part Load Ratio" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Compressor Part Load Ratio" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "Always1": { + "hourly_value": 1.0 + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_expanded.epJSON new file mode 100644 index 00000000000..99410bc917c --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_expanded.epJSON @@ -0,0 +1,4062 @@ +{ + "AvailabilityManagerAssignmentList": { + "Hot Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "SPACE2-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + } + }, + "BranchList": { + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE1-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE1-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil Cap-FT" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE2-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE2-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil Cap-FT" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE3-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE3-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil Cap-FT" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE4-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE4-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil Cap-FT" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE5-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE5-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil Cap-FT" + } + }, + "Coil:Heating:Electric": { + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "SPACE5-1 Heating Coil PLF-FPLR" + } + }, + "Coil:Heating:Water": { + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + }, + "Connector:Mixer": { + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Curve:Biquadratic": { + "SPACE1-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE1-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + } + }, + "Curve:Cubic": { + "SPACE5-1 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE1-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE2-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE3-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE4-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE5-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "SPACE1-1 Cooling Coil Condenser Inlet": {}, + "SPACE2-1 Cooling Coil Condenser Inlet": {}, + "SPACE3-1 Cooling Coil Condenser Inlet": {}, + "SPACE4-1 Cooling Coil Condenser Inlet": {}, + "SPACE5-1 Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Heating Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Total Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Heating Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Sensible Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Latent Cooling Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Electricity Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Fan Part Load Ratio" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Air Conditioner Compressor Part Load Ratio" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "Always1": { + "hourly_value": 1.0 + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Fan Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "supply_air_fan_operating_mode_schedule_name": "Always1", + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Fan Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "supply_air_fan_operating_mode_schedule_name": "Always1", + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Fan Outlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 PTAC", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalAirConditioner" + } + ] + } + }, + "ZoneHVAC:PackagedTerminalAirConditioner": { + "SPACE1-1 PTAC": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE2-1 PTAC": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "Always1" + }, + "SPACE3-1 PTAC": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE4-1 PTAC": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "Always1" + }, + "SPACE5-1 PTAC": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:Fuel", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_hvac_templates.epJSON new file mode 100644 index 00000000000..887323c9bd7 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTAC_hvac_templates.epJSON @@ -0,0 +1,166 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:PTAC": { + "HVACTemplate:Zone:PTAC 1": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:PTAC 2": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "HotWater", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "Always1", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:PTAC 3": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "HotWater", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:PTAC 4": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "Always1", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:PTAC 5": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cooling_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "gas_heating_coil_efficiency": 0.8, + "heating_coil_capacity": "Autosize", + "heating_coil_type": "Gas", + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.0, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_base.epJSON new file mode 100644 index 00000000000..6f3a5a4d203 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_base.epJSON @@ -0,0 +1,2806 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Total Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Sensible Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Latent Heating Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Latent Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Fan Part Load Ratio" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Compressor Part Load Ratio" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "Always1": { + "hourly_value": 1.0, + "schedule_type_limits_name": "Any Number" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_expanded.epJSON new file mode 100644 index 00000000000..cf8df30bf98 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_expanded.epJSON @@ -0,0 +1,4072 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE1-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE1-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE1-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE1-1 Cool DX Coil Cap-FT" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE2-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE2-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE2-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE2-1 Cool DX Coil Cap-FT" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE3-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE3-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE3-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE3-1 Cool DX Coil Cap-FT" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE4-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE4-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE4-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE4-1 Cool DX Coil Cap-FT" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "SPACE5-1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "SPACE5-1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "SPACE5-1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "SPACE5-1 Cool DX Coil Cap-FT" + } + }, + "Coil:Heating:DX:SingleSpeed": { + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "SPACE1-1 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE1-1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE1-1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "SPACE1-1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "SPACE1-1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "SPACE1-1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "SPACE2-1 Heating Coil DefrEIR-FT", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE2-1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE2-1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "SPACE2-1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "SPACE2-1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "SPACE2-1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "defrost_control": "OnDemand", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "SPACE3-1 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE3-1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE3-1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "SPACE3-1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "SPACE3-1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "SPACE3-1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "defrost_control": "OnDemand", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "SPACE4-1 Heating Coil DefrEIR-FT", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE4-1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE4-1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "SPACE4-1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "SPACE4-1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "SPACE4-1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "SPACE5-1 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "SPACE5-1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "SPACE5-1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "SPACE5-1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "SPACE5-1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "SPACE5-1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + } + }, + "Coil:Heating:Electric": { + "SPACE1-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE1-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE3-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE5-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE5-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "SPACE2-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Supp Heating Coil Outlet", + "burner_efficiency": 0.8, + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "SPACE2-1 Supp Heating Coil PLF-FPLR" + }, + "SPACE4-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Supp Heating Coil Outlet", + "burner_efficiency": 0.8, + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "SPACE4-1 Supp Heating Coil PLF-FPLR" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Curve:Biquadratic": { + "SPACE1-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE1-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE1-1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "SPACE2-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE2-1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "SPACE3-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE3-1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "SPACE4-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE4-1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "SPACE5-1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "SPACE5-1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + } + }, + "Curve:Cubic": { + "SPACE1-1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE1-1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE2-1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE2-1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE2-1 Supp Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE3-1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE3-1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE4-1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE4-1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE4-1 Supp Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE5-1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "SPACE5-1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + } + }, + "Curve:Quadratic": { + "SPACE1-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE1-1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE1-1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE2-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE2-1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE2-1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE3-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE3-1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE3-1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE4-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE4-1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE4-1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE5-1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "SPACE5-1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE5-1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "OutdoorAir:Mixer": { + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "SPACE1-1 Cooling Coil Condenser Inlet": {}, + "SPACE2-1 Cooling Coil Condenser Inlet": {}, + "SPACE3-1 Cooling Coil Condenser Inlet": {}, + "SPACE4-1 Cooling Coil Condenser Inlet": {}, + "SPACE5-1 Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Total Heating Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Total Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Sensible Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Latent Heating Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Latent Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Fan Part Load Ratio" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Packaged Terminal Heat Pump Compressor Part Load Ratio" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Electricity Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Runtime Fraction" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "Schedule:Constant": { + "Always1": { + "hourly_value": 1.0, + "schedule_type_limits_name": "Any Number" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "supply_air_fan_operating_mode_schedule_name": "Always1", + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "supply_air_fan_operating_mode_schedule_name": "Always1", + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 PTHP", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalHeatPump" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 PTHP", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalHeatPump" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 PTHP", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalHeatPump" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 PTHP", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalHeatPump" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 PTHP", + "zone_equipment_object_type": "ZoneHVAC:PackagedTerminalHeatPump" + } + ] + } + }, + "ZoneHVAC:PackagedTerminalHeatPump": { + "SPACE1-1 PTHP": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Supp Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supplemental_heating_coil_name": "SPACE1-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE2-1 PTHP": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Supp Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supplemental_heating_coil_name": "SPACE2-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Fuel", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "Always1" + }, + "SPACE3-1 PTHP": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Supp Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supplemental_heating_coil_name": "SPACE3-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE4-1 PTHP": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Supp Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supplemental_heating_coil_name": "SPACE4-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Fuel", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "Always1" + }, + "SPACE5-1 PTHP": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Supp Heating Coil Outlet", + "capacity_control_method": "None", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "supplemental_heating_coil_name": "SPACE5-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_hvac_templates.epJSON new file mode 100644 index 00000000000..1c7db6e90fd --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePTHP_hvac_templates.epJSON @@ -0,0 +1,187 @@ +{ + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:PTHP": { + "HVACTemplate:Zone:PTHP 1": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:PTHP 2": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "Resistive", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Gas", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "Always1", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:PTHP 3": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_defrost_control": "OnDemand", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:PTHP 4": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_defrost_control": "OnDemand", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "Resistive", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Gas", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "Always1", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:PTHP 5": { + "capacity_control_method": "None", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heating_supply_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_base.epJSON new file mode 100644 index 00000000000..7082156448d --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_base.epJSON @@ -0,0 +1,2842 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "TARP" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_expanded.epJSON new file mode 100644 index 00000000000..7b9544dd64b --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_expanded.epJSON @@ -0,0 +1,3971 @@ +{ + "AirLoopHVAC": { + "DXVAV Sys 1": { + "availability_manager_list_name": "DXVAV Sys 1 Availability Managers", + "branch_list_name": "DXVAV Sys 1 Branches", + "demand_side_inlet_node_names": "DXVAV Sys 1 Supply Path Inlet", + "demand_side_outlet_node_name": "DXVAV Sys 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "DXVAV Sys 1 Air Loop Inlet", + "supply_side_outlet_node_names": "DXVAV Sys 1 Supply Fan Outlet" + }, + "DXVAV Sys 2": { + "availability_manager_list_name": "DXVAV Sys 2 Availability Managers", + "branch_list_name": "DXVAV Sys 2 Branches", + "demand_side_inlet_node_names": "DXVAV Sys 2 Supply Path Inlet", + "demand_side_outlet_node_name": "DXVAV Sys 2 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "DXVAV Sys 2 Air Loop Inlet", + "supply_side_outlet_node_names": "DXVAV Sys 2 Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "DXVAV Sys 1 OA Controllers": { + "controller_1_name": "DXVAV Sys 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "DXVAV Sys 2 OA Controllers": { + "controller_1_name": "DXVAV Sys 2 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "DXVAV Sys 1 OA System": { + "availability_manager_list_name": "DXVAV Sys 1 Availability Managers", + "controller_list_name": "DXVAV Sys 1 OA Controllers", + "outdoor_air_equipment_list_name": "DXVAV Sys 1 OA System Equipment" + }, + "DXVAV Sys 2 OA System": { + "availability_manager_list_name": "DXVAV Sys 2 Availability Managers", + "controller_list_name": "DXVAV Sys 2 OA Controllers", + "outdoor_air_equipment_list_name": "DXVAV Sys 2 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "DXVAV Sys 1 OA System Equipment": { + "component_1_name": "DXVAV Sys 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "DXVAV Sys 2 OA System Equipment": { + "component_1_name": "DXVAV Sys 2 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "DXVAV Sys 1 Return Path": { + "components": [ + { + "component_name": "DXVAV Sys 1 Return Plenum", + "component_object_type": "AirLoopHVAC:ReturnPlenum" + } + ], + "return_air_path_outlet_node_name": "DXVAV Sys 1 Return Air Outlet" + }, + "DXVAV Sys 2 Return Path": { + "components": [ + { + "component_name": "DXVAV Sys 2 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "DXVAV Sys 2 Return Air Outlet" + } + }, + "AirLoopHVAC:ReturnPlenum": { + "DXVAV Sys 1 Return Plenum": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "DXVAV Sys 1 Return Air Outlet", + "zone_name": "PLENUM-1", + "zone_node_name": "PLENUM-1 Zone Air Node" + } + }, + "AirLoopHVAC:SupplyPath": { + "DXVAV Sys 1 Supply Path": { + "components": [ + { + "component_name": "DXVAV Sys 1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "DXVAV Sys 1 Supply Path Inlet" + }, + "DXVAV Sys 2 Supply Path": { + "components": [ + { + "component_name": "DXVAV Sys 2 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "DXVAV Sys 2 Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneMixer": { + "DXVAV Sys 2 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "DXVAV Sys 2 Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "DXVAV Sys 1 Zone Splitter": { + "inlet_node_name": "DXVAV Sys 1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + }, + "DXVAV Sys 2 Zone Splitter": { + "inlet_node_name": "DXVAV Sys 2 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:VAV:HeatAndCool:Reheat": { + "SPACE4-1 VAV Reheat": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "damper_air_outlet_node_name": "SPACE4-1 Damper Outlet", + "maximum_air_flow_rate": "Autosize", + "reheat_coil_name": "SPACE4-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Electric", + "zone_minimum_air_flow_fraction": 0.2 + } + }, + "AirTerminal:SingleDuct:VAV:Reheat": { + "SPACE1-1 VAV Reheat": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE1-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "reheat_coil_name": "SPACE1-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Electric", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE2-1 VAV Reheat": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE2-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "reheat_coil_name": "SPACE2-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Electric", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE3-1 VAV Reheat": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE3-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "reheat_coil_name": "SPACE3-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Electric", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE5-1 VAV Reheat": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE5-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "reheat_coil_name": "SPACE5-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Electric", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:NightCycle": { + "DXVAV Sys 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "DXVAV Sys 2 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "DXVAV Sys 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "DXVAV Sys 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "DXVAV Sys 2 Availability Managers": { + "managers": [ + { + "availability_manager_name": "DXVAV Sys 2 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Branch": { + "DXVAV Sys 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "DXVAV Sys 1 Air Loop Inlet", + "component_name": "DXVAV Sys 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "DXVAV Sys 1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 1 Mixed Air Outlet", + "component_name": "DXVAV Sys 1 Cooling System", + "component_object_type": "CoilSystem:Cooling:DX", + "component_outlet_node_name": "DXVAV Sys 1 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 1 Cooling Coil Outlet", + "component_name": "DXVAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Fuel", + "component_outlet_node_name": "DXVAV Sys 1 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 1 Heating Coil Outlet", + "component_name": "DXVAV Sys 1 Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "DXVAV Sys 1 Supply Fan Outlet" + } + ] + }, + "DXVAV Sys 2 Main Branch": { + "components": [ + { + "component_inlet_node_name": "DXVAV Sys 2 Air Loop Inlet", + "component_name": "DXVAV Sys 2 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "DXVAV Sys 2 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 2 Mixed Air Outlet", + "component_name": "DXVAV Sys 2 Cooling System", + "component_object_type": "CoilSystem:Cooling:DX", + "component_outlet_node_name": "DXVAV Sys 2 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 2 Cooling Coil Outlet", + "component_name": "DXVAV Sys 2 Heating Coil", + "component_object_type": "Coil:Heating:Fuel", + "component_outlet_node_name": "DXVAV Sys 2 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "DXVAV Sys 2 Heating Coil Outlet", + "component_name": "DXVAV Sys 2 Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "DXVAV Sys 2 Supply Fan Outlet" + } + ] + } + }, + "BranchList": { + "DXVAV Sys 1 Branches": { + "branches": [ + { + "branch_name": "DXVAV Sys 1 Main Branch" + } + ] + }, + "DXVAV Sys 2 Branches": { + "branches": [ + { + "branch_name": "DXVAV Sys 2 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:TwoSpeed": { + "DXVAV Sys 1 Cooling Coil": { + "air_inlet_node_name": "DXVAV Sys 1 Mixed Air Outlet", + "air_outlet_node_name": "DXVAV Sys 1 Cooling Coil Outlet", + "energy_input_ratio_function_of_flow_fraction_curve_name": "DXVAV Sys 1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DXVAV Sys 1 Cool DX Coil EIR-FT", + "high_speed_gross_rated_cooling_cop": 3, + "high_speed_gross_rated_total_cooling_capacity": "Autosize", + "high_speed_rated_air_flow_rate": "Autosize", + "high_speed_rated_sensible_heat_ratio": "Autosize", + "low_speed_energy_input_ratio_function_of_temperature_curve_name": "DXVAV Sys 1 Cool DX Coil Low EIR-FT", + "low_speed_gross_rated_cooling_cop": 4.5, + "low_speed_gross_rated_sensible_heat_ratio": "Autosize", + "low_speed_gross_rated_total_cooling_capacity": "Autosize", + "low_speed_rated_air_flow_rate": "Autosize", + "low_speed_total_cooling_capacity_function_of_temperature_curve_name": "DXVAV Sys 1 Cool DX Coil Low Cap-FT", + "part_load_fraction_correlation_curve_name": "DXVAV Sys 1 Cool DX Coil PLF", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DXVAV Sys 1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DXVAV Sys 1 Cool DX Coil Cap-FT" + }, + "DXVAV Sys 2 Cooling Coil": { + "air_inlet_node_name": "DXVAV Sys 2 Mixed Air Outlet", + "air_outlet_node_name": "DXVAV Sys 2 Cooling Coil Outlet", + "energy_input_ratio_function_of_flow_fraction_curve_name": "DXVAV Sys 2 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "DXVAV Sys 2 Cool DX Coil EIR-FT", + "high_speed_gross_rated_cooling_cop": 3, + "high_speed_gross_rated_total_cooling_capacity": "Autosize", + "high_speed_rated_air_flow_rate": "Autosize", + "high_speed_rated_sensible_heat_ratio": "Autosize", + "low_speed_energy_input_ratio_function_of_temperature_curve_name": "DXVAV Sys 2 Cool DX Coil Low EIR-FT", + "low_speed_gross_rated_cooling_cop": 4.5, + "low_speed_gross_rated_sensible_heat_ratio": "Autosize", + "low_speed_gross_rated_total_cooling_capacity": "Autosize", + "low_speed_rated_air_flow_rate": "Autosize", + "low_speed_total_cooling_capacity_function_of_temperature_curve_name": "DXVAV Sys 2 Cool DX Coil Low Cap-FT", + "part_load_fraction_correlation_curve_name": "DXVAV Sys 2 Cool DX Coil PLF", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "DXVAV Sys 2 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "DXVAV Sys 2 Cool DX Coil Cap-FT" + } + }, + "Coil:Heating:Electric": { + "SPACE1-1 Reheat Coil": { + "air_inlet_node_name": "SPACE1-1 Damper Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "nominal_capacity": "Autosize" + }, + "SPACE2-1 Reheat Coil": { + "air_inlet_node_name": "SPACE2-1 Damper Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "nominal_capacity": "Autosize" + }, + "SPACE3-1 Reheat Coil": { + "air_inlet_node_name": "SPACE3-1 Damper Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "nominal_capacity": "Autosize" + }, + "SPACE4-1 Reheat Coil": { + "air_inlet_node_name": "SPACE4-1 Damper Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "nominal_capacity": "Autosize" + }, + "SPACE5-1 Reheat Coil": { + "air_inlet_node_name": "SPACE5-1 Damper Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "DXVAV Sys 1 Heating Coil": { + "air_inlet_node_name": "DXVAV Sys 1 Cooling Coil Outlet", + "air_outlet_node_name": "DXVAV Sys 1 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DXVAV Sys 1 Heating Coil PLF-FPLR", + "temperature_setpoint_node_name": "DXVAV Sys 1 Heating Coil Outlet" + }, + "DXVAV Sys 2 Heating Coil": { + "air_inlet_node_name": "DXVAV Sys 2 Cooling Coil Outlet", + "air_outlet_node_name": "DXVAV Sys 2 Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "DXVAV Sys 2 Heating Coil PLF-FPLR", + "temperature_setpoint_node_name": "DXVAV Sys 2 Heating Coil Outlet" + } + }, + "CoilSystem:Cooling:DX": { + "DXVAV Sys 1 Cooling System": { + "cooling_coil_name": "DXVAV Sys 1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:TwoSpeed", + "dehumidification_control_type": "None", + "dx_cooling_coil_system_inlet_node_name": "DXVAV Sys 1 Mixed Air Outlet", + "dx_cooling_coil_system_outlet_node_name": "DXVAV Sys 1 Cooling Coil Outlet", + "dx_cooling_coil_system_sensor_node_name": "DXVAV Sys 1 Cooling Coil Outlet" + }, + "DXVAV Sys 2 Cooling System": { + "cooling_coil_name": "DXVAV Sys 2 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:TwoSpeed", + "dehumidification_control_type": "None", + "dx_cooling_coil_system_inlet_node_name": "DXVAV Sys 2 Mixed Air Outlet", + "dx_cooling_coil_system_outlet_node_name": "DXVAV Sys 2 Cooling Coil Outlet", + "dx_cooling_coil_system_sensor_node_name": "DXVAV Sys 2 Cooling Coil Outlet" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "DXVAV Sys 1 OA Controller": { + "actuator_node_name": "DXVAV Sys 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "DXVAV Sys 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "DXVAV Sys 1 Relief Air Outlet", + "return_air_node_name": "DXVAV Sys 1 Air Loop Inlet" + }, + "DXVAV Sys 2 OA Controller": { + "actuator_node_name": "DXVAV Sys 2 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "DXVAV Sys 2 Mixed Air Outlet", + "relief_air_outlet_node_name": "DXVAV Sys 2 Relief Air Outlet", + "return_air_node_name": "DXVAV Sys 2 Air Loop Inlet" + } + }, + "Curve:Biquadratic": { + "DXVAV Sys 1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.476428, + "coefficient2_x": 0.0401147, + "coefficient3_x_2": 0.000226411, + "coefficient4_y": -0.000827136, + "coefficient5_y_2": -7.3224e-06, + "coefficient6_x_y": -0.000446278, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.632475, + "coefficient2_x": -0.0121321, + "coefficient3_x_2": 0.000507773, + "coefficient4_y": 0.0155377, + "coefficient5_y_2": 0.00027284, + "coefficient6_x_y": -0.000679201, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 1 Cool DX Coil Low Cap-FT": { + "coefficient1_constant": 0.476428, + "coefficient2_x": 0.0401147, + "coefficient3_x_2": 0.000226411, + "coefficient4_y": -0.000827136, + "coefficient5_y_2": -7.3224e-06, + "coefficient6_x_y": -0.000446278, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 1 Cool DX Coil Low EIR-FT": { + "coefficient1_constant": 0.774645, + "coefficient2_x": -0.0343731, + "coefficient3_x_2": 0.000783173, + "coefficient4_y": 0.0146596, + "coefficient5_y_2": 0.000488851, + "coefficient6_x_y": -0.000752036, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 2 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.476428, + "coefficient2_x": 0.0401147, + "coefficient3_x_2": 0.000226411, + "coefficient4_y": -0.000827136, + "coefficient5_y_2": -7.3224e-06, + "coefficient6_x_y": -0.000446278, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 2 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.632475, + "coefficient2_x": -0.0121321, + "coefficient3_x_2": 0.000507773, + "coefficient4_y": 0.0155377, + "coefficient5_y_2": 0.00027284, + "coefficient6_x_y": -0.000679201, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 2 Cool DX Coil Low Cap-FT": { + "coefficient1_constant": 0.476428, + "coefficient2_x": 0.0401147, + "coefficient3_x_2": 0.000226411, + "coefficient4_y": -0.000827136, + "coefficient5_y_2": -7.3224e-06, + "coefficient6_x_y": -0.000446278, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + }, + "DXVAV Sys 2 Cool DX Coil Low EIR-FT": { + "coefficient1_constant": 0.774645, + "coefficient2_x": -0.0343731, + "coefficient3_x_2": 0.000783173, + "coefficient4_y": 0.0146596, + "coefficient5_y_2": 0.000488851, + "coefficient6_x_y": -0.000752036, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 23.88889 + } + }, + "Curve:Cubic": { + "DXVAV Sys 1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.47278589, + "coefficient2_x": 1.2433415, + "coefficient3_x_2": -1.0387055, + "coefficient4_x_3": 0.32257813, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DXVAV Sys 1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.0079484, + "coefficient2_x": 0.34544129, + "coefficient3_x_2": -0.6922891, + "coefficient4_x_3": 0.33889943, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DXVAV Sys 1 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "DXVAV Sys 2 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.47278589, + "coefficient2_x": 1.2433415, + "coefficient3_x_2": -1.0387055, + "coefficient4_x_3": 0.32257813, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DXVAV Sys 2 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.0079484, + "coefficient2_x": 0.34544129, + "coefficient3_x_2": -0.6922891, + "coefficient4_x_3": 0.33889943, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "DXVAV Sys 2 Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "Curve:Quadratic": { + "DXVAV Sys 1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "DXVAV Sys 2 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:VariableVolume": { + "DXVAV Sys 1 Supply Fan": { + "air_inlet_node_name": "DXVAV Sys 1 Heating Coil Outlet", + "air_outlet_node_name": "DXVAV Sys 1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_power_coefficient_1": 0.35071223, + "fan_power_coefficient_2": 0.30850535, + "fan_power_coefficient_3": -0.54137364, + "fan_power_coefficient_4": 0.87198823, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.25, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + }, + "DXVAV Sys 2 Supply Fan": { + "air_inlet_node_name": "DXVAV Sys 2 Heating Coil Outlet", + "air_outlet_node_name": "DXVAV Sys 2 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_power_coefficient_1": 0.35071223, + "fan_power_coefficient_2": 0.30850535, + "fan_power_coefficient_3": -0.54137364, + "fan_power_coefficient_4": 0.87198823, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.25, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 1000 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "DXVAV Sys 1 Mixed Air Nodes": { + "nodes": [ + { + "node_name": "DXVAV Sys 1 Cooling Coil Outlet" + }, + { + "node_name": "DXVAV Sys 1 Mixed Air Outlet" + } + ] + }, + "DXVAV Sys 2 Mixed Air Nodes": { + "nodes": [ + { + "node_name": "DXVAV Sys 2 Cooling Coil Outlet" + }, + { + "node_name": "DXVAV Sys 2 Mixed Air Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "DXVAV Sys 1 OA Mixing Box": { + "mixed_air_node_name": "DXVAV Sys 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "DXVAV Sys 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "DXVAV Sys 1 Relief Air Outlet", + "return_air_stream_node_name": "DXVAV Sys 1 Air Loop Inlet" + }, + "DXVAV Sys 2 OA Mixing Box": { + "mixed_air_node_name": "DXVAV Sys 2 Mixed Air Outlet", + "outdoor_air_stream_node_name": "DXVAV Sys 2 Outdoor Air Inlet", + "relief_air_stream_node_name": "DXVAV Sys 2 Relief Air Outlet", + "return_air_stream_node_name": "DXVAV Sys 2 Air Loop Inlet" + } + }, + "OutdoorAir:NodeList": { + "DXVAV Sys 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "DXVAV Sys 1 Outdoor Air Inlet" + } + ] + }, + "DXVAV Sys 2 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "DXVAV Sys 2 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always10": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 10.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "DXVAV Sys 1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DXVAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "DXVAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "DXVAV Sys 1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "DXVAV Sys 1 Mixed Air Nodes" + }, + "DXVAV Sys 1 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DXVAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "DXVAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "DXVAV Sys 1 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "DXVAV Sys 1 Heating Coil Outlet" + }, + "DXVAV Sys 2 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DXVAV Sys 2 Heating Coil Outlet", + "fan_outlet_node_name": "DXVAV Sys 2 Supply Fan Outlet", + "reference_setpoint_node_name": "DXVAV Sys 2 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "DXVAV Sys 2 Mixed Air Nodes" + }, + "DXVAV Sys 2 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "DXVAV Sys 2 Heating Coil Outlet", + "fan_outlet_node_name": "DXVAV Sys 2 Supply Fan Outlet", + "reference_setpoint_node_name": "DXVAV Sys 2 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "DXVAV Sys 2 Heating Coil Outlet" + } + }, + "SetpointManager:Scheduled": { + "DXVAV Sys 1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "DXVAV Sys 1 Supply Fan Outlet" + }, + "DXVAV Sys 1 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always10", + "setpoint_node_or_nodelist_name": "DXVAV Sys 1 Supply Path Inlet" + }, + "DXVAV Sys 2 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always10", + "setpoint_node_or_nodelist_name": "DXVAV Sys 2 Supply Path Inlet" + } + }, + "SetpointManager:WarmestTemperatureFlow": { + "DXVAV Sys 2 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "hvac_air_loop_name": "DXVAV Sys 2", + "maximum_setpoint_temperature": 18, + "minimum_setpoint_temperature": 12.8, + "setpoint_node_or_nodelist_name": "DXVAV Sys 2 Supply Fan Outlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:System": { + "DXVAV Sys 1 Sizing System": { + "airloop_name": "DXVAV Sys 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 10, + "central_heating_maximum_system_air_flow_ratio": 0.3, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 2.0, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "DXVAV Sys 2 Sizing System": { + "airloop_name": "DXVAV Sys 2", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 10, + "central_heating_maximum_system_air_flow_ratio": 0.3, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 2.0, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "TARP" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:HeatAndCool:Reheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_hvac_templates.epJSON new file mode 100644 index 00000000000..31f9cdf4f2c --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePackagedVAV_hvac_templates.epJSON @@ -0,0 +1,191 @@ +{ + "HVACTemplate:System:PackagedVAV": { + "DXVAV Sys 1": { + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_setpoint_reset_type": "None", + "cooling_coil_type": "TwoSpeedDX", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60, + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_design_setpoint": 10, + "heating_coil_setpoint_reset_type": "None", + "heating_coil_type": "Gas", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "return_plenum_name": "PLENUM-1", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supply_fan_delta_pressure": 1000, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_minimum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_part_load_power_coefficients": "InletVaneDampers", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "DXVAV Sys 2": { + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_setpoint_reset_type": "WarmestTemperatureFirst", + "cooling_coil_type": "TwoSpeedDX", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60, + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_recovery_type": "None", + "heating_coil_capacity": "Autosize", + "heating_coil_design_setpoint": 10, + "heating_coil_setpoint_reset_type": "None", + "heating_coil_type": "Gas", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "ProportionalMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supply_fan_delta_pressure": 1000, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_minimum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_part_load_power_coefficients": "InletVaneDampers", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:VAV": { + "HVACTemplate:Zone:VAV 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "Electric", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "DXVAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:VAV 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "Electric", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "DXVAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:VAV 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "Electric", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "DXVAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:VAV 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "Electric", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "DXVAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE5-1" + } + }, + "HVACTemplate:Zone:VAV:HeatAndCool": { + "HVACTemplate:Zone:VAV:HeatAndCool 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.2, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "Electric", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "DXVAV Sys 2", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_base.epJSON new file mode 100644 index 00000000000..e9993d4e35b --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_base.epJSON @@ -0,0 +1,2841 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "DesignSpecification:OutdoorAir": { + "Office Outdoor Air Spec": { + "outdoor_air_flow_air_changes_per_hour": 0.0, + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "outdoor_air_schedule_name": "Min OA Sched" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "DistrictHeating:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "DistrictCooling:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "DistrictCooling:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "DistrictHeating:Facility", + "reporting_frequency": "Monthly" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Total Cooling Rate" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Total Heating Rate" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Economizer Active Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Heat Recovery Active Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Temperature" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Humidity Ratio" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Mixed Air Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Mixed Air Humidity Ratio" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "System Node Mass Flow Rate" + }, + "Output:Variable 19": { + "key_value": "SPACE2-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "SPACE3-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 21": { + "key_value": "SPACE4-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 22": { + "key_value": "SPACE5-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Zone Sensible Cooling Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Zone Sensible Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Sensible Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Sensible Heating Rate" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Latent Cooling Rate" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Latent Heating Rate" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "No", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_expanded.epJSON new file mode 100644 index 00000000000..0074ccbbd2c --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_expanded.epJSON @@ -0,0 +1,3212 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "DesignSpecification:OutdoorAir": { + "Office Outdoor Air Spec": { + "outdoor_air_flow_air_changes_per_hour": 0.0, + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "outdoor_air_schedule_name": "Min OA Sched" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "DistrictHeating:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "DistrictCooling:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "DistrictCooling:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "DistrictHeating:Facility", + "reporting_frequency": "Monthly" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Total Cooling Rate" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Total Heating Rate" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Economizer Active Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Heat Recovery Active Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Temperature" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Humidity Ratio" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Mixed Air Temperature" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Mixed Air Humidity Ratio" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "System Node Mass Flow Rate" + }, + "Output:Variable 19": { + "key_value": "SPACE2-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "SPACE3-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 21": { + "key_value": "SPACE4-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 22": { + "key_value": "SPACE5-1 Ideal Loads Outdoor Air Inlet", + "reporting_frequency": "Hourly", + "variable_name": "System Node Standard Density Volume Flow Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Zone Sensible Cooling Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Zone Sensible Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Sensible Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Sensible Heating Rate" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Latent Cooling Rate" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Ideal Loads Supply Air Latent Heating Rate" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always100": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 100.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always30": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 30.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always60": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 60.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "No", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.0077, + "zone_cooling_design_supply_air_temperature": 13, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.0156, + "zone_heating_design_supply_air_temperature": 50, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.0077, + "zone_cooling_design_supply_air_temperature": 13, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.0156, + "zone_heating_design_supply_air_temperature": 50, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.0077, + "zone_cooling_design_supply_air_temperature": 13, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.0156, + "zone_heating_design_supply_air_temperature": 50, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.0077, + "zone_cooling_design_supply_air_temperature": 13, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.0156, + "zone_heating_design_supply_air_temperature": 50, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.0077, + "zone_cooling_design_supply_air_temperature": 13, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_heating_design_supply_air_humidity_ratio": 0.0156, + "zone_heating_design_supply_air_temperature": 50, + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Humidistat": { + "SPACE4-1 Humidification Humidistat": { + "dehumidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always100", + "humidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always30", + "zone_name": "SPACE4-1" + }, + "SPACE5-1 Humidification Humidistat": { + "dehumidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always60", + "humidifying_relative_humidity_setpoint_schedule_name": "HVACTemplate-Always30", + "zone_name": "SPACE5-1" + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 Ideal Loads Air System", + "zone_equipment_object_type": "ZoneHVAC:IdealLoadsAirSystem" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 Ideal Loads Air System", + "zone_equipment_object_type": "ZoneHVAC:IdealLoadsAirSystem" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 Ideal Loads Air System", + "zone_equipment_object_type": "ZoneHVAC:IdealLoadsAirSystem" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 Ideal Loads Air System", + "zone_equipment_object_type": "ZoneHVAC:IdealLoadsAirSystem" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 Ideal Loads Air System", + "zone_equipment_object_type": "ZoneHVAC:IdealLoadsAirSystem" + } + ] + } + }, + "ZoneHVAC:IdealLoadsAirSystem": { + "SPACE1-1 Ideal Loads Air System": { + "cooling_limit": "NoLimit", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "NoEconomizer", + "sensible_heat_recovery_effectiveness": 0.7, + "zone_supply_air_node_name": "SPACE1-1 Supply Inlet" + }, + "SPACE2-1 Ideal Loads Air System": { + "cooling_limit": "NoLimit", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "NoEconomizer", + "outdoor_air_inlet_node_name": "SPACE2-1 Outdoor Air Inlet", + "sensible_heat_recovery_effectiveness": 0.7, + "zone_supply_air_node_name": "SPACE2-1 Supply Inlet" + }, + "SPACE3-1 Ideal Loads Air System": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialDryBulb", + "outdoor_air_inlet_node_name": "SPACE3-1 Outdoor Air Inlet", + "sensible_heat_recovery_effectiveness": 0.7, + "zone_supply_air_node_name": "SPACE3-1 Supply Inlet" + }, + "SPACE4-1 Ideal Loads Air System": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heat_recovery_type": "Sensible", + "heating_limit": "NoLimit", + "humidification_control_type": "Humidistat", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialDryBulb", + "outdoor_air_inlet_node_name": "SPACE4-1 Outdoor Air Inlet", + "sensible_heat_recovery_effectiveness": 0.7, + "zone_supply_air_node_name": "SPACE4-1 Supply Inlet" + }, + "SPACE5-1 Ideal Loads Air System": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "Humidistat", + "demand_controlled_ventilation_type": "OccupancySchedule", + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heat_recovery_type": "Enthalpy", + "heating_limit": "LimitFlowRate", + "humidification_control_type": "Humidistat", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialEnthalpy", + "outdoor_air_inlet_node_name": "SPACE5-1 Outdoor Air Inlet", + "sensible_heat_recovery_effectiveness": 0.7, + "zone_supply_air_node_name": "SPACE5-1 Supply Inlet" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_hvac_templates.epJSON new file mode 100644 index 00000000000..19d58abc537 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZonePurchAir_hvac_templates.epJSON @@ -0,0 +1,120 @@ +{ + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:IdealLoadsAirSystem": { + "HVACTemplate:Zone:IdealLoadsAirSystem 1": { + "cooling_limit": "NoLimit", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "humidification_setpoint": 30, + "latent_heat_recovery_effectiveness": 0.65, + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "NoEconomizer", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "None", + "sensible_heat_recovery_effectiveness": 0.7, + "template_thermostat_name": "All Zones", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:IdealLoadsAirSystem 2": { + "cooling_limit": "NoLimit", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "humidification_setpoint": 30, + "latent_heat_recovery_effectiveness": 0.65, + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "NoEconomizer", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "sensible_heat_recovery_effectiveness": 0.7, + "template_thermostat_name": "All Zones", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:IdealLoadsAirSystem 3": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "heat_recovery_type": "None", + "heating_limit": "NoLimit", + "humidification_control_type": "None", + "humidification_setpoint": 30, + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialDryBulb", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "sensible_heat_recovery_effectiveness": 0.7, + "template_thermostat_name": "All Zones", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:IdealLoadsAirSystem 4": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "ConstantSensibleHeatRatio", + "demand_controlled_ventilation_type": "None", + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heat_recovery_type": "Sensible", + "heating_limit": "NoLimit", + "humidification_control_type": "Humidistat", + "humidification_setpoint": 30, + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialDryBulb", + "outdoor_air_method": "DetailedSpecification", + "sensible_heat_recovery_effectiveness": 0.7, + "template_thermostat_name": "All Zones", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:IdealLoadsAirSystem 5": { + "cooling_limit": "LimitFlowRate", + "cooling_sensible_heat_ratio": 0.7, + "dehumidification_control_type": "Humidistat", + "dehumidification_setpoint": 60, + "demand_controlled_ventilation_type": "OccupancySchedule", + "design_specification_outdoor_air_object_name": "Office Outdoor Air Spec", + "heat_recovery_type": "Enthalpy", + "heating_limit": "LimitFlowRate", + "humidification_control_type": "Humidistat", + "humidification_setpoint": 30, + "latent_heat_recovery_effectiveness": 0.65, + "maximum_cooling_air_flow_rate": "Autosize", + "maximum_heating_air_flow_rate": "Autosize", + "maximum_heating_supply_air_humidity_ratio": 0.0156, + "maximum_heating_supply_air_temperature": 50, + "minimum_cooling_supply_air_humidity_ratio": 0.0077, + "minimum_cooling_supply_air_temperature": 13, + "outdoor_air_economizer_type": "DifferentialEnthalpy", + "outdoor_air_method": "DetailedSpecification", + "sensible_heat_recovery_effectiveness": 0.7, + "template_thermostat_name": "All Zones", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_base.epJSON new file mode 100644 index 00000000000..53fa961c07b --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_base.epJSON @@ -0,0 +1,2839 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "TARP" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_expanded.epJSON new file mode 100644 index 00000000000..9f20efdb5f2 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_expanded.epJSON @@ -0,0 +1,4847 @@ +{ + "AirLoopHVAC": { + "Heat Pump 1": { + "availability_manager_list_name": "Heat Pump 1 Availability Managers", + "branch_list_name": "Heat Pump 1 Branches", + "demand_side_inlet_node_names": "Heat Pump 1 Supply Path Inlet", + "demand_side_outlet_node_name": "Heat Pump 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Heat Pump 1 Air Loop Inlet", + "supply_side_outlet_node_names": "Heat Pump 1 Supp Heating Coil Outlet" + }, + "Heat Pump 2": { + "availability_manager_list_name": "Heat Pump 2 Availability Managers", + "branch_list_name": "Heat Pump 2 Branches", + "demand_side_inlet_node_names": "Heat Pump 2 Supply Path Inlet", + "demand_side_outlet_node_name": "Heat Pump 2 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Heat Pump 2 Air Loop Inlet", + "supply_side_outlet_node_names": "Heat Pump 2 Supp Heating Coil Outlet" + }, + "Heat Pump 3": { + "availability_manager_list_name": "Heat Pump 3 Availability Managers", + "branch_list_name": "Heat Pump 3 Branches", + "demand_side_inlet_node_names": "Heat Pump 3 Supply Path Inlet", + "demand_side_outlet_node_name": "Heat Pump 3 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Heat Pump 3 Air Loop Inlet", + "supply_side_outlet_node_names": "Heat Pump 3 Supp Heating Coil Outlet" + }, + "Heat Pump 4": { + "availability_manager_list_name": "Heat Pump 4 Availability Managers", + "branch_list_name": "Heat Pump 4 Branches", + "demand_side_inlet_node_names": "Heat Pump 4 Supply Path Inlet", + "demand_side_outlet_node_name": "Heat Pump 4 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Heat Pump 4 Air Loop Inlet", + "supply_side_outlet_node_names": "Heat Pump 4 Supp Heating Coil Outlet" + }, + "Heat Pump 5": { + "availability_manager_list_name": "Heat Pump 5 Availability Managers", + "branch_list_name": "Heat Pump 5 Branches", + "demand_side_inlet_node_names": "Heat Pump 5 Supply Path Inlet", + "demand_side_outlet_node_name": "Heat Pump 5 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Heat Pump 5 Air Loop Inlet", + "supply_side_outlet_node_names": "Heat Pump 5 Supp Heating Coil Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "Heat Pump 1 OA Controllers": { + "controller_1_name": "Heat Pump 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Heat Pump 2 OA Controllers": { + "controller_1_name": "Heat Pump 2 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Heat Pump 3 OA Controllers": { + "controller_1_name": "Heat Pump 3 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Heat Pump 4 OA Controllers": { + "controller_1_name": "Heat Pump 4 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Heat Pump 5 OA Controllers": { + "controller_1_name": "Heat Pump 5 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "Heat Pump 1 OA System": { + "availability_manager_list_name": "Heat Pump 1 Availability Managers", + "controller_list_name": "Heat Pump 1 OA Controllers", + "outdoor_air_equipment_list_name": "Heat Pump 1 OA System Equipment" + }, + "Heat Pump 2 OA System": { + "availability_manager_list_name": "Heat Pump 2 Availability Managers", + "controller_list_name": "Heat Pump 2 OA Controllers", + "outdoor_air_equipment_list_name": "Heat Pump 2 OA System Equipment" + }, + "Heat Pump 3 OA System": { + "availability_manager_list_name": "Heat Pump 3 Availability Managers", + "controller_list_name": "Heat Pump 3 OA Controllers", + "outdoor_air_equipment_list_name": "Heat Pump 3 OA System Equipment" + }, + "Heat Pump 4 OA System": { + "availability_manager_list_name": "Heat Pump 4 Availability Managers", + "controller_list_name": "Heat Pump 4 OA Controllers", + "outdoor_air_equipment_list_name": "Heat Pump 4 OA System Equipment" + }, + "Heat Pump 5 OA System": { + "availability_manager_list_name": "Heat Pump 5 Availability Managers", + "controller_list_name": "Heat Pump 5 OA Controllers", + "outdoor_air_equipment_list_name": "Heat Pump 5 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "Heat Pump 1 OA System Equipment": { + "component_1_name": "Heat Pump 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Heat Pump 2 OA System Equipment": { + "component_1_name": "Heat Pump 2 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Heat Pump 3 OA System Equipment": { + "component_1_name": "Heat Pump 3 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Heat Pump 4 OA System Equipment": { + "component_1_name": "Heat Pump 4 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Heat Pump 5 OA System Equipment": { + "component_1_name": "Heat Pump 5 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "Heat Pump 1 Return Path": { + "components": [ + { + "component_name": "Heat Pump 1 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Heat Pump 1 Return Air Outlet" + }, + "Heat Pump 2 Return Path": { + "components": [ + { + "component_name": "Heat Pump 2 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Heat Pump 2 Return Air Outlet" + }, + "Heat Pump 3 Return Path": { + "components": [ + { + "component_name": "Heat Pump 3 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Heat Pump 3 Return Air Outlet" + }, + "Heat Pump 4 Return Path": { + "components": [ + { + "component_name": "Heat Pump 4 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Heat Pump 4 Return Air Outlet" + }, + "Heat Pump 5 Return Path": { + "components": [ + { + "component_name": "Heat Pump 5 Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Heat Pump 5 Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "Heat Pump 1 Supply Path": { + "components": [ + { + "component_name": "Heat Pump 1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Heat Pump 1 Supply Path Inlet" + }, + "Heat Pump 2 Supply Path": { + "components": [ + { + "component_name": "Heat Pump 2 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Heat Pump 2 Supply Path Inlet" + }, + "Heat Pump 3 Supply Path": { + "components": [ + { + "component_name": "Heat Pump 3 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Heat Pump 3 Supply Path Inlet" + }, + "Heat Pump 4 Supply Path": { + "components": [ + { + "component_name": "Heat Pump 4 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Heat Pump 4 Supply Path Inlet" + }, + "Heat Pump 5 Supply Path": { + "components": [ + { + "component_name": "Heat Pump 5 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Heat Pump 5 Supply Path Inlet" + } + }, + "AirLoopHVAC:UnitaryHeatPump:AirToAir": { + "Heat Pump 1 Heat Pump": { + "air_inlet_node_name": "Heat Pump 1 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 1 Supp Heating Coil Outlet", + "controlling_zone_or_thermostat_location": "SPACE1-1", + "cooling_coil_name": "Heat Pump 1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "Heat Pump 1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "supplemental_heating_coil_name": "Heat Pump 1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "Heat Pump 1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "Heat Pump 2 Heat Pump": { + "air_inlet_node_name": "Heat Pump 2 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 2 Supp Heating Coil Outlet", + "controlling_zone_or_thermostat_location": "SPACE2-1", + "cooling_coil_name": "Heat Pump 2 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "Heat Pump 2 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "supplemental_heating_coil_name": "Heat Pump 2 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "Heat Pump 2 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "Heat Pump 3 Heat Pump": { + "air_inlet_node_name": "Heat Pump 3 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 3 Supp Heating Coil Outlet", + "controlling_zone_or_thermostat_location": "SPACE3-1", + "cooling_coil_name": "Heat Pump 3 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "Heat Pump 3 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "supplemental_heating_coil_name": "Heat Pump 3 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "Heat Pump 3 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "Heat Pump 4 Heat Pump": { + "air_inlet_node_name": "Heat Pump 4 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 4 Supp Heating Coil Outlet", + "controlling_zone_or_thermostat_location": "SPACE4-1", + "cooling_coil_name": "Heat Pump 4 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "Heat Pump 4 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "supplemental_heating_coil_name": "Heat Pump 4 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "Heat Pump 4 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "Heat Pump 5 Heat Pump": { + "air_inlet_node_name": "Heat Pump 5 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 5 Supp Heating Coil Outlet", + "controlling_zone_or_thermostat_location": "SPACE5-1", + "cooling_coil_name": "Heat Pump 5 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "BlowThrough", + "heating_coil_name": "Heat Pump 5 Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "supplemental_heating_coil_name": "Heat Pump 5 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "Heat Pump 5 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + } + }, + "AirLoopHVAC:ZoneMixer": { + "Heat Pump 1 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + } + ], + "outlet_node_name": "Heat Pump 1 Return Air Outlet" + }, + "Heat Pump 2 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE2-1 Return Outlet" + } + ], + "outlet_node_name": "Heat Pump 2 Return Air Outlet" + }, + "Heat Pump 3 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE3-1 Return Outlet" + } + ], + "outlet_node_name": "Heat Pump 3 Return Air Outlet" + }, + "Heat Pump 4 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "Heat Pump 4 Return Air Outlet" + }, + "Heat Pump 5 Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "Heat Pump 5 Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "Heat Pump 1 Zone Splitter": { + "inlet_node_name": "Heat Pump 1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + } + ] + }, + "Heat Pump 2 Zone Splitter": { + "inlet_node_name": "Heat Pump 2 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + } + ] + }, + "Heat Pump 3 Zone Splitter": { + "inlet_node_name": "Heat Pump 3 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + } + ] + }, + "Heat Pump 4 Zone Splitter": { + "inlet_node_name": "Heat Pump 4 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + }, + "Heat Pump 5 Zone Splitter": { + "inlet_node_name": "Heat Pump 5 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:ConstantVolume:NoReheat": { + "SPACE1-1 CV": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE2-1 CV": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE3-1 CV": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE4-1 CV": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE5-1 CV": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + } + }, + "AvailabilityManager:NightCycle": { + "Heat Pump 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "Heat Pump 2 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "Heat Pump 3 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "Heat Pump 4 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + }, + "Heat Pump 5 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Heat Pump 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Heat Pump 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Heat Pump 2 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Heat Pump 2 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Heat Pump 3 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Heat Pump 3 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Heat Pump 4 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Heat Pump 4 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Heat Pump 5 Availability Managers": { + "managers": [ + { + "availability_manager_name": "Heat Pump 5 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Branch": { + "Heat Pump 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump 1 Air Loop Inlet", + "component_name": "Heat Pump 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Heat Pump 1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Heat Pump 1 Mixed Air Outlet", + "component_name": "Heat Pump 1 Heat Pump", + "component_object_type": "AirLoopHVAC:UnitaryHeatPump:AirToAir", + "component_outlet_node_name": "Heat Pump 1 Supp Heating Coil Outlet" + } + ] + }, + "Heat Pump 2 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump 2 Air Loop Inlet", + "component_name": "Heat Pump 2 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Heat Pump 2 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Heat Pump 2 Mixed Air Outlet", + "component_name": "Heat Pump 2 Heat Pump", + "component_object_type": "AirLoopHVAC:UnitaryHeatPump:AirToAir", + "component_outlet_node_name": "Heat Pump 2 Supp Heating Coil Outlet" + } + ] + }, + "Heat Pump 3 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump 3 Air Loop Inlet", + "component_name": "Heat Pump 3 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Heat Pump 3 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Heat Pump 3 Mixed Air Outlet", + "component_name": "Heat Pump 3 Heat Pump", + "component_object_type": "AirLoopHVAC:UnitaryHeatPump:AirToAir", + "component_outlet_node_name": "Heat Pump 3 Supp Heating Coil Outlet" + } + ] + }, + "Heat Pump 4 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump 4 Air Loop Inlet", + "component_name": "Heat Pump 4 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Heat Pump 4 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Heat Pump 4 Mixed Air Outlet", + "component_name": "Heat Pump 4 Heat Pump", + "component_object_type": "AirLoopHVAC:UnitaryHeatPump:AirToAir", + "component_outlet_node_name": "Heat Pump 4 Supp Heating Coil Outlet" + } + ] + }, + "Heat Pump 5 Main Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump 5 Air Loop Inlet", + "component_name": "Heat Pump 5 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Heat Pump 5 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Heat Pump 5 Mixed Air Outlet", + "component_name": "Heat Pump 5 Heat Pump", + "component_object_type": "AirLoopHVAC:UnitaryHeatPump:AirToAir", + "component_outlet_node_name": "Heat Pump 5 Supp Heating Coil Outlet" + } + ] + } + }, + "BranchList": { + "Heat Pump 1 Branches": { + "branches": [ + { + "branch_name": "Heat Pump 1 Main Branch" + } + ] + }, + "Heat Pump 2 Branches": { + "branches": [ + { + "branch_name": "Heat Pump 2 Main Branch" + } + ] + }, + "Heat Pump 3 Branches": { + "branches": [ + { + "branch_name": "Heat Pump 3 Main Branch" + } + ] + }, + "Heat Pump 4 Branches": { + "branches": [ + { + "branch_name": "Heat Pump 4 Main Branch" + } + ] + }, + "Heat Pump 5 Branches": { + "branches": [ + { + "branch_name": "Heat Pump 5 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "Heat Pump 1 Cooling Coil": { + "air_inlet_node_name": "Heat Pump 1 Supply Fan Outlet", + "air_outlet_node_name": "Heat Pump 1 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Heat Pump 1 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 1 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 1 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Heat Pump 1 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Heat Pump 1 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Heat Pump 1 Cool DX Coil Cap-FT" + }, + "Heat Pump 2 Cooling Coil": { + "air_inlet_node_name": "Heat Pump 2 Supply Fan Outlet", + "air_outlet_node_name": "Heat Pump 2 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Heat Pump 2 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 2 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 2 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Heat Pump 2 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Heat Pump 2 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Heat Pump 2 Cool DX Coil Cap-FT" + }, + "Heat Pump 3 Cooling Coil": { + "air_inlet_node_name": "Heat Pump 3 Supply Fan Outlet", + "air_outlet_node_name": "Heat Pump 3 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Heat Pump 3 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 3 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 3 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Heat Pump 3 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Heat Pump 3 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Heat Pump 3 Cool DX Coil Cap-FT" + }, + "Heat Pump 4 Cooling Coil": { + "air_inlet_node_name": "Heat Pump 4 Supply Fan Outlet", + "air_outlet_node_name": "Heat Pump 4 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Heat Pump 4 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 4 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 4 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Heat Pump 4 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Heat Pump 4 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Heat Pump 4 Cool DX Coil Cap-FT" + }, + "Heat Pump 5 Cooling Coil": { + "air_inlet_node_name": "Heat Pump 5 Supply Fan Outlet", + "air_outlet_node_name": "Heat Pump 5 Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Heat Pump 5 Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 5 Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 5 Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Heat Pump 5 Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Heat Pump 5 Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Heat Pump 5 Cool DX Coil Cap-FT" + } + }, + "Coil:Heating:DX:SingleSpeed": { + "Heat Pump 1 Heating Coil": { + "air_inlet_node_name": "Heat Pump 1 Cooling Coil Outlet", + "air_outlet_node_name": "Heat Pump 1 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 1 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 1 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 1 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Heat Pump 1 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Heat Pump 1 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Heat Pump 1 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "Heat Pump 2 Heating Coil": { + "air_inlet_node_name": "Heat Pump 2 Cooling Coil Outlet", + "air_outlet_node_name": "Heat Pump 2 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 2 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 2 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 2 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Heat Pump 2 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Heat Pump 2 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Heat Pump 2 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "Heat Pump 3 Heating Coil": { + "air_inlet_node_name": "Heat Pump 3 Cooling Coil Outlet", + "air_outlet_node_name": "Heat Pump 3 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 3 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 3 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 3 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Heat Pump 3 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Heat Pump 3 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Heat Pump 3 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "Heat Pump 4 Heating Coil": { + "air_inlet_node_name": "Heat Pump 4 Cooling Coil Outlet", + "air_outlet_node_name": "Heat Pump 4 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 4 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 4 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 4 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Heat Pump 4 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Heat Pump 4 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Heat Pump 4 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + }, + "Heat Pump 5 Heating Coil": { + "air_inlet_node_name": "Heat Pump 5 Cooling Coil Outlet", + "air_outlet_node_name": "Heat Pump 5 Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 5 Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Heat Pump 5 Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Heat Pump 5 Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Heat Pump 5 Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Heat Pump 5 Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Heat Pump 5 Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + } + }, + "Coil:Heating:Electric": { + "Heat Pump 1 Supp Heating Coil": { + "air_inlet_node_name": "Heat Pump 1 Heating Coil Outlet", + "air_outlet_node_name": "Heat Pump 1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Heat Pump 2 Supp Heating Coil": { + "air_inlet_node_name": "Heat Pump 2 Heating Coil Outlet", + "air_outlet_node_name": "Heat Pump 2 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Heat Pump 3 Supp Heating Coil": { + "air_inlet_node_name": "Heat Pump 3 Heating Coil Outlet", + "air_outlet_node_name": "Heat Pump 3 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Heat Pump 4 Supp Heating Coil": { + "air_inlet_node_name": "Heat Pump 4 Heating Coil Outlet", + "air_outlet_node_name": "Heat Pump 4 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Heat Pump 5 Supp Heating Coil": { + "air_inlet_node_name": "Heat Pump 5 Heating Coil Outlet", + "air_outlet_node_name": "Heat Pump 5 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "Heat Pump 1 OA Controller": { + "actuator_node_name": "Heat Pump 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Heat Pump 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "Heat Pump 1 Relief Air Outlet", + "return_air_node_name": "Heat Pump 1 Air Loop Inlet" + }, + "Heat Pump 2 OA Controller": { + "actuator_node_name": "Heat Pump 2 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Heat Pump 2 Mixed Air Outlet", + "relief_air_outlet_node_name": "Heat Pump 2 Relief Air Outlet", + "return_air_node_name": "Heat Pump 2 Air Loop Inlet" + }, + "Heat Pump 3 OA Controller": { + "actuator_node_name": "Heat Pump 3 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Heat Pump 3 Mixed Air Outlet", + "relief_air_outlet_node_name": "Heat Pump 3 Relief Air Outlet", + "return_air_node_name": "Heat Pump 3 Air Loop Inlet" + }, + "Heat Pump 4 OA Controller": { + "actuator_node_name": "Heat Pump 4 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Heat Pump 4 Mixed Air Outlet", + "relief_air_outlet_node_name": "Heat Pump 4 Relief Air Outlet", + "return_air_node_name": "Heat Pump 4 Air Loop Inlet" + }, + "Heat Pump 5 OA Controller": { + "actuator_node_name": "Heat Pump 5 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Heat Pump 5 Mixed Air Outlet", + "relief_air_outlet_node_name": "Heat Pump 5 Relief Air Outlet", + "return_air_node_name": "Heat Pump 5 Air Loop Inlet" + } + }, + "Curve:Biquadratic": { + "Heat Pump 1 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 1 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 1 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "Heat Pump 2 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 2 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 2 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "Heat Pump 3 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 3 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 3 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "Heat Pump 4 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 4 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 4 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + }, + "Heat Pump 5 Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 5 Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Heat Pump 5 Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + } + }, + "Curve:Cubic": { + "Heat Pump 1 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 1 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 1 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 2 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 2 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 2 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 3 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 3 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 3 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 4 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 4 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 4 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 5 Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 5 Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Heat Pump 5 Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + } + }, + "Curve:Quadratic": { + "Heat Pump 1 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 1 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 1 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump 1 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 1 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 2 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 2 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 2 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump 2 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 2 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 3 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 3 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 3 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump 3 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 3 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 4 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 4 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 4 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump 4 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 4 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 5 Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 5 Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Heat Pump 5 Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump 5 Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Heat Pump 5 Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "Heat Pump 1 Supply Fan": { + "air_inlet_node_name": "Heat Pump 1 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Heat Pump 2 Supply Fan": { + "air_inlet_node_name": "Heat Pump 2 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 2 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Heat Pump 3 Supply Fan": { + "air_inlet_node_name": "Heat Pump 3 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 3 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Heat Pump 4 Supply Fan": { + "air_inlet_node_name": "Heat Pump 4 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 4 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Heat Pump 5 Supply Fan": { + "air_inlet_node_name": "Heat Pump 5 Mixed Air Outlet", + "air_outlet_node_name": "Heat Pump 5 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "OutdoorAir:Mixer": { + "Heat Pump 1 OA Mixing Box": { + "mixed_air_node_name": "Heat Pump 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Heat Pump 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "Heat Pump 1 Relief Air Outlet", + "return_air_stream_node_name": "Heat Pump 1 Air Loop Inlet" + }, + "Heat Pump 2 OA Mixing Box": { + "mixed_air_node_name": "Heat Pump 2 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Heat Pump 2 Outdoor Air Inlet", + "relief_air_stream_node_name": "Heat Pump 2 Relief Air Outlet", + "return_air_stream_node_name": "Heat Pump 2 Air Loop Inlet" + }, + "Heat Pump 3 OA Mixing Box": { + "mixed_air_node_name": "Heat Pump 3 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Heat Pump 3 Outdoor Air Inlet", + "relief_air_stream_node_name": "Heat Pump 3 Relief Air Outlet", + "return_air_stream_node_name": "Heat Pump 3 Air Loop Inlet" + }, + "Heat Pump 4 OA Mixing Box": { + "mixed_air_node_name": "Heat Pump 4 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Heat Pump 4 Outdoor Air Inlet", + "relief_air_stream_node_name": "Heat Pump 4 Relief Air Outlet", + "return_air_stream_node_name": "Heat Pump 4 Air Loop Inlet" + }, + "Heat Pump 5 OA Mixing Box": { + "mixed_air_node_name": "Heat Pump 5 Mixed Air Outlet", + "outdoor_air_stream_node_name": "Heat Pump 5 Outdoor Air Inlet", + "relief_air_stream_node_name": "Heat Pump 5 Relief Air Outlet", + "return_air_stream_node_name": "Heat Pump 5 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Heat Pump 1 Cooling Coil Condenser Inlet": {}, + "Heat Pump 2 Cooling Coil Condenser Inlet": {}, + "Heat Pump 3 Cooling Coil Condenser Inlet": {}, + "Heat Pump 4 Cooling Coil Condenser Inlet": {}, + "Heat Pump 5 Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "Heat Pump 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Heat Pump 1 Outdoor Air Inlet" + } + ] + }, + "Heat Pump 2 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Heat Pump 2 Outdoor Air Inlet" + } + ] + }, + "Heat Pump 3 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Heat Pump 3 Outdoor Air Inlet" + } + ] + }, + "Heat Pump 4 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Heat Pump 4 Outdoor Air Inlet" + } + ] + }, + "Heat Pump 5 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Heat Pump 5 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "Heat Pump 1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Heat Pump 1 Mixed Air Outlet", + "fan_outlet_node_name": "Heat Pump 1 Supply Fan Outlet", + "reference_setpoint_node_name": "Heat Pump 1 Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Heat Pump 1 Mixed Air Outlet" + }, + "Heat Pump 2 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Heat Pump 2 Mixed Air Outlet", + "fan_outlet_node_name": "Heat Pump 2 Supply Fan Outlet", + "reference_setpoint_node_name": "Heat Pump 2 Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Heat Pump 2 Mixed Air Outlet" + }, + "Heat Pump 3 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Heat Pump 3 Mixed Air Outlet", + "fan_outlet_node_name": "Heat Pump 3 Supply Fan Outlet", + "reference_setpoint_node_name": "Heat Pump 3 Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Heat Pump 3 Mixed Air Outlet" + }, + "Heat Pump 4 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Heat Pump 4 Mixed Air Outlet", + "fan_outlet_node_name": "Heat Pump 4 Supply Fan Outlet", + "reference_setpoint_node_name": "Heat Pump 4 Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Heat Pump 4 Mixed Air Outlet" + }, + "Heat Pump 5 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Heat Pump 5 Mixed Air Outlet", + "fan_outlet_node_name": "Heat Pump 5 Supply Fan Outlet", + "reference_setpoint_node_name": "Heat Pump 5 Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Heat Pump 5 Mixed Air Outlet" + } + }, + "SetpointManager:SingleZone:Cooling": { + "Heat Pump 1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE1-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Heat Pump 1 Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE1-1 Supply Inlet", + "zone_node_name": "SPACE1-1 Zone Air Node" + }, + "Heat Pump 2 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE2-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Heat Pump 2 Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE2-1 Supply Inlet", + "zone_node_name": "SPACE2-1 Zone Air Node" + }, + "Heat Pump 3 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE3-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Heat Pump 3 Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE3-1 Supply Inlet", + "zone_node_name": "SPACE3-1 Zone Air Node" + }, + "Heat Pump 4 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE4-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Heat Pump 4 Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE4-1 Supply Inlet", + "zone_node_name": "SPACE4-1 Zone Air Node" + }, + "Heat Pump 5 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE5-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Heat Pump 5 Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE5-1 Supply Inlet", + "zone_node_name": "SPACE5-1 Zone Air Node" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "No", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:System": { + "Heat Pump 1 Sizing System": { + "airloop_name": "Heat Pump 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_coil_design_setpoint": 7.0, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Heat Pump 2 Sizing System": { + "airloop_name": "Heat Pump 2", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_coil_design_setpoint": 7.0, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Heat Pump 3 Sizing System": { + "airloop_name": "Heat Pump 3", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_coil_design_setpoint": 7.0, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Heat Pump 4 Sizing System": { + "airloop_name": "Heat Pump 4", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_coil_design_setpoint": 7.0, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Heat Pump 5 Sizing System": { + "airloop_name": "Heat Pump 5", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 14, + "central_heating_design_supply_air_temperature": 50.0, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_coil_design_setpoint": 7.0, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "TARP" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_hvac_templates.epJSON new file mode 100644 index 00000000000..5a3b8dc2b17 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitaryHeatPump_hvac_templates.epJSON @@ -0,0 +1,322 @@ +{ + "HVACTemplate:System:UnitaryHeatPump:AirToAir": { + "Heat Pump 1": { + "control_zone_or_thermostat_location_name": "SPACE1-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14, + "cooling_supply_air_flow_rate": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_type": "DifferentialDryBulb", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_type": "None", + "heating_design_supply_air_temperature": 50.0, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "no_load_supply_air_flow_rate": "Autosize", + "sensible_heat_recovery_effectiveness": 0.7, + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "Heat Pump 2": { + "control_zone_or_thermostat_location_name": "SPACE2-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14, + "cooling_supply_air_flow_rate": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_type": "DifferentialDryBulb", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_type": "None", + "heating_design_supply_air_temperature": 50.0, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "no_load_supply_air_flow_rate": "Autosize", + "sensible_heat_recovery_effectiveness": 0.7, + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "Heat Pump 3": { + "control_zone_or_thermostat_location_name": "SPACE3-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14, + "cooling_supply_air_flow_rate": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_type": "DifferentialDryBulb", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_type": "None", + "heating_design_supply_air_temperature": 50.0, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "no_load_supply_air_flow_rate": "Autosize", + "sensible_heat_recovery_effectiveness": 0.7, + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "Heat Pump 4": { + "control_zone_or_thermostat_location_name": "SPACE4-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14, + "cooling_supply_air_flow_rate": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_type": "DifferentialDryBulb", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_type": "None", + "heating_design_supply_air_temperature": 50.0, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "no_load_supply_air_flow_rate": "Autosize", + "sensible_heat_recovery_effectiveness": 0.7, + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + }, + "Heat Pump 5": { + "control_zone_or_thermostat_location_name": "SPACE5-1", + "cooling_coil_gross_rated_cop": 3, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 14, + "cooling_supply_air_flow_rate": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_type": "DifferentialDryBulb", + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_rated_cop": 2.75, + "heat_pump_heating_coil_type": "SingleSpeedDXHeatPump", + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_type": "None", + "heating_design_supply_air_temperature": 50.0, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690, + "humidifier_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "no_load_supply_air_flow_rate": "Autosize", + "sensible_heat_recovery_effectiveness": 0.7, + "supplemental_gas_heating_coil_efficiency": 0.8, + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:Unitary": { + "HVACTemplate:Zone:Unitary 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Heat Pump 1", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:Unitary 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Heat Pump 2", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:Unitary 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Heat Pump 3", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:Unitary 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Heat Pump 4", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:Unitary 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Heat Pump 5", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_base.epJSON new file mode 100644 index 00000000000..9adc386619e --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_base.epJSON @@ -0,0 +1,2908 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_expanded.epJSON new file mode 100644 index 00000000000..b237f209ea5 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_expanded.epJSON @@ -0,0 +1,5848 @@ +{ + "AirLoopHVAC": { + "Sys 1 Furnace DX Cool SnglSpd": { + "availability_manager_list_name": "Sys 1 Furnace DX Cool SnglSpd Availability Managers", + "branch_list_name": "Sys 1 Furnace DX Cool SnglSpd Branches", + "demand_side_inlet_node_names": "Sys 1 Furnace DX Cool SnglSpd Supply Path Inlet", + "demand_side_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Air Loop Inlet", + "supply_side_outlet_node_names": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet" + }, + "Sys 2 Furnace DX Cool MultiSpd": { + "availability_manager_list_name": "Sys 2 Furnace DX Cool MultiSpd Availability Managers", + "branch_list_name": "Sys 2 Furnace DX Cool MultiSpd Branches", + "demand_side_inlet_node_names": "Sys 2 Furnace DX Cool MultiSpd Supply Path Inlet", + "demand_side_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Air Loop Inlet", + "supply_side_outlet_node_names": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd": { + "availability_manager_list_name": "Sys 3 Heat Pump AirSource SnglSpd Availability Managers", + "branch_list_name": "Sys 3 Heat Pump AirSource SnglSpd Branches", + "demand_side_inlet_node_names": "Sys 3 Heat Pump AirSource SnglSpd Supply Path Inlet", + "demand_side_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Air Loop Inlet", + "supply_side_outlet_node_names": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd": { + "availability_manager_list_name": "Sys 4 Heat Pump WaterSource SnglSpd Availability Managers", + "branch_list_name": "Sys 4 Heat Pump WaterSource SnglSpd Branches", + "demand_side_inlet_node_names": "Sys 4 Heat Pump WaterSource SnglSpd Supply Path Inlet", + "demand_side_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Air Loop Inlet", + "supply_side_outlet_node_names": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet" + }, + "Sys 5 HW ChW System": { + "availability_manager_list_name": "Sys 5 HW ChW System Availability Managers", + "branch_list_name": "Sys 5 HW ChW System Branches", + "demand_side_inlet_node_names": "Sys 5 HW ChW System Supply Path Inlet", + "demand_side_outlet_node_name": "Sys 5 HW ChW System Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "Sys 5 HW ChW System Air Loop Inlet", + "supply_side_outlet_node_names": "Sys 5 HW ChW System Heating Coil Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "Sys 1 Furnace DX Cool SnglSpd OA Controllers": { + "controller_1_name": "Sys 1 Furnace DX Cool SnglSpd OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Sys 2 Furnace DX Cool MultiSpd OA Controllers": { + "controller_1_name": "Sys 2 Furnace DX Cool MultiSpd OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Sys 3 Heat Pump AirSource SnglSpd OA Controllers": { + "controller_1_name": "Sys 3 Heat Pump AirSource SnglSpd OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Sys 4 Heat Pump WaterSource SnglSpd OA Controllers": { + "controller_1_name": "Sys 4 Heat Pump WaterSource SnglSpd OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + }, + "Sys 5 HW ChW System OA Controllers": { + "controller_1_name": "Sys 5 HW ChW System OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "Sys 1 Furnace DX Cool SnglSpd OA System": { + "availability_manager_list_name": "Sys 1 Furnace DX Cool SnglSpd Availability Managers", + "controller_list_name": "Sys 1 Furnace DX Cool SnglSpd OA Controllers", + "outdoor_air_equipment_list_name": "Sys 1 Furnace DX Cool SnglSpd OA System Equipment" + }, + "Sys 2 Furnace DX Cool MultiSpd OA System": { + "availability_manager_list_name": "Sys 2 Furnace DX Cool MultiSpd Availability Managers", + "controller_list_name": "Sys 2 Furnace DX Cool MultiSpd OA Controllers", + "outdoor_air_equipment_list_name": "Sys 2 Furnace DX Cool MultiSpd OA System Equipment" + }, + "Sys 3 Heat Pump AirSource SnglSpd OA System": { + "availability_manager_list_name": "Sys 3 Heat Pump AirSource SnglSpd Availability Managers", + "controller_list_name": "Sys 3 Heat Pump AirSource SnglSpd OA Controllers", + "outdoor_air_equipment_list_name": "Sys 3 Heat Pump AirSource SnglSpd OA System Equipment" + }, + "Sys 4 Heat Pump WaterSource SnglSpd OA System": { + "availability_manager_list_name": "Sys 4 Heat Pump WaterSource SnglSpd Availability Managers", + "controller_list_name": "Sys 4 Heat Pump WaterSource SnglSpd OA Controllers", + "outdoor_air_equipment_list_name": "Sys 4 Heat Pump WaterSource SnglSpd OA System Equipment" + }, + "Sys 5 HW ChW System OA System": { + "availability_manager_list_name": "Sys 5 HW ChW System Availability Managers", + "controller_list_name": "Sys 5 HW ChW System OA Controllers", + "outdoor_air_equipment_list_name": "Sys 5 HW ChW System OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "Sys 1 Furnace DX Cool SnglSpd OA System Equipment": { + "component_1_name": "Sys 1 Furnace DX Cool SnglSpd OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Sys 2 Furnace DX Cool MultiSpd OA System Equipment": { + "component_1_name": "Sys 2 Furnace DX Cool MultiSpd OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Sys 3 Heat Pump AirSource SnglSpd OA System Equipment": { + "component_1_name": "Sys 3 Heat Pump AirSource SnglSpd OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Sys 4 Heat Pump WaterSource SnglSpd OA System Equipment": { + "component_1_name": "Sys 4 Heat Pump WaterSource SnglSpd OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + }, + "Sys 5 HW ChW System OA System Equipment": { + "component_1_name": "Sys 5 HW ChW System OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "Sys 1 Furnace DX Cool SnglSpd Return Path": { + "components": [ + { + "component_name": "Sys 1 Furnace DX Cool SnglSpd Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Return Air Outlet" + }, + "Sys 2 Furnace DX Cool MultiSpd Return Path": { + "components": [ + { + "component_name": "Sys 2 Furnace DX Cool MultiSpd Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Return Air Outlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd Return Path": { + "components": [ + { + "component_name": "Sys 3 Heat Pump AirSource SnglSpd Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Return Air Outlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Return Path": { + "components": [ + { + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Return Air Outlet" + }, + "Sys 5 HW ChW System Return Path": { + "components": [ + { + "component_name": "Sys 5 HW ChW System Zone Mixer", + "component_object_type": "AirLoopHVAC:ZoneMixer" + } + ], + "return_air_path_outlet_node_name": "Sys 5 HW ChW System Return Air Outlet" + } + }, + "AirLoopHVAC:SupplyPath": { + "Sys 1 Furnace DX Cool SnglSpd Supply Path": { + "components": [ + { + "component_name": "Sys 1 Furnace DX Cool SnglSpd Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Supply Path Inlet" + }, + "Sys 2 Furnace DX Cool MultiSpd Supply Path": { + "components": [ + { + "component_name": "Sys 2 Furnace DX Cool MultiSpd Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Path Inlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd Supply Path": { + "components": [ + { + "component_name": "Sys 3 Heat Pump AirSource SnglSpd Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Path Inlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Supply Path": { + "components": [ + { + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Path Inlet" + }, + "Sys 5 HW ChW System Supply Path": { + "components": [ + { + "component_name": "Sys 5 HW ChW System Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "Sys 5 HW ChW System Supply Path Inlet" + } + }, + "AirLoopHVAC:UnitarySystem": { + "Sys 1 Furnace DX Cool SnglSpd Unitary System": { + "air_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet", + "control_type": "Load", + "controlling_zone_or_thermostat_location": "SPACE1-1", + "cooling_coil_name": "Sys 1 Furnace DX Cool SnglSpd Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate_method": "SupplyAirFlowRate", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "heating_coil_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil", + "heating_coil_object_type": "Coil:Heating:Fuel", + "heating_supply_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate_method": "SupplyAirFlowRate", + "maximum_supply_air_temperature": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate_method": "SupplyAirFlowRate", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Sys 1 Furnace DX Cool SnglSpd Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Sys 2 Furnace DX Cool MultiSpd Unitary System": { + "air_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet", + "control_type": "Load", + "controlling_zone_or_thermostat_location": "SPACE2-1", + "cooling_coil_name": "Sys 2 Furnace DX Cool MultiSpd Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:MultiSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate_method": "SupplyAirFlowRate", + "dehumidification_control_type": "None", + "design_specification_multispeed_object_name": "Sys 2 Furnace DX Cool MultiSpd MultiSpeed Performance", + "design_specification_multispeed_object_type": "UnitarySystemPerformance:Multispeed", + "fan_placement": "DrawThrough", + "heating_coil_name": "Sys 2 Furnace DX Cool MultiSpd Heating Coil", + "heating_coil_object_type": "Coil:Heating:Electric", + "heating_supply_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate_method": "SupplyAirFlowRate", + "maximum_supply_air_temperature": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate_method": "SupplyAirFlowRate", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan", + "supply_fan_object_type": "Fan:VariableVolume" + }, + "Sys 3 Heat Pump AirSource SnglSpd Unitary System": { + "air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet", + "control_type": "Load", + "controlling_zone_or_thermostat_location": "SPACE3-1", + "cooling_coil_name": "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:SingleSpeed", + "cooling_supply_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate_method": "SupplyAirFlowRate", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "heating_coil_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:SingleSpeed", + "heating_supply_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate_method": "SupplyAirFlowRate", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate_method": "SupplyAirFlowRate", + "supplemental_heating_coil_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Unitary System": { + "air_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet", + "control_type": "Load", + "controlling_zone_or_thermostat_location": "SPACE4-1", + "cooling_coil_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate_method": "SupplyAirFlowRate", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "heating_coil_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_supply_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate_method": "SupplyAirFlowRate", + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 21, + "maximum_supply_air_temperature": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate_method": "SupplyAirFlowRate", + "supplemental_heating_coil_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + }, + "Sys 5 HW ChW System Unitary System": { + "air_inlet_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "air_outlet_node_name": "Sys 5 HW ChW System Heating Coil Outlet", + "control_type": "Load", + "controlling_zone_or_thermostat_location": "SPACE5-1", + "cooling_coil_name": "Sys 5 HW ChW System Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:Water", + "cooling_supply_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate_method": "SupplyAirFlowRate", + "dehumidification_control_type": "None", + "fan_placement": "BlowThrough", + "heating_coil_name": "Sys 5 HW ChW System Heating Coil", + "heating_coil_object_type": "Coil:Heating:Water", + "heating_supply_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate_method": "SupplyAirFlowRate", + "maximum_supply_air_temperature": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate_method": "SupplyAirFlowRate", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_name": "Sys 5 HW ChW System Supply Fan", + "supply_fan_object_type": "Fan:OnOff" + } + }, + "AirLoopHVAC:ZoneMixer": { + "Sys 1 Furnace DX Cool SnglSpd Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + } + ], + "outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Return Air Outlet" + }, + "Sys 2 Furnace DX Cool MultiSpd Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE2-1 Return Outlet" + } + ], + "outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Return Air Outlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE3-1 Return Outlet" + } + ], + "outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Return Air Outlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Return Air Outlet" + }, + "Sys 5 HW ChW System Zone Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "Sys 5 HW ChW System Return Air Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "Sys 1 Furnace DX Cool SnglSpd Zone Splitter": { + "inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + } + ] + }, + "Sys 2 Furnace DX Cool MultiSpd Zone Splitter": { + "inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + } + ] + }, + "Sys 3 Heat Pump AirSource SnglSpd Zone Splitter": { + "inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd Zone Splitter": { + "inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + }, + "Sys 5 HW ChW System Zone Splitter": { + "inlet_node_name": "Sys 5 HW ChW System Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:ConstantVolume:NoReheat": { + "SPACE1-1 CV": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE2-1 CV": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE3-1 CV": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE4-1 CV": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + }, + "SPACE5-1 CV": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "maximum_air_flow_rate": "Autosize" + } + }, + "AvailabilityManager:NightCycle": { + "Sys 1 Furnace DX Cool SnglSpd Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "HVACTemplate-Always1", + "thermostat_tolerance": 0.2 + }, + "Sys 2 Furnace DX Cool MultiSpd Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "HVACTemplate-Always1", + "thermostat_tolerance": 0.2 + }, + "Sys 3 Heat Pump AirSource SnglSpd Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "HVACTemplate-Always1", + "thermostat_tolerance": 0.2 + }, + "Sys 4 Heat Pump WaterSource SnglSpd Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "HVACTemplate-Always1", + "thermostat_tolerance": 0.2 + }, + "Sys 5 HW ChW System Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "StayOff", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "HVACTemplate-Always1", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManager:Scheduled": { + "Sys 1 Furnace DX Cool SnglSpd Availability": { + "schedule_name": "HVACTemplate-Always1" + }, + "Sys 2 Furnace DX Cool MultiSpd Availability": { + "schedule_name": "HVACTemplate-Always1" + }, + "Sys 3 Heat Pump AirSource SnglSpd Availability": { + "schedule_name": "HVACTemplate-Always1" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Availability": { + "schedule_name": "HVACTemplate-Always1" + }, + "Sys 5 HW ChW System Availability": { + "schedule_name": "HVACTemplate-Always1" + } + }, + "AvailabilityManagerAssignmentList": { + "ChW Cooling Loop Availability Managers": {}, + "HW Heating Loop Availability Managers": {}, + "Heat Pump Water Loop Availability Managers": {}, + "Sys 1 Furnace DX Cool SnglSpd Availability Managers": { + "managers": [ + { + "availability_manager_name": "Sys 1 Furnace DX Cool SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "Sys 1 Furnace DX Cool SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Sys 2 Furnace DX Cool MultiSpd Availability Managers": { + "managers": [ + { + "availability_manager_name": "Sys 2 Furnace DX Cool MultiSpd Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "Sys 2 Furnace DX Cool MultiSpd Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Sys 3 Heat Pump AirSource SnglSpd Availability Managers": { + "managers": [ + { + "availability_manager_name": "Sys 3 Heat Pump AirSource SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "Sys 3 Heat Pump AirSource SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd Availability Managers": { + "managers": [ + { + "availability_manager_name": "Sys 4 Heat Pump WaterSource SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "Sys 4 Heat Pump WaterSource SnglSpd Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + }, + "Sys 5 HW ChW System Availability Managers": { + "managers": [ + { + "availability_manager_name": "Sys 5 HW ChW System Availability", + "availability_manager_object_type": "AvailabilityManager:Scheduled" + }, + { + "availability_manager_name": "Sys 5 HW ChW System Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Boiler:HotWater": { + "Heat Pump Loop Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Heat Pump Loop Boiler HW Inlet", + "boiler_water_outlet_node_name": "Heat Pump Loop Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Heat Pump Loop Boiler Efficiency Curve", + "optimum_part_load_ratio": 1, + "sizing_factor": 1, + "water_outlet_upper_temperature_limit": 100 + }, + "Hot Water Loop Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Hot Water Loop Boiler HW Inlet", + "boiler_water_outlet_node_name": "Hot Water Loop Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "EnteringBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Hot Water Loop Boiler Condensing Boiler Efficiency Curve", + "optimum_part_load_ratio": 1, + "sizing_factor": 1, + "water_outlet_upper_temperature_limit": 100 + } + }, + "Branch": { + "ChW Cooling Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Demand Bypass Inlet", + "component_name": "ChW Cooling Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "ChW Cooling Loop Demand Bypass Outlet" + } + ] + }, + "ChW Cooling Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Demand Inlet", + "component_name": "ChW Cooling Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "ChW Cooling Loop Demand Inlet Pipe Outlet" + } + ] + }, + "ChW Cooling Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Demand Outlet Pipe Inlet", + "component_name": "ChW Cooling Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "ChW Cooling Loop Demand Outlet" + } + ] + }, + "ChW Cooling Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Supply Bypass Inlet", + "component_name": "ChW Cooling Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "ChW Cooling Loop Supply Bypass Outlet" + } + ] + }, + "ChW Cooling Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Supply Inlet", + "component_name": "ChW Cooling Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "ChW Cooling Loop Supply Inlet Pump Outlet" + } + ] + }, + "ChW Cooling Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Cooling Loop Supply Outlet Pipe Inlet", + "component_name": "ChW Cooling Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "ChW Cooling Loop Supply Outlet" + } + ] + }, + "ChW Loop Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "ChW Loop Chiller ChW Inlet", + "component_name": "ChW Loop Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "ChW Loop Chiller ChW Outlet" + } + ] + }, + "HW Heating Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Demand Bypass Inlet", + "component_name": "HW Heating Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "HW Heating Loop Demand Bypass Outlet" + } + ] + }, + "HW Heating Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Demand Inlet", + "component_name": "HW Heating Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "HW Heating Loop Demand Inlet Pipe Outlet" + } + ] + }, + "HW Heating Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Demand Outlet Pipe Inlet", + "component_name": "HW Heating Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "HW Heating Loop Demand Outlet" + } + ] + }, + "HW Heating Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Supply Bypass Inlet", + "component_name": "HW Heating Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "HW Heating Loop Supply Bypass Outlet" + } + ] + }, + "HW Heating Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Supply Inlet", + "component_name": "HW Heating Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "HW Heating Loop Supply Inlet Pump Outlet" + } + ] + }, + "HW Heating Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "HW Heating Loop Supply Outlet Pipe Inlet", + "component_name": "HW Heating Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "HW Heating Loop Supply Outlet" + } + ] + }, + "Heat Pump Loop Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Loop Boiler HW Inlet", + "component_name": "Heat Pump Loop Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Heat Pump Loop Boiler HW Outlet" + } + ] + }, + "Heat Pump Loop Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Loop Tower Inlet", + "component_name": "Heat Pump Loop Tower", + "component_object_type": "CoolingTower:TwoSpeed", + "component_outlet_node_name": "Heat Pump Loop Tower Outlet" + } + ] + }, + "Heat Pump Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Demand Bypass Inlet", + "component_name": "Heat Pump Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Heat Pump Water Loop Demand Bypass Outlet" + } + ] + }, + "Heat Pump Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Demand Inlet", + "component_name": "Heat Pump Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Heat Pump Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Heat Pump Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Demand Outlet Pipe Inlet", + "component_name": "Heat Pump Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Heat Pump Water Loop Demand Outlet" + } + ] + }, + "Heat Pump Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Supply Bypass Inlet", + "component_name": "Heat Pump Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Heat Pump Water Loop Supply Bypass Outlet" + } + ] + }, + "Heat Pump Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Supply Inlet", + "component_name": "Heat Pump Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Heat Pump Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Heat Pump Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Heat Pump Water Loop Supply Outlet Pipe Inlet", + "component_name": "Heat Pump Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Heat Pump Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Boiler HW Inlet", + "component_name": "Hot Water Loop Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Hot Water Loop Boiler HW Outlet" + } + ] + }, + "Sys 1 Furnace DX Cool SnglSpd Main Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Air Loop Inlet", + "component_name": "Sys 1 Furnace DX Cool SnglSpd OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "component_name": "Sys 1 Furnace DX Cool SnglSpd Unitary System", + "component_object_type": "AirLoopHVAC:UnitarySystem", + "component_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet" + } + ] + }, + "Sys 2 Furnace DX Cool MultiSpd Main Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Air Loop Inlet", + "component_name": "Sys 2 Furnace DX Cool MultiSpd OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet", + "component_name": "Sys 2 Furnace DX Cool MultiSpd Unitary System", + "component_object_type": "AirLoopHVAC:UnitarySystem", + "component_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet" + } + ] + }, + "Sys 3 Heat Pump AirSource SnglSpd Main Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Air Loop Inlet", + "component_name": "Sys 3 Heat Pump AirSource SnglSpd OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "component_name": "Sys 3 Heat Pump AirSource SnglSpd Unitary System", + "component_object_type": "AirLoopHVAC:UnitarySystem", + "component_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd Main Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Air Loop Inlet", + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd Unitary System", + "component_object_type": "AirLoopHVAC:UnitarySystem", + "component_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Water Inlet", + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Water Outlet" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Water Inlet", + "component_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Water Outlet" + } + ] + }, + "Sys 5 HW ChW System Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 5 HW ChW System Cooling Coil Chw Inlet", + "component_name": "Sys 5 HW ChW System Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "Sys 5 HW ChW System Cooling Coil Chw Outlet" + } + ] + }, + "Sys 5 HW ChW System Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 5 HW ChW System Heating Coil Hw Inlet", + "component_name": "Sys 5 HW ChW System Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "Sys 5 HW ChW System Heating Coil Hw Outlet" + } + ] + }, + "Sys 5 HW ChW System Main Branch": { + "components": [ + { + "component_inlet_node_name": "Sys 5 HW ChW System Air Loop Inlet", + "component_name": "Sys 5 HW ChW System OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "Sys 5 HW ChW System Mixed Air Outlet" + }, + { + "component_inlet_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "component_name": "Sys 5 HW ChW System Unitary System", + "component_object_type": "AirLoopHVAC:UnitarySystem", + "component_outlet_node_name": "Sys 5 HW ChW System Heating Coil Outlet" + } + ] + } + }, + "BranchList": { + "ChW Cooling Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "ChW Cooling Loop Demand Inlet Branch" + }, + { + "branch_name": "Sys 5 HW ChW System Cooling Coil Chw Branch" + }, + { + "branch_name": "ChW Cooling Loop Demand Bypass Branch" + }, + { + "branch_name": "ChW Cooling Loop Demand Outlet Branch" + } + ] + }, + "ChW Cooling Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "ChW Cooling Loop Supply Inlet Branch" + }, + { + "branch_name": "ChW Loop Chiller ChW Branch" + }, + { + "branch_name": "ChW Cooling Loop Supply Bypass Branch" + }, + { + "branch_name": "ChW Cooling Loop Supply Outlet Branch" + } + ] + }, + "HW Heating Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "HW Heating Loop Demand Inlet Branch" + }, + { + "branch_name": "Sys 5 HW ChW System Heating Coil Hw Branch" + }, + { + "branch_name": "HW Heating Loop Demand Bypass Branch" + }, + { + "branch_name": "HW Heating Loop Demand Outlet Branch" + } + ] + }, + "HW Heating Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "HW Heating Loop Supply Inlet Branch" + }, + { + "branch_name": "Hot Water Loop Boiler Branch" + }, + { + "branch_name": "HW Heating Loop Supply Bypass Branch" + }, + { + "branch_name": "HW Heating Loop Supply Outlet Branch" + } + ] + }, + "Heat Pump Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Heat Pump Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Heating Condenser Branch" + }, + { + "branch_name": "Heat Pump Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Heat Pump Water Loop Demand Outlet Branch" + } + ] + }, + "Heat Pump Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Heat Pump Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Heat Pump Loop Tower Branch" + }, + { + "branch_name": "Heat Pump Loop Boiler Branch" + }, + { + "branch_name": "Heat Pump Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Heat Pump Water Loop Supply Outlet Branch" + } + ] + }, + "Sys 1 Furnace DX Cool SnglSpd Branches": { + "branches": [ + { + "branch_name": "Sys 1 Furnace DX Cool SnglSpd Main Branch" + } + ] + }, + "Sys 2 Furnace DX Cool MultiSpd Branches": { + "branches": [ + { + "branch_name": "Sys 2 Furnace DX Cool MultiSpd Main Branch" + } + ] + }, + "Sys 3 Heat Pump AirSource SnglSpd Branches": { + "branches": [ + { + "branch_name": "Sys 3 Heat Pump AirSource SnglSpd Main Branch" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd Branches": { + "branches": [ + { + "branch_name": "Sys 4 Heat Pump WaterSource SnglSpd Main Branch" + } + ] + }, + "Sys 5 HW ChW System Branches": { + "branches": [ + { + "branch_name": "Sys 5 HW ChW System Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "ChW Loop Chiller": { + "chilled_water_inlet_node_name": "ChW Loop Chiller ChW Inlet", + "chilled_water_outlet_node_name": "ChW Loop Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_fan_power_ratio": 0.035, + "condenser_inlet_node_name": "ChW Loop Chiller Cnd Inlet", + "condenser_outlet_node_name": "ChW Loop Chiller Cnd Outlet", + "condenser_type": "AirCooled", + "cooling_capacity_function_of_temperature_curve_name": "ChW Loop Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "ChW Loop Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "ChW Loop Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "maximum_part_load_ratio": 1, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3, + "sizing_factor": 1 + } + }, + "Coil:Cooling:DX:MultiSpeed": { + "Sys 2 Furnace DX Cool MultiSpd Cooling Coil": { + "air_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Cooling Coil Condenser Inlet", + "fuel_type": "Electricity", + "number_of_speeds": 3, + "speed_1_energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FF", + "speed_1_energy_input_ratio_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FT", + "speed_1_gross_rated_cooling_cop": 3, + "speed_1_gross_rated_sensible_heat_ratio": "Autosize", + "speed_1_gross_rated_total_cooling_capacity": "Autosize", + "speed_1_part_load_fraction_correlation_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil PLF", + "speed_1_rated_air_flow_rate": "Autosize", + "speed_1_total_cooling_capacity_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FF", + "speed_1_total_cooling_capacity_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FT", + "speed_1_waste_heat_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil WH-FT", + "speed_2_energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FF", + "speed_2_energy_input_ratio_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FT", + "speed_2_gross_rated_cooling_cop": 3, + "speed_2_gross_rated_sensible_heat_ratio": "Autosize", + "speed_2_gross_rated_total_cooling_capacity": "Autosize", + "speed_2_part_load_fraction_correlation_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil PLF", + "speed_2_rated_air_flow_rate": "Autosize", + "speed_2_total_cooling_capacity_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FF", + "speed_2_total_cooling_capacity_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FT", + "speed_2_waste_heat_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil WH-FT", + "speed_3_energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FF", + "speed_3_energy_input_ratio_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FT", + "speed_3_gross_rated_cooling_cop": 3, + "speed_3_gross_rated_sensible_heat_ratio": "Autosize", + "speed_3_gross_rated_total_cooling_capacity": "Autosize", + "speed_3_part_load_fraction_correlation_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil PLF", + "speed_3_rated_air_flow_rate": "Autosize", + "speed_3_total_cooling_capacity_function_of_flow_fraction_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FF", + "speed_3_total_cooling_capacity_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FT", + "speed_3_waste_heat_function_of_temperature_curve_name": "Sys 2 Furnace DX Cool MultiSpd Cool Coil WH-FT" + } + }, + "Coil:Cooling:DX:SingleSpeed": { + "Sys 1 Furnace DX Cool SnglSpd Cooling Coil": { + "air_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Supply Fan Outlet", + "air_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil Cap-FT" + }, + "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil": { + "air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Fan Outlet", + "air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil Outlet", + "condenser_air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil Condenser Inlet", + "crankcase_heater_capacity": 0, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil EIR-FT", + "evaporative_condenser_effectiveness": 0, + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "maximum_cycling_rate": 0, + "part_load_fraction_correlation_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil PLF", + "rated_air_flow_rate": "Autosize", + "total_cooling_capacity_function_of_flow_fraction_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil Cap-FF", + "total_cooling_capacity_function_of_temperature_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil Cap-FT" + } + }, + "Coil:Cooling:Water": { + "Sys 5 HW ChW System Cooling Coil": { + "air_inlet_node_name": "Sys 5 HW ChW System Supply Fan Outlet", + "air_outlet_node_name": "Sys 5 HW ChW System Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "Sys 5 HW ChW System Cooling Coil Chw Inlet", + "water_outlet_node_name": "Sys 5 HW ChW System Cooling Coil Chw Outlet" + } + }, + "Coil:Cooling:WaterToAirHeatPump:EquationFit": { + "Sys 4 Heat Pump WaterSource SnglSpd Cooling Coil": { + "air_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Fan Outlet", + "air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgTotCapCurve", + "water_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Water Inlet", + "water_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Water Outlet" + } + }, + "Coil:Heating:DX:SingleSpeed": { + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil": { + "air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil Outlet", + "air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Outlet", + "defrost_control": "Timed", + "defrost_energy_input_ratio_function_of_temperature_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil DefrEIR-FT", + "defrost_strategy": "ReverseCycle", + "defrost_time_period_fraction": 0.058333, + "energy_input_ratio_function_of_flow_fraction_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil EIR-FF", + "energy_input_ratio_function_of_temperature_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil EIR-FT", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_function_of_flow_fraction_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Cap-FF", + "heating_capacity_function_of_temperature_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Cap-FT", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater_operation": 0, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_outdoor_dry_bulb_temperature_for_compressor_operation": -8, + "part_load_fraction_correlation_curve_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil PLF", + "rated_air_flow_rate": "Autosize", + "resistive_defrost_heater_capacity": "Autosize" + } + }, + "Coil:Heating:Electric": { + "Sys 2 Furnace DX Cool MultiSpd Heating Coil": { + "air_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Cooling Coil Outlet", + "air_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil": { + "air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Outlet", + "air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil": { + "air_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Coil Outlet", + "air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:Fuel": { + "Sys 1 Furnace DX Cool SnglSpd Heating Coil": { + "air_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Cooling Coil Outlet", + "air_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet", + "burner_efficiency": 0.8, + "fuel_type": "NaturalGas", + "nominal_capacity": "Autosize", + "part_load_fraction_correlation_curve_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil PLF-FPLR" + } + }, + "Coil:Heating:Water": { + "Sys 5 HW ChW System Heating Coil": { + "air_inlet_node_name": "Sys 5 HW ChW System Cooling Coil Outlet", + "air_outlet_node_name": "Sys 5 HW ChW System Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_capacity": "Autosize", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "Sys 5 HW ChW System Heating Coil Hw Inlet", + "water_outlet_node_name": "Sys 5 HW ChW System Heating Coil Hw Outlet" + } + }, + "Coil:Heating:WaterToAirHeatPump:EquationFit": { + "Sys 4 Heat Pump WaterSource SnglSpd Heating Coil": { + "air_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Cooling Coil Outlet", + "air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 2.75, + "heating_capacity_curve_name": "Sys 4 Heat Pump WaterSource SnglSpd WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "Sys 4 Heat Pump WaterSource SnglSpd WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Water Inlet", + "water_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Heating Water Outlet" + } + }, + "Connector:Mixer": { + "ChW Cooling Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "ChW Cooling Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Sys 5 HW ChW System Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "ChW Cooling Loop Demand Outlet Branch" + }, + "ChW Cooling Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "ChW Loop Chiller ChW Branch" + }, + { + "inlet_branch_name": "ChW Cooling Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "ChW Cooling Loop Supply Outlet Branch" + }, + "HW Heating Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "HW Heating Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Sys 5 HW ChW System Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "HW Heating Loop Demand Outlet Branch" + }, + "HW Heating Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Boiler Branch" + }, + { + "inlet_branch_name": "HW Heating Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "HW Heating Loop Supply Outlet Branch" + }, + "Heat Pump Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Heat Pump Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Cooling Condenser Branch" + } + ], + "outlet_branch_name": "Heat Pump Water Loop Demand Outlet Branch" + }, + "Heat Pump Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Heat Pump Loop Boiler Branch" + }, + { + "inlet_branch_name": "Heat Pump Loop Tower Branch" + }, + { + "inlet_branch_name": "Heat Pump Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Heat Pump Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "ChW Cooling Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "ChW Cooling Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Sys 5 HW ChW System Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "ChW Cooling Loop Demand Inlet Branch" + }, + "ChW Cooling Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "ChW Loop Chiller ChW Branch" + }, + { + "outlet_branch_name": "ChW Cooling Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "ChW Cooling Loop Supply Inlet Branch" + }, + "HW Heating Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "HW Heating Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Sys 5 HW ChW System Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "HW Heating Loop Demand Inlet Branch" + }, + "HW Heating Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Boiler Branch" + }, + { + "outlet_branch_name": "HW Heating Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "HW Heating Loop Supply Inlet Branch" + }, + "Heat Pump Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Heat Pump Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "Sys 4 Heat Pump WaterSource SnglSpd WaterSource Cooling Condenser Branch" + } + ], + "inlet_branch_name": "Heat Pump Water Loop Demand Inlet Branch" + }, + "Heat Pump Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Heat Pump Loop Boiler Branch" + }, + { + "outlet_branch_name": "Heat Pump Loop Tower Branch" + }, + { + "outlet_branch_name": "Heat Pump Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Heat Pump Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "ChW Cooling Loop Demand Side Connectors": { + "connector_1_name": "ChW Cooling Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "ChW Cooling Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "ChW Cooling Loop Supply Side Connectors": { + "connector_1_name": "ChW Cooling Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "ChW Cooling Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "HW Heating Loop Demand Side Connectors": { + "connector_1_name": "HW Heating Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "HW Heating Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "HW Heating Loop Supply Side Connectors": { + "connector_1_name": "HW Heating Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "HW Heating Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Heat Pump Water Loop Demand Side Connectors": { + "connector_1_name": "Heat Pump Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Heat Pump Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Heat Pump Water Loop Supply Side Connectors": { + "connector_1_name": "Heat Pump Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Heat Pump Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "Sys 1 Furnace DX Cool SnglSpd OA Controller": { + "actuator_node_name": "Sys 1 Furnace DX Cool SnglSpd Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "lockout_type": "LockoutWithCompressor", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "relief_air_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Relief Air Outlet", + "return_air_node_name": "Sys 1 Furnace DX Cool SnglSpd Air Loop Inlet" + }, + "Sys 2 Furnace DX Cool MultiSpd OA Controller": { + "actuator_node_name": "Sys 2 Furnace DX Cool MultiSpd Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "lockout_type": "LockoutWithCompressor", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet", + "relief_air_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Relief Air Outlet", + "return_air_node_name": "Sys 2 Furnace DX Cool MultiSpd Air Loop Inlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd OA Controller": { + "actuator_node_name": "Sys 3 Heat Pump AirSource SnglSpd Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "lockout_type": "LockoutWithCompressor", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "relief_air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Relief Air Outlet", + "return_air_node_name": "Sys 3 Heat Pump AirSource SnglSpd Air Loop Inlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd OA Controller": { + "actuator_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "lockout_type": "LockoutWithCompressor", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "relief_air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Relief Air Outlet", + "return_air_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Air Loop Inlet" + }, + "Sys 5 HW ChW System OA Controller": { + "actuator_node_name": "Sys 5 HW ChW System Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "relief_air_outlet_node_name": "Sys 5 HW ChW System Relief Air Outlet", + "return_air_node_name": "Sys 5 HW ChW System Air Loop Inlet" + } + }, + "CoolingTower:TwoSpeed": { + "Heat Pump Loop Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_nominal_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "high_fan_speed_air_flow_rate": "Autosize", + "high_fan_speed_fan_power": "Autosize", + "high_fan_speed_u_factor_times_area_value": "Autosize", + "low_fan_speed_air_flow_rate": "Autocalculate", + "low_fan_speed_fan_power": "Autocalculate", + "low_fan_speed_u_factor_times_area_value": "Autocalculate", + "low_speed_nominal_capacity": "Autocalculate", + "outdoor_air_inlet_node_name": "Heat Pump Loop Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "sizing_factor": 1, + "water_inlet_node_name": "Heat Pump Loop Tower Inlet", + "water_outlet_node_name": "Heat Pump Loop Tower Outlet" + } + }, + "Curve:Biquadratic": { + "ChW Loop Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "ChW Loop Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Hot Water Loop Boiler Condensing Boiler Efficiency Curve": { + "coefficient1_constant": 1.124970374, + "coefficient2_x": 0.014963852, + "coefficient3_x_2": -0.02599835, + "coefficient4_y": 0.0, + "coefficient5_y_2": -1.40464e-06, + "coefficient6_x_y": -0.00153624, + "maximum_value_of_x": 1.0, + "maximum_value_of_y": 85.0, + "minimum_value_of_x": 0.1, + "minimum_value_of_y": 30.0 + }, + "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FT": { + "coefficient1_constant": 0.476428, + "coefficient2_x": 0.0401147, + "coefficient3_x_2": 0.000226411, + "coefficient4_y": -0.000827136, + "coefficient5_y_2": -7.3224e-06, + "coefficient6_x_y": -0.000446278, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_curve_output": 5.0, + "maximum_value_of_x": 50.0, + "maximum_value_of_y": 50.0, + "minimum_curve_output": 0.0, + "minimum_value_of_x": 0.0, + "minimum_value_of_y": 0.0, + "output_unit_type": "Dimensionless" + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FT": { + "coefficient1_constant": 0.632475, + "coefficient2_x": -0.0121321, + "coefficient3_x_2": 0.000507773, + "coefficient4_y": 0.0155377, + "coefficient5_y_2": 0.00027284, + "coefficient6_x_y": -0.000679201, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_curve_output": 5.0, + "maximum_value_of_x": 50.0, + "maximum_value_of_y": 50.0, + "minimum_curve_output": 0.0, + "minimum_value_of_x": 0.0, + "minimum_value_of_y": 0.0, + "output_unit_type": "Dimensionless" + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil WH-FT": { + "coefficient1_constant": 1.0, + "coefficient2_x": 0.0, + "coefficient3_x_2": 0.0, + "coefficient4_y": 0.0, + "coefficient5_y_2": 0.0, + "coefficient6_x_y": 0.0, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0, + "output_unit_type": "Dimensionless" + }, + "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil Cap-FT": { + "coefficient1_constant": 0.942587793, + "coefficient2_x": 0.009543347, + "coefficient3_x_2": 0.00068377, + "coefficient4_y": -0.011042676, + "coefficient5_y_2": 5.249e-06, + "coefficient6_x_y": -9.72e-06, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil EIR-FT": { + "coefficient1_constant": 0.342414409, + "coefficient2_x": 0.034885008, + "coefficient3_x_2": -0.0006237, + "coefficient4_y": 0.004977216, + "coefficient5_y_2": 0.000437951, + "coefficient6_x_y": -0.000728028, + "maximum_value_of_x": 23.88889, + "maximum_value_of_y": 46.11111, + "minimum_value_of_x": 12.77778, + "minimum_value_of_y": 18.0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil DefrEIR-FT": { + "coefficient1_constant": 1, + "coefficient2_x": 0, + "coefficient3_x_2": 0, + "coefficient4_y": 0, + "coefficient5_y_2": 0, + "coefficient6_x_y": 0, + "maximum_value_of_x": 50, + "maximum_value_of_y": 50, + "minimum_value_of_x": 0, + "minimum_value_of_y": 0 + } + }, + "Curve:Cubic": { + "Sys 1 Furnace DX Cool SnglSpd Heating Coil PLF-FPLR": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "coefficient4_x_3": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil Cap-FF": { + "coefficient1_constant": 0.47278589, + "coefficient2_x": 1.2433415, + "coefficient3_x_2": -1.0387055, + "coefficient4_x_3": 0.32257813, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil EIR-FF": { + "coefficient1_constant": 0.47278589, + "coefficient2_x": 1.2433415, + "coefficient3_x_2": -1.0387055, + "coefficient4_x_3": 0.32257813, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Cap-FF": { + "coefficient1_constant": 0.84, + "coefficient2_x": 0.16, + "coefficient3_x_2": 0.0, + "coefficient4_x_3": 0.0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil Cap-FT": { + "coefficient1_constant": 0.758746, + "coefficient2_x": 0.027626, + "coefficient3_x_2": 0.000148716, + "coefficient4_x_3": 3.4992e-06, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil EIR-FT": { + "coefficient1_constant": 1.19248, + "coefficient2_x": -0.0300438, + "coefficient3_x_2": 0.00103745, + "coefficient4_x_3": -2.3328e-05, + "maximum_value_of_x": 20.0, + "minimum_value_of_x": -20.0 + } + }, + "Curve:QuadLinear": { + "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "Sys 4 Heat Pump WaterSource SnglSpd WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "Sys 4 Heat Pump WaterSource SnglSpd WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + } + }, + "Curve:Quadratic": { + "ChW Loop Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Heat Pump Loop Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 1 Furnace DX Cool SnglSpd Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Sys 2 Furnace DX Cool MultiSpd Cool Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil EIR-FF": { + "coefficient1_constant": 1.1552, + "coefficient2_x": -0.1808, + "coefficient3_x_2": 0.0256, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "Sys 3 Heat Pump AirSource SnglSpd Cool DX Coil PLF": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil EIR-FF": { + "coefficient1_constant": 1.3824, + "coefficient2_x": -0.4336, + "coefficient3_x_2": 0.0512, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Heating Coil PLF": { + "coefficient1_constant": 0.75, + "coefficient2_x": 0.25, + "coefficient3_x_2": 0.0, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "Curve:QuintLinear": { + "Sys 4 Heat Pump WaterSource SnglSpd WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "Sys 1 Furnace DX Cool SnglSpd Supply Fan": { + "air_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Supply Fan Outlet", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Sys 3 Heat Pump AirSource SnglSpd Supply Fan": { + "air_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Fan Outlet", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Sys 4 Heat Pump WaterSource SnglSpd Supply Fan": { + "air_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "air_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Fan Outlet", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + }, + "Sys 5 HW ChW System Supply Fan": { + "air_inlet_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "air_outlet_node_name": "Sys 5 HW ChW System Supply Fan Outlet", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "Fan:VariableVolume": { + "Sys 2 Furnace DX Cool MultiSpd Supply Fan": { + "air_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Heating Coil Outlet", + "air_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet", + "fan_power_coefficient_1": 0.0015302446, + "fan_power_coefficient_2": 0.0052080574, + "fan_power_coefficient_3": 1.1086242, + "fan_power_coefficient_4": -0.11635563, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.0, + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "ChW Cooling Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "ChW Loop Chiller ChW Outlet" + }, + { + "node_name": "ChW Cooling Loop Supply Outlet" + } + ] + }, + "HW Heating Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Hot Water Loop Boiler HW Outlet" + }, + { + "node_name": "HW Heating Loop Supply Outlet" + } + ] + }, + "Heat Pump Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Heat Pump Loop Tower Outlet" + }, + { + "node_name": "Heat Pump Loop Boiler HW Outlet" + }, + { + "node_name": "Heat Pump Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "Sys 1 Furnace DX Cool SnglSpd OA Mixing Box": { + "mixed_air_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "outdoor_air_stream_node_name": "Sys 1 Furnace DX Cool SnglSpd Outdoor Air Inlet", + "relief_air_stream_node_name": "Sys 1 Furnace DX Cool SnglSpd Relief Air Outlet", + "return_air_stream_node_name": "Sys 1 Furnace DX Cool SnglSpd Air Loop Inlet" + }, + "Sys 2 Furnace DX Cool MultiSpd OA Mixing Box": { + "mixed_air_node_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet", + "outdoor_air_stream_node_name": "Sys 2 Furnace DX Cool MultiSpd Outdoor Air Inlet", + "relief_air_stream_node_name": "Sys 2 Furnace DX Cool MultiSpd Relief Air Outlet", + "return_air_stream_node_name": "Sys 2 Furnace DX Cool MultiSpd Air Loop Inlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd OA Mixing Box": { + "mixed_air_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "outdoor_air_stream_node_name": "Sys 3 Heat Pump AirSource SnglSpd Outdoor Air Inlet", + "relief_air_stream_node_name": "Sys 3 Heat Pump AirSource SnglSpd Relief Air Outlet", + "return_air_stream_node_name": "Sys 3 Heat Pump AirSource SnglSpd Air Loop Inlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd OA Mixing Box": { + "mixed_air_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "outdoor_air_stream_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Outdoor Air Inlet", + "relief_air_stream_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Relief Air Outlet", + "return_air_stream_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Air Loop Inlet" + }, + "Sys 5 HW ChW System OA Mixing Box": { + "mixed_air_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "outdoor_air_stream_node_name": "Sys 5 HW ChW System Outdoor Air Inlet", + "relief_air_stream_node_name": "Sys 5 HW ChW System Relief Air Outlet", + "return_air_stream_node_name": "Sys 5 HW ChW System Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Heat Pump Loop Tower Outdoor Air Inlet": {}, + "Sys 1 Furnace DX Cool SnglSpd Cooling Coil Condenser Inlet": {}, + "Sys 2 Furnace DX Cool MultiSpd Cooling Coil Condenser Inlet": {}, + "Sys 3 Heat Pump AirSource SnglSpd Cooling Coil Condenser Inlet": {} + }, + "OutdoorAir:NodeList": { + "ChW Loop Chiller Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "ChW Loop Chiller Cnd Inlet" + } + ] + }, + "Sys 1 Furnace DX Cool SnglSpd Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Sys 1 Furnace DX Cool SnglSpd Outdoor Air Inlet" + } + ] + }, + "Sys 2 Furnace DX Cool MultiSpd Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Sys 2 Furnace DX Cool MultiSpd Outdoor Air Inlet" + } + ] + }, + "Sys 3 Heat Pump AirSource SnglSpd Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Sys 3 Heat Pump AirSource SnglSpd Outdoor Air Inlet" + } + ] + }, + "Sys 4 Heat Pump WaterSource SnglSpd Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Sys 4 Heat Pump WaterSource SnglSpd Outdoor Air Inlet" + } + ] + }, + "Sys 5 HW ChW System Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "Sys 5 HW ChW System Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": { + "Output:PreprocessorMessage 1": { + "error_severity": "Warning", + "message_line_1": "Warning: In HVACTemplate:Plant:MixedWaterLoop an HVACTemplate:Plant:HotWaterLoop is also present. All boilers", + "message_line_2": "with blank Template Loop Type field will be connected to", + "message_line_3": "the Hot Water Loop.", + "preprocessor_name": "pyExpandObjects" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "ChW Cooling Loop Demand Bypass Pipe": { + "inlet_node_name": "ChW Cooling Loop Demand Bypass Inlet", + "outlet_node_name": "ChW Cooling Loop Demand Bypass Outlet" + }, + "ChW Cooling Loop Demand Inlet Pipe": { + "inlet_node_name": "ChW Cooling Loop Demand Inlet", + "outlet_node_name": "ChW Cooling Loop Demand Inlet Pipe Outlet" + }, + "ChW Cooling Loop Demand Outlet Pipe": { + "inlet_node_name": "ChW Cooling Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "ChW Cooling Loop Demand Outlet" + }, + "ChW Cooling Loop Supply Bypass Pipe": { + "inlet_node_name": "ChW Cooling Loop Supply Bypass Inlet", + "outlet_node_name": "ChW Cooling Loop Supply Bypass Outlet" + }, + "ChW Cooling Loop Supply Outlet Pipe": { + "inlet_node_name": "ChW Cooling Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "ChW Cooling Loop Supply Outlet" + }, + "HW Heating Loop Demand Bypass Pipe": { + "inlet_node_name": "HW Heating Loop Demand Bypass Inlet", + "outlet_node_name": "HW Heating Loop Demand Bypass Outlet" + }, + "HW Heating Loop Demand Inlet Pipe": { + "inlet_node_name": "HW Heating Loop Demand Inlet", + "outlet_node_name": "HW Heating Loop Demand Inlet Pipe Outlet" + }, + "HW Heating Loop Demand Outlet Pipe": { + "inlet_node_name": "HW Heating Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "HW Heating Loop Demand Outlet" + }, + "HW Heating Loop Supply Bypass Pipe": { + "inlet_node_name": "HW Heating Loop Supply Bypass Inlet", + "outlet_node_name": "HW Heating Loop Supply Bypass Outlet" + }, + "HW Heating Loop Supply Outlet Pipe": { + "inlet_node_name": "HW Heating Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "HW Heating Loop Supply Outlet" + }, + "Heat Pump Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Heat Pump Water Loop Demand Bypass Inlet", + "outlet_node_name": "Heat Pump Water Loop Demand Bypass Outlet" + }, + "Heat Pump Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Heat Pump Water Loop Demand Inlet", + "outlet_node_name": "Heat Pump Water Loop Demand Inlet Pipe Outlet" + }, + "Heat Pump Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Heat Pump Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Heat Pump Water Loop Demand Outlet" + }, + "Heat Pump Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Heat Pump Water Loop Supply Bypass Inlet", + "outlet_node_name": "Heat Pump Water Loop Supply Bypass Outlet" + }, + "Heat Pump Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Heat Pump Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Heat Pump Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "ChW Cooling Loop All Equipment": { + "equipment": [ + { + "equipment_name": "ChW Loop Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "HW Heating Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Hot Water Loop Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + }, + "Heat Pump Water Loop Cooling All Equipment": { + "equipment": [ + { + "equipment_name": "Heat Pump Loop Tower", + "equipment_object_type": "CoolingTower:TwoSpeed" + } + ] + }, + "Heat Pump Water Loop Heating All Equipment": { + "equipment": [ + { + "equipment_name": "Heat Pump Loop Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "ChW Cooling Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "ChW Cooling Loop All Equipment" + }, + "Heat Pump Water Loop Cool Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Heat Pump Water Loop Cooling All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "HW Heating Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "HW Heating Loop All Equipment" + }, + "Heat Pump Water Loop Heat Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Heat Pump Water Loop Heating All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "ChW Cooling Loop Operation": { + "control_scheme_1_name": "ChW Cooling Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "HW Heating Loop Operation": { + "control_scheme_1_name": "HW Heating Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Heat Pump Water Loop Operation": { + "control_scheme_1_name": "Heat Pump Water Loop Heat Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1", + "control_scheme_2_name": "Heat Pump Water Loop Cool Operation All Hours", + "control_scheme_2_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_2_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "ChW Cooling Loop PlantLoop": { + "availability_manager_list_name": "ChW Cooling Loop Availability Managers", + "demand_side_branch_list_name": "ChW Cooling Loop Demand Side Branches", + "demand_side_connector_list_name": "ChW Cooling Loop Demand Side Connectors", + "demand_side_inlet_node_name": "ChW Cooling Loop Demand Inlet", + "demand_side_outlet_node_name": "ChW Cooling Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "ChW Cooling Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "ChW Cooling Loop Operation", + "plant_side_branch_list_name": "ChW Cooling Loop Supply Side Branches", + "plant_side_connector_list_name": "ChW Cooling Loop Supply Side Connectors", + "plant_side_inlet_node_name": "ChW Cooling Loop Supply Inlet", + "plant_side_outlet_node_name": "ChW Cooling Loop Supply Outlet" + }, + "HW Heating Loop PlantLoop": { + "demand_side_branch_list_name": "HW Heating Loop Demand Side Branches", + "demand_side_connector_list_name": "HW Heating Loop Demand Side Connectors", + "demand_side_inlet_node_name": "HW Heating Loop Demand Inlet", + "demand_side_outlet_node_name": "HW Heating Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "HW Heating Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "HW Heating Loop Operation", + "plant_side_branch_list_name": "HW Heating Loop Supply Side Branches", + "plant_side_connector_list_name": "HW Heating Loop Supply Side Connectors", + "plant_side_inlet_node_name": "HW Heating Loop Supply Inlet", + "plant_side_outlet_node_name": "HW Heating Loop Supply Outlet" + }, + "Heat Pump Water Loop PlantLoop": { + "demand_side_branch_list_name": "Heat Pump Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Heat Pump Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Heat Pump Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Heat Pump Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Heat Pump Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Heat Pump Water Loop Operation", + "plant_loop_demand_calculation_scheme": "DualSetpointDeadband", + "plant_side_branch_list_name": "Heat Pump Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Heat Pump Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Heat Pump Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Heat Pump Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "ChW Cooling Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "ChW Cooling Loop Supply Inlet", + "outlet_node_name": "ChW Cooling Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "HW Heating Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "HW Heating Loop Supply Inlet", + "outlet_node_name": "HW Heating Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Heat Pump Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Heat Pump Water Loop Supply Inlet", + "outlet_node_name": "Heat Pump Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always20": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 20.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always33": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 33.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always7.22": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 7.22 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always82": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 82.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "Sys 1 Furnace DX Cool SnglSpd Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet", + "fan_outlet_node_name": "Sys 1 Furnace DX Cool SnglSpd Supply Fan Outlet", + "reference_setpoint_node_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Sys 1 Furnace DX Cool SnglSpd Mixed Air Outlet" + }, + "Sys 2 Furnace DX Cool MultiSpd Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Heating Coil Outlet", + "fan_outlet_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet", + "reference_setpoint_node_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "Sys 2 Furnace DX Cool MultiSpd Mixed Air Outlet" + }, + "Sys 3 Heat Pump AirSource SnglSpd Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet", + "fan_outlet_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supply Fan Outlet", + "reference_setpoint_node_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Sys 3 Heat Pump AirSource SnglSpd Mixed Air Outlet" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet", + "fan_outlet_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supply Fan Outlet", + "reference_setpoint_node_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Sys 4 Heat Pump WaterSource SnglSpd Mixed Air Outlet" + }, + "Sys 5 HW ChW System Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "Sys 5 HW ChW System Mixed Air Outlet", + "fan_outlet_node_name": "Sys 5 HW ChW System Supply Fan Outlet", + "reference_setpoint_node_name": "Sys 5 HW ChW System Heating Coil Outlet", + "setpoint_node_or_nodelist_name": "Sys 5 HW ChW System Mixed Air Outlet" + } + }, + "SetpointManager:Scheduled": { + "ChW Cooling Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always7.22", + "setpoint_node_or_nodelist_name": "ChW Cooling Loop Supply Setpoint Nodes" + }, + "HW Heating Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always82", + "setpoint_node_or_nodelist_name": "HW Heating Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled:DualSetpoint": { + "Heat Pump Water Loop Temp Manager": { + "control_variable": "Temperature", + "high_setpoint_schedule_name": "HVACTemplate-Always33", + "low_setpoint_schedule_name": "HVACTemplate-Always20", + "setpoint_node_or_nodelist_name": "Heat Pump Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:SingleZone:Cooling": { + "Sys 1 Furnace DX Cool SnglSpd Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE1-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Sys 1 Furnace DX Cool SnglSpd Heating Coil Outlet", + "zone_inlet_node_name": "SPACE1-1 Supply Inlet", + "zone_node_name": "SPACE1-1 Zone Air Node" + }, + "Sys 2 Furnace DX Cool MultiSpd Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE2-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Sys 2 Furnace DX Cool MultiSpd Supply Fan Outlet", + "zone_inlet_node_name": "SPACE2-1 Supply Inlet", + "zone_node_name": "SPACE2-1 Zone Air Node" + }, + "Sys 3 Heat Pump AirSource SnglSpd Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE3-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Sys 3 Heat Pump AirSource SnglSpd Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE3-1 Supply Inlet", + "zone_node_name": "SPACE3-1 Zone Air Node" + }, + "Sys 4 Heat Pump WaterSource SnglSpd Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE4-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Sys 4 Heat Pump WaterSource SnglSpd Supp Heating Coil Outlet", + "zone_inlet_node_name": "SPACE4-1 Supply Inlet", + "zone_node_name": "SPACE4-1 Zone Air Node" + }, + "Sys 5 HW ChW System Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "control_zone_name": "SPACE5-1", + "maximum_supply_air_temperature": 45, + "minimum_supply_air_temperature": 13, + "setpoint_node_or_nodelist_name": "Sys 5 HW ChW System Heating Coil Outlet", + "zone_inlet_node_name": "SPACE5-1 Supply Inlet", + "zone_node_name": "SPACE5-1 Zone Air Node" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "ChW Cooling Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "ChW Cooling Loop PlantLoop" + }, + "HW Heating Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "HW Heating Loop PlantLoop" + }, + "Heat Pump Water Loop Sizing Plant": { + "design_loop_exit_temperature": 33, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Heat Pump Water Loop PlantLoop" + } + }, + "Sizing:System": { + "Sys 1 Furnace DX Cool SnglSpd Sizing System": { + "airloop_name": "Sys 1 Furnace DX Cool SnglSpd", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Sys 2 Furnace DX Cool MultiSpd Sizing System": { + "airloop_name": "Sys 2 Furnace DX Cool MultiSpd", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Sys 3 Heat Pump AirSource SnglSpd Sizing System": { + "airloop_name": "Sys 3 Heat Pump AirSource SnglSpd", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Sys 4 Heat Pump WaterSource SnglSpd Sizing System": { + "airloop_name": "Sys 4 Heat Pump WaterSource SnglSpd", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + }, + "Sys 5 HW ChW System Sizing System": { + "airloop_name": "Sys 5 HW ChW System", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 50, + "central_heating_maximum_system_air_flow_ratio": 1.0, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "UnitarySystemPerformance:Multispeed": { + "Sys 2 Furnace DX Cool MultiSpd MultiSpeed Performance": { + "flow_ratios": [ + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + }, + { + "cooling_speed_supply_air_flow_ratio": "Autosize", + "heating_speed_supply_air_flow_ratio": "Autosize" + } + ], + "no_load_supply_air_flow_rate_ratio": 0.3333333333333333, + "number_of_speeds_for_cooling": 3, + "number_of_speeds_for_heating": 1, + "single_mode_operation": "No" + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 CV", + "air_terminal_object_type": "AirTerminal:SingleDuct:ConstantVolume:NoReheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_hvac_templates.epJSON new file mode 100644 index 00000000000..168bc65b879 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneUnitarySystem_hvac_templates.epJSON @@ -0,0 +1,499 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Heat Pump Loop Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "optimum_part_load_ratio": 1, + "priority": "1", + "sizing_factor": 1, + "template_plant_loop_type": "MixedWater", + "water_outlet_upper_temperature_limit": 100 + }, + "Hot Water Loop Boiler": { + "boiler_type": "CondensingHotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "optimum_part_load_ratio": 1, + "priority": "1", + "sizing_factor": 1, + "template_plant_loop_type": "HotWater", + "water_outlet_upper_temperature_limit": 100 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "ChW Cooling Loop": { + "chilled_water_demand_side_bypass_pipe": "Yes", + "chilled_water_design_setpoint": 7.22, + "chilled_water_load_distribution_scheme": "SequentialLoad", + "chilled_water_primary_pump_type": "SinglePump", + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_secondary_pump_type": "SinglePump", + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "None", + "chilled_water_supply_side_bypass_pipe": "Yes", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_demand_side_bypass_pipe": "Yes", + "condenser_water_design_setpoint": 29.4, + "condenser_water_load_distribution_scheme": "SequentialLoad", + "condenser_water_pump_rated_head": 179352, + "condenser_water_pump_type": "SinglePump", + "condenser_water_supply_side_bypass_pipe": "Yes", + "fluid_type": "Water", + "loop_design_delta_temperature": 6.67, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "ChW Loop Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "AirCooled", + "leaving_chilled_water_lower_temperature_limit": 5, + "maximum_part_load_ratio": 1, + "minimum_unloading_ratio": 0.25, + "nominal_cop": 3, + "optimum_part_load_ratio": 1, + "sizing_factor": 1 + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "HW Heating Loop": { + "demand_side_bypass_pipe": "Yes", + "fluid_type": "Water", + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_pump_type": "SinglePump", + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "None", + "load_distribution_scheme": "SequentialLoad", + "loop_design_delta_temperature": 11, + "pump_control_type": "Intermittent", + "supply_side_bypass_pipe": "Yes" + } + }, + "HVACTemplate:Plant:MixedWaterLoop": { + "Heat Pump Water Loop": { + "demand_side_bypass_pipe": "Yes", + "fluid_type": "Water", + "high_temperature_design_setpoint": 33, + "load_distribution_scheme": "SequentialLoad", + "loop_design_delta_temperature": 5.6, + "low_temperature_design_setpoint": 20, + "operation_scheme_type": "Default", + "pump_control_type": "Intermittent", + "supply_side_bypass_pipe": "Yes", + "water_pump_configuration": "ConstantFlow", + "water_pump_rated_head": 179352, + "water_pump_type": "SinglePump" + } + }, + "HVACTemplate:Plant:Tower": { + "Heat Pump Loop Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "sizing_factor": 1, + "template_plant_loop_type": "MixedWater", + "tower_type": "TwoSpeed" + } + }, + "HVACTemplate:System:UnitarySystem": { + "Sys 1 Furnace DX Cool SnglSpd": { + "control_type": "Load", + "control_zone_or_thermostat_location_name": "SPACE1-1", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 12.8, + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "economizer_lockout": "LockoutWithCompressor", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_gross_rated_capacity": "Autosize", + "heating_coil_type": "Gas", + "heating_design_supply_air_temperature": 50, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "no_load_supply_air_flow_rate": "Autosize", + "number_of_speeds_for_cooling": 1, + "number_of_speeds_or_stages_for_heating": 1, + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supplemental_gas_heating_or_reheat_coil_efficiency": 0.8, + "supplemental_heating_or_reheat_coil_capacity": "Autosize", + "supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_or_reheat_coil_type": "None", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7 + }, + "Sys 2 Furnace DX Cool MultiSpd": { + "control_type": "Load", + "control_zone_or_thermostat_location_name": "SPACE2-1", + "cooling_coil_type": "MultiSpeedDX", + "cooling_design_supply_air_temperature": 12.8, + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "economizer_lockout": "LockoutWithCompressor", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_gross_rated_capacity": "Autosize", + "heating_coil_type": "Electric", + "heating_design_supply_air_temperature": 50, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "no_load_supply_air_flow_rate": "Autosize", + "number_of_speeds_for_cooling": 3, + "number_of_speeds_or_stages_for_heating": 1, + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supplemental_gas_heating_or_reheat_coil_efficiency": 0.8, + "supplemental_heating_or_reheat_coil_capacity": "Autosize", + "supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_or_reheat_coil_type": "None", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7 + }, + "Sys 3 Heat Pump AirSource SnglSpd": { + "control_type": "Load", + "control_zone_or_thermostat_location_name": "SPACE3-1", + "cooling_coil_type": "SingleSpeedDX", + "cooling_design_supply_air_temperature": 12.8, + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "economizer_lockout": "LockoutWithCompressor", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_defrost_time_period_fraction": 0.058333, + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_gross_rated_capacity": "Autosize", + "heating_coil_type": "SingleSpeedDXHeatPumpAirSource", + "heating_design_supply_air_temperature": 50, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "no_load_supply_air_flow_rate": "Autosize", + "number_of_speeds_for_cooling": 1, + "number_of_speeds_or_stages_for_heating": 1, + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supplemental_gas_heating_or_reheat_coil_efficiency": 0.8, + "supplemental_heating_or_reheat_coil_capacity": "Autosize", + "supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_or_reheat_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7 + }, + "Sys 4 Heat Pump WaterSource SnglSpd": { + "control_type": "Load", + "control_zone_or_thermostat_location_name": "SPACE4-1", + "cooling_coil_type": "SingleSpeedDXWaterCooled", + "cooling_design_supply_air_temperature": 12.8, + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "economizer_lockout": "LockoutWithCompressor", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_gross_rated_capacity": "Autosize", + "heating_coil_type": "SingleSpeedDXHeatPumpWaterSource", + "heating_design_supply_air_temperature": 50, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "no_load_supply_air_flow_rate": "Autosize", + "number_of_speeds_for_cooling": 1, + "number_of_speeds_or_stages_for_heating": 1, + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supplemental_gas_heating_or_reheat_coil_efficiency": 0.8, + "supplemental_heating_or_reheat_coil_capacity": "Autosize", + "supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_or_reheat_coil_type": "Electric", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7 + }, + "Sys 5 HW ChW System": { + "control_type": "Load", + "control_zone_or_thermostat_location_name": "SPACE5-1", + "cooling_coil_type": "ChilledWater", + "cooling_design_supply_air_temperature": 12.8, + "cooling_supply_air_flow_rate": "Autosize", + "dehumidification_control_type": "None", + "dehumidification_relative_humidity_setpoint": 60, + "dx_cooling_coil_gross_rated_cop": 3, + "dx_cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "dx_cooling_coil_gross_rated_total_capacity": "Autosize", + "economizer_lockout": "NoLockout", + "economizer_maximum_limit_dry_bulb_temperature": 20, + "economizer_type": "DifferentialDryBulb", + "gas_heating_coil_efficiency": 0.8, + "heat_pump_defrost_control": "Timed", + "heat_pump_defrost_maximum_outdoor_dry_bulb_temperature": 5, + "heat_pump_defrost_strategy": "ReverseCycle", + "heat_pump_heating_coil_gross_rated_cop": 2.75, + "heat_pump_heating_minimum_outdoor_dry_bulb_temperature": -8, + "heat_recovery_frost_control_type": "None", + "heat_recovery_heat_exchanger_type": "Plate", + "heat_recovery_type": "None", + "heating_coil_gross_rated_capacity": "Autosize", + "heating_coil_type": "HotWater", + "heating_design_supply_air_temperature": 50, + "heating_supply_air_flow_rate": "Autosize", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": "Autosize", + "humidifier_relative_humidity_setpoint": 30, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "no_load_supply_air_flow_rate": "Autosize", + "number_of_speeds_for_cooling": 1, + "number_of_speeds_or_stages_for_heating": 1, + "return_fan": "No", + "return_fan_delta_pressure": 300, + "return_fan_motor_efficiency": 0.9, + "return_fan_motor_in_air_stream_fraction": 1, + "return_fan_total_efficiency": 0.7, + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supplemental_gas_heating_or_reheat_coil_efficiency": 0.8, + "supplemental_heating_or_reheat_coil_capacity": "Autosize", + "supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature": 21, + "supplemental_heating_or_reheat_coil_type": "None", + "supply_fan_delta_pressure": 600, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_placement": "BlowThrough", + "supply_fan_total_efficiency": 0.7 + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:Unitary": { + "HVACTemplate:Zone:Unitary 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Sys 1 Furnace DX Cool SnglSpd", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:Unitary 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Sys 2 Furnace DX Cool MultiSpd", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:Unitary 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Sys 3 Heat Pump AirSource SnglSpd", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:Unitary 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Sys 4 Heat Pump WaterSource SnglSpd", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:Unitary 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_unitary_system_name": "Sys 5 HW ChW System", + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_base.epJSON new file mode 100644 index 00000000000..ea318ecde8f --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_base.epJSON @@ -0,0 +1,2931 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Electricity Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_expanded.epJSON new file mode 100644 index 00000000000..9c5b2b6e37e --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_expanded.epJSON @@ -0,0 +1,4832 @@ +{ + "AirLoopHVAC": { + "VAV Sys 1": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "branch_list_name": "VAV Sys 1 Branches", + "controller_list_name": "VAV Sys 1 Controllers", + "demand_side_inlet_node_names": "VAV Sys 1 Supply Path Inlet", + "demand_side_outlet_node_name": "VAV Sys 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "supply_side_outlet_node_names": "VAV Sys 1 Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "VAV Sys 1 Controllers": { + "controller_1_name": "VAV Sys 1 Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "VAV Sys 1 Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "VAV Sys 1 OA Controllers": { + "controller_1_name": "VAV Sys 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "VAV Sys 1 OA System": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "controller_list_name": "VAV Sys 1 OA Controllers", + "outdoor_air_equipment_list_name": "VAV Sys 1 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "VAV Sys 1 OA System Equipment": { + "component_1_name": "VAV Sys 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "VAV Sys 1 Return Path": { + "components": [ + { + "component_name": "VAV Sys 1 Return Plenum", + "component_object_type": "AirLoopHVAC:ReturnPlenum" + } + ], + "return_air_path_outlet_node_name": "VAV Sys 1 Return Air Outlet" + } + }, + "AirLoopHVAC:ReturnPlenum": { + "VAV Sys 1 Return Plenum": { + "nodes": [ + { + "inlet_node_name": "SPACE5-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + } + ], + "outlet_node_name": "VAV Sys 1 Return Air Outlet", + "zone_name": "PLENUM-1", + "zone_node_name": "PLENUM-1 Zone Air Node" + } + }, + "AirLoopHVAC:SupplyPath": { + "VAV Sys 1 Supply Path": { + "components": [ + { + "component_name": "VAV Sys 1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneMixer": { + "SPACE1-1 PIU Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "inlet_node_name": "SPACE1-1 Return" + } + ], + "outlet_node_name": "SPACE1-1 PIU Mixer Outlet" + }, + "SPACE2-1 PIU Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "inlet_node_name": "SPACE2-1 Return" + } + ], + "outlet_node_name": "SPACE2-1 PIU Mixer Outlet" + }, + "SPACE3-1 PIU Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "inlet_node_name": "SPACE3-1 Return" + } + ], + "outlet_node_name": "SPACE3-1 PIU Mixer Outlet" + }, + "SPACE4-1 PIU Mixer": { + "nodes": [ + { + "inlet_node_name": "SPACE4-1 Zone Equip Inlet" + }, + { + "inlet_node_name": "SPACE4-1 Return" + } + ], + "outlet_node_name": "SPACE4-1 PIU Mixer Outlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "VAV Sys 1 Zone Splitter": { + "inlet_node_name": "VAV Sys 1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:SeriesPIU:Reheat": { + "SPACE1-1 Series PIU Reheat": { + "fan_name": "SPACE1-1 Supply Fan", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "maximum_primary_air_flow_rate": "Autosize", + "minimum_primary_air_flow_fraction": "Autosize", + "outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "reheat_coil_air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "reheat_coil_name": "SPACE1-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "secondary_air_inlet_node_name": "SPACE1-1 Return", + "supply_air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "zone_mixer_name": "SPACE1-1 PIU Mixer" + }, + "SPACE2-1 Series PIU Reheat": { + "fan_name": "SPACE2-1 Supply Fan", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "maximum_primary_air_flow_rate": "Autosize", + "minimum_primary_air_flow_fraction": "Autosize", + "outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "reheat_coil_air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "reheat_coil_name": "SPACE2-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "secondary_air_inlet_node_name": "SPACE2-1 Return", + "supply_air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "zone_mixer_name": "SPACE2-1 PIU Mixer" + }, + "SPACE3-1 Series PIU Reheat": { + "fan_name": "SPACE3-1 Supply Fan", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "maximum_primary_air_flow_rate": "Autosize", + "minimum_primary_air_flow_fraction": "Autosize", + "outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "reheat_coil_air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "reheat_coil_name": "SPACE3-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "secondary_air_inlet_node_name": "SPACE3-1 Return", + "supply_air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "zone_mixer_name": "SPACE3-1 PIU Mixer" + }, + "SPACE4-1 Series PIU Reheat": { + "fan_name": "SPACE4-1 Supply Fan", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "maximum_primary_air_flow_rate": "Autosize", + "minimum_primary_air_flow_fraction": "Autosize", + "outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "reheat_coil_air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "reheat_coil_name": "SPACE4-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "secondary_air_inlet_node_name": "SPACE4-1 Return", + "supply_air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "zone_mixer_name": "SPACE4-1 PIU Mixer" + } + }, + "AirTerminal:SingleDuct:VAV:Reheat": { + "SPACE5-1 VAV Reheat": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE5-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE5-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:LowTemperatureTurnOff": { + "Chilled Water Loop Availability Low Temp TurnOff": { + "sensor_node_name": "Chilled Water Loop Outside Air Sensor", + "temperature": 7.22 + } + }, + "AvailabilityManager:NightCycle": { + "VAV Sys 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAnyZoneFansOnly", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": { + "managers": [ + { + "availability_manager_name": "Chilled Water Loop Availability Low Temp TurnOff", + "availability_manager_object_type": "AvailabilityManager:LowTemperatureTurnOff" + } + ] + }, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {}, + "VAV Sys 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "VAV Sys 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SPACE1-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE5-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "component_name": "SPACE5-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + ] + }, + "VAV Sys 1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "component_name": "VAV Sys 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "VAV Sys 1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "component_name": "VAV Sys 1 Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "VAV Sys 1 Supply Fan Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + }, + "VAV Sys 1 Branches": { + "branches": [ + { + "branch_name": "VAV Sys 1 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "VAV Sys 1 Cooling Coil": { + "air_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "air_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "SPACE1-1 Reheat Coil": { + "air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Reheat Coil": { + "air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Reheat Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Reheat Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + }, + "SPACE5-1 Reheat Coil": { + "air_inlet_node_name": "SPACE5-1 Damper Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + }, + "VAV Sys 1 Heating Coil": { + "air_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "water_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Heating Coil Hw Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "VAV Sys 1 OA Controller": { + "actuator_node_name": "VAV Sys 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "Controller:WaterCoil": { + "VAV Sys 1 Cooling Coil Controller": { + "actuator_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + "VAV Sys 1 Heating Coil Controller": { + "actuator_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:ConstantVolume": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 PIU Mixer Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 1000 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 PIU Mixer Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 1000 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 PIU Mixer Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 1000 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 PIU Mixer Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 1000 + } + }, + "Fan:VariableVolume": { + "VAV Sys 1 Supply Fan": { + "air_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_power_coefficient_1": 0.35071223, + "fan_power_coefficient_2": 0.30850535, + "fan_power_coefficient_3": -0.54137364, + "fan_power_coefficient_4": 0.87198823, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.25, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "VAV Sys 1 Mixed Air Nodes": { + "nodes": [ + { + "node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "node_name": "VAV Sys 1 Mixed Air Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "VAV Sys 1 OA Mixing Box": { + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "VAV Sys 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_stream_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Chilled Water Loop Outside Air Sensor": {}, + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "VAV Sys 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "VAV Sys 1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Fan Electricity Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always10.0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 10.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always7.22": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 7.22 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "VAV Sys 1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Mixed Air Nodes" + }, + "VAV Sys 1 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always7.22", + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + }, + "VAV Sys 1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Fan Outlet" + }, + "VAV Sys 1 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always10.0", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "VAV Sys 1 Sizing System": { + "airloop_name": "VAV Sys 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 10.0, + "central_heating_maximum_system_air_flow_ratio": 0.3, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "air_terminal_name": "SPACE1-1 Series PIU Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:SeriesPIU:Reheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "air_terminal_name": "SPACE2-1 Series PIU Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:SeriesPIU:Reheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "air_terminal_name": "SPACE3-1 Series PIU Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:SeriesPIU:Reheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "air_terminal_name": "SPACE4-1 Series PIU Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:SeriesPIU:Reheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_hvac_templates.epJSON new file mode 100644 index 00000000000..04d831cbf71 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVFanPowered_hvac_templates.epJSON @@ -0,0 +1,240 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "None", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "minimum_outdoor_dry_bulb_temperature": 7.22, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:VAV": { + "VAV Sys 1": { + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_setpoint_reset_type": "None", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_lower_temperature_limit": 4, + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "gas_preheat_coil_efficiency": 0.8, + "gas_preheat_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_design_setpoint": 10.0, + "heating_coil_setpoint_reset_type": "None", + "heating_coil_type": "HotWater", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAnyZoneFansOnly", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_plenum_name": "PLENUM-1", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_minimum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_part_load_power_coefficients": "InletVaneDampers", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:VAV": { + "HVACTemplate:Zone:VAV 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE5-1" + } + }, + "HVACTemplate:Zone:VAV:FanPowered": { + "HVACTemplate:Zone:VAV:FanPowered 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "fan_delta_pressure": 1000, + "fan_motor_efficiency": 0.9, + "fan_total_efficiency": 0.7, + "flow_type": "Series", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "parallel_fan_on_flow_fraction": "Autosize", + "primary_supply_air_maximum_flow_rate": "Autosize", + "primary_supply_air_minimum_flow_fraction": "Autosize", + "reheat_coil_type": "HotWater", + "secondary_supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:VAV:FanPowered 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "fan_delta_pressure": 1000, + "fan_motor_efficiency": 0.9, + "fan_total_efficiency": 0.7, + "flow_type": "Series", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "parallel_fan_on_flow_fraction": "Autosize", + "primary_supply_air_maximum_flow_rate": "Autosize", + "primary_supply_air_minimum_flow_fraction": "Autosize", + "reheat_coil_type": "HotWater", + "secondary_supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:VAV:FanPowered 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "fan_delta_pressure": 1000, + "fan_motor_efficiency": 0.9, + "fan_total_efficiency": 0.7, + "flow_type": "Series", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "parallel_fan_on_flow_fraction": "Autosize", + "primary_supply_air_maximum_flow_rate": "Autosize", + "primary_supply_air_minimum_flow_fraction": "Autosize", + "reheat_coil_type": "HotWater", + "secondary_supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:VAV:FanPowered 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "fan_delta_pressure": 1000, + "fan_motor_efficiency": 0.9, + "fan_total_efficiency": 0.7, + "flow_type": "Series", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "parallel_fan_on_flow_fraction": "Autosize", + "primary_supply_air_maximum_flow_rate": "Autosize", + "primary_supply_air_minimum_flow_fraction": "Autosize", + "reheat_coil_type": "HotWater", + "secondary_supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_base.epJSON new file mode 100644 index 00000000000..1cd199fb967 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_base.epJSON @@ -0,0 +1,3039 @@ +{ + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "design_water_flow_rate": "Autosize", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "minimum_part_load_ratio": 0.0, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "optimum_part_load_ratio": 1.0, + "parasitic_electric_load": 0, + "sizing_factor": 1.0, + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "design_heat_recovery_water_flow_rate": 0, + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "fraction_of_compressor_electric_consumption_rejected_by_condenser": 1, + "leaving_chilled_water_lower_temperature_limit": 5.0, + "maximum_part_load_ratio": 1.0, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2, + "reference_entering_condenser_fluid_temperature": 29.4, + "reference_leaving_chilled_water_temperature": 6.67, + "sizing_factor": 1.0 + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "blowdown_concentration_ratio": 3, + "capacity_control": "FanCycling", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "drift_loss_percent": 0.008, + "evaporation_loss_mode": "SaturatedExit", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Cooling Tower Outdoor Air Inlet Node", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "sizing_factor": 1.0, + "water_inlet_node_name": "Main Tower CndW Inlet", + "water_outlet_node_name": "Main Tower CndW Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "OutdoorAir:Node": { + "Main Tower Cooling Tower Outdoor Air Inlet Node": { + "height_above_ground": -1 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_expanded.epJSON new file mode 100644 index 00000000000..d654eb2f112 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_expanded.epJSON @@ -0,0 +1,4727 @@ +{ + "AirLoopHVAC": { + "VAV Sys 1": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "branch_list_name": "VAV Sys 1 Branches", + "controller_list_name": "VAV Sys 1 Controllers", + "demand_side_inlet_node_names": "VAV Sys 1 Supply Path Inlet", + "demand_side_outlet_node_name": "VAV Sys 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "supply_side_outlet_node_names": "VAV Sys 1 Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "VAV Sys 1 Controllers": { + "controller_1_name": "VAV Sys 1 Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "VAV Sys 1 Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "VAV Sys 1 OA Controllers": { + "controller_1_name": "VAV Sys 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "VAV Sys 1 OA System": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "controller_list_name": "VAV Sys 1 OA Controllers", + "outdoor_air_equipment_list_name": "VAV Sys 1 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "VAV Sys 1 OA System Equipment": { + "component_1_name": "VAV Sys 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "VAV Sys 1 Return Path": { + "components": [ + { + "component_name": "VAV Sys 1 Return Plenum", + "component_object_type": "AirLoopHVAC:ReturnPlenum" + } + ], + "return_air_path_outlet_node_name": "VAV Sys 1 Return Air Outlet" + } + }, + "AirLoopHVAC:ReturnPlenum": { + "VAV Sys 1 Return Plenum": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "VAV Sys 1 Return Air Outlet", + "zone_name": "PLENUM-1", + "zone_node_name": "PLENUM-1 Zone Air Node" + } + }, + "AirLoopHVAC:SupplyPath": { + "VAV Sys 1 Supply Path": { + "components": [ + { + "component_name": "VAV Sys 1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "VAV Sys 1 Zone Splitter": { + "inlet_node_name": "VAV Sys 1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:VAV:Reheat": { + "SPACE1-1 VAV Reheat": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE1-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE1-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE2-1 VAV Reheat": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE2-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE2-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE3-1 VAV Reheat": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE3-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE3-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE4-1 VAV Reheat": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE4-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE4-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE5-1 VAV Reheat": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE5-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE5-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:NightCycle": { + "VAV Sys 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": {}, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {}, + "VAV Sys 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "VAV Sys 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "design_water_flow_rate": "Autosize", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "minimum_part_load_ratio": 0.0, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "optimum_part_load_ratio": 1.0, + "parasitic_electric_load": 0, + "sizing_factor": 1.0, + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Connection Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller Connection ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller Connection CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Connection Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower CndW Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower CndW Outlet" + } + ] + }, + "SPACE1-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE5-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "component_name": "SPACE5-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + ] + }, + "VAV Sys 1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "component_name": "VAV Sys 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "VAV Sys 1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "component_name": "VAV Sys 1 Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "VAV Sys 1 Supply Fan Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller Connection ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller Connection CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Connection Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Connection Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + }, + "VAV Sys 1 Branches": { + "branches": [ + { + "branch_name": "VAV Sys 1 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "design_heat_recovery_water_flow_rate": 0, + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "fraction_of_compressor_electric_consumption_rejected_by_condenser": 1, + "leaving_chilled_water_lower_temperature_limit": 5.0, + "maximum_part_load_ratio": 1.0, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2, + "reference_entering_condenser_fluid_temperature": 29.4, + "reference_leaving_chilled_water_temperature": 6.67, + "sizing_factor": 1.0 + } + }, + "Coil:Cooling:Water": { + "VAV Sys 1 Cooling Coil": { + "air_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "air_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "SPACE1-1 Reheat Coil": { + "air_inlet_node_name": "SPACE1-1 Damper Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Reheat Coil": { + "air_inlet_node_name": "SPACE2-1 Damper Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Reheat Coil": { + "air_inlet_node_name": "SPACE3-1 Damper Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Reheat Coil": { + "air_inlet_node_name": "SPACE4-1 Damper Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + }, + "SPACE5-1 Reheat Coil": { + "air_inlet_node_name": "SPACE5-1 Damper Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + }, + "VAV Sys 1 Heating Coil": { + "air_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "water_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller Connection ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller Connection CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Connection Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Connection Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller Connection ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller Connection CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Connection Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Connection Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "VAV Sys 1 OA Controller": { + "actuator_node_name": "VAV Sys 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "Controller:WaterCoil": { + "VAV Sys 1 Cooling Coil Controller": { + "actuator_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + "VAV Sys 1 Heating Coil Controller": { + "actuator_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "blowdown_concentration_ratio": 3, + "capacity_control": "FanCycling", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "drift_loss_percent": 0.008, + "evaporation_loss_mode": "SaturatedExit", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Cooling Tower Outdoor Air Inlet Node", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "sizing_factor": 1.0, + "water_inlet_node_name": "Main Tower CndW Inlet", + "water_outlet_node_name": "Main Tower CndW Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:VariableVolume": { + "VAV Sys 1 Supply Fan": { + "air_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_power_coefficient_1": 0.35071223, + "fan_power_coefficient_2": 0.30850535, + "fan_power_coefficient_3": -0.54137364, + "fan_power_coefficient_4": 0.87198823, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.25, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower CndW Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "VAV Sys 1 Mixed Air Nodes": { + "nodes": [ + { + "node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "node_name": "VAV Sys 1 Mixed Air Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "VAV Sys 1 OA Mixing Box": { + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "VAV Sys 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_stream_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Main Tower Cooling Tower Outdoor Air Inlet Node": { + "height_above_ground": -1 + } + }, + "OutdoorAir:NodeList": { + "VAV Sys 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "VAV Sys 1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always10.0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 10.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always7.22": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 7.22 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "VAV Sys 1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Mixed Air Nodes" + }, + "VAV Sys 1 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always7.22", + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + }, + "VAV Sys 1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Fan Outlet" + }, + "VAV Sys 1 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always10.0", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "VAV Sys 1 Sizing System": { + "airloop_name": "VAV Sys 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 10.0, + "central_heating_maximum_system_air_flow_ratio": 0.3, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_hvac_templates.epJSON new file mode 100644 index 00000000000..34a254c6969 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled-ObjectReference_hvac_templates.epJSON @@ -0,0 +1,213 @@ +{ + "HVACTemplate:Plant:Boiler:ObjectReference": { + "Main Boiler Connection": { + "boiler_name": "Main Boiler", + "boiler_object_type": "Boiler:HotWater", + "priority": 1 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "None", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller:ObjectReference": { + "Main Chiller Connection": { + "chiller_name": "Main Chiller", + "chiller_object_type": "Chiller:Electric:EIR", + "condenser_type": "WaterCooled", + "priority": 1 + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower:ObjectReference": { + "Main Tower Connection": { + "cooling_tower_name": "Main Tower", + "cooling_tower_object_type": "CoolingTower:SingleSpeed", + "priority": 1 + } + }, + "HVACTemplate:System:VAV": { + "VAV Sys 1": { + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_setpoint_reset_type": "None", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_lower_temperature_limit": 4, + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "gas_preheat_coil_efficiency": 0.8, + "gas_preheat_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_design_setpoint": 10.0, + "heating_coil_setpoint_reset_type": "None", + "heating_coil_type": "HotWater", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_plenum_name": "PLENUM-1", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_minimum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_part_load_power_coefficients": "InletVaneDampers", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:VAV": { + "HVACTemplate:Zone:VAV 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:VAV 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:VAV 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:VAV 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:VAV 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_base.epJSON new file mode 100644 index 00000000000..df23bde9fbf --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_base.epJSON @@ -0,0 +1,2926 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_expanded.epJSON new file mode 100644 index 00000000000..5c9d9e02947 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_expanded.epJSON @@ -0,0 +1,4725 @@ +{ + "AirLoopHVAC": { + "VAV Sys 1": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "branch_list_name": "VAV Sys 1 Branches", + "controller_list_name": "VAV Sys 1 Controllers", + "demand_side_inlet_node_names": "VAV Sys 1 Supply Path Inlet", + "demand_side_outlet_node_name": "VAV Sys 1 Return Air Outlet", + "design_supply_air_flow_rate": "Autosize", + "supply_side_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "supply_side_outlet_node_names": "VAV Sys 1 Supply Fan Outlet" + } + }, + "AirLoopHVAC:ControllerList": { + "VAV Sys 1 Controllers": { + "controller_1_name": "VAV Sys 1 Cooling Coil Controller", + "controller_1_object_type": "Controller:WaterCoil", + "controller_2_name": "VAV Sys 1 Heating Coil Controller", + "controller_2_object_type": "Controller:WaterCoil" + }, + "VAV Sys 1 OA Controllers": { + "controller_1_name": "VAV Sys 1 OA Controller", + "controller_1_object_type": "Controller:OutdoorAir" + } + }, + "AirLoopHVAC:OutdoorAirSystem": { + "VAV Sys 1 OA System": { + "availability_manager_list_name": "VAV Sys 1 Availability Managers", + "controller_list_name": "VAV Sys 1 OA Controllers", + "outdoor_air_equipment_list_name": "VAV Sys 1 OA System Equipment" + } + }, + "AirLoopHVAC:OutdoorAirSystem:EquipmentList": { + "VAV Sys 1 OA System Equipment": { + "component_1_name": "VAV Sys 1 OA Mixing Box", + "component_1_object_type": "OutdoorAir:Mixer" + } + }, + "AirLoopHVAC:ReturnPath": { + "VAV Sys 1 Return Path": { + "components": [ + { + "component_name": "VAV Sys 1 Return Plenum", + "component_object_type": "AirLoopHVAC:ReturnPlenum" + } + ], + "return_air_path_outlet_node_name": "VAV Sys 1 Return Air Outlet" + } + }, + "AirLoopHVAC:ReturnPlenum": { + "VAV Sys 1 Return Plenum": { + "nodes": [ + { + "inlet_node_name": "SPACE1-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE2-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE3-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE4-1 Return Outlet" + }, + { + "inlet_node_name": "SPACE5-1 Return Outlet" + } + ], + "outlet_node_name": "VAV Sys 1 Return Air Outlet", + "zone_name": "PLENUM-1", + "zone_node_name": "PLENUM-1 Zone Air Node" + } + }, + "AirLoopHVAC:SupplyPath": { + "VAV Sys 1 Supply Path": { + "components": [ + { + "component_name": "VAV Sys 1 Zone Splitter", + "component_object_type": "AirLoopHVAC:ZoneSplitter" + } + ], + "supply_air_path_inlet_node_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "AirLoopHVAC:ZoneSplitter": { + "VAV Sys 1 Zone Splitter": { + "inlet_node_name": "VAV Sys 1 Supply Path Inlet", + "nodes": [ + { + "outlet_node_name": "SPACE1-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE2-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE3-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE4-1 Zone Equip Inlet" + }, + { + "outlet_node_name": "SPACE5-1 Zone Equip Inlet" + } + ] + } + }, + "AirTerminal:SingleDuct:VAV:Reheat": { + "SPACE1-1 VAV Reheat": { + "air_inlet_node_name": "SPACE1-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE1-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE1-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE2-1 VAV Reheat": { + "air_inlet_node_name": "SPACE2-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE2-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE2-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE3-1 VAV Reheat": { + "air_inlet_node_name": "SPACE3-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE3-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE3-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE4-1 VAV Reheat": { + "air_inlet_node_name": "SPACE4-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE4-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE4-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + }, + "SPACE5-1 VAV Reheat": { + "air_inlet_node_name": "SPACE5-1 Zone Equip Inlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "constant_minimum_air_flow_fraction": 0.3, + "damper_air_outlet_node_name": "SPACE5-1 Damper Outlet", + "damper_heating_action": "Reverse", + "maximum_air_flow_rate": "Autosize", + "maximum_hot_water_or_steam_flow_rate": "Autosize", + "reheat_coil_name": "SPACE5-1 Reheat Coil", + "reheat_coil_object_type": "Coil:Heating:Water", + "zone_minimum_air_flow_input_method": "Constant" + } + }, + "AvailabilityManager:LowTemperatureTurnOff": { + "Chilled Water Loop Availability Low Temp TurnOff": { + "sensor_node_name": "Chilled Water Loop Outside Air Sensor", + "temperature": 7.22 + } + }, + "AvailabilityManager:NightCycle": { + "VAV Sys 1 Availability": { + "applicability_schedule_name": "HVACTemplate-Always1", + "control_type": "CycleOnAny", + "cycling_run_time": 3600, + "cycling_run_time_control_type": "FixedRunTime", + "fan_schedule_name": "FanAvailSched", + "thermostat_tolerance": 0.2 + } + }, + "AvailabilityManagerAssignmentList": { + "Chilled Water Loop Availability Managers": { + "managers": [ + { + "availability_manager_name": "Chilled Water Loop Availability Low Temp TurnOff", + "availability_manager_object_type": "AvailabilityManager:LowTemperatureTurnOff" + } + ] + }, + "Condenser Water Loop Availability Managers": {}, + "Hot Water Loop Availability Managers": {}, + "VAV Sys 1 Availability Managers": { + "managers": [ + { + "availability_manager_name": "VAV Sys 1 Availability", + "availability_manager_object_type": "AvailabilityManager:NightCycle" + } + ] + } + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Chilled Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "component_name": "Chilled Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + } + ] + }, + "Chilled Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Inlet", + "component_name": "Chilled Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Chilled Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Demand Outlet" + } + ] + }, + "Chilled Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "component_name": "Chilled Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + } + ] + }, + "Chilled Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Inlet", + "component_name": "Chilled Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Chilled Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "component_name": "Chilled Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "component_name": "Condenser Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + } + ] + }, + "Condenser Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Inlet", + "component_name": "Condenser Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Condenser Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Demand Outlet" + } + ] + }, + "Condenser Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "component_name": "Condenser Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + } + ] + }, + "Condenser Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Inlet", + "component_name": "Condenser Water Loop Supply Pump", + "component_object_type": "Pump:VariableSpeed", + "component_outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Condenser Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "component_name": "Condenser Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "component_name": "Hot Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + } + ] + }, + "Hot Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Inlet", + "component_name": "Hot Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Hot Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "component_name": "Hot Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Demand Outlet" + } + ] + }, + "Hot Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "component_name": "Hot Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + } + ] + }, + "Hot Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Inlet", + "component_name": "Hot Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Hot Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "component_name": "Hot Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Chiller ChW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller ChW Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller ChW Outlet" + } + ] + }, + "Main Chiller CndW Branch": { + "components": [ + { + "component_inlet_node_name": "Main Chiller Cnd Inlet", + "component_name": "Main Chiller", + "component_object_type": "Chiller:Electric:EIR", + "component_outlet_node_name": "Main Chiller Cnd Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "SPACE1-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "component_name": "SPACE1-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE2-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "component_name": "SPACE2-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE3-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "component_name": "SPACE3-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE4-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "component_name": "SPACE4-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + } + ] + }, + "SPACE5-1 Reheat Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "component_name": "SPACE5-1 Reheat Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Cooling Coil Chw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + ] + }, + "VAV Sys 1 Heating Coil Hw Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + ] + }, + "VAV Sys 1 Main Branch": { + "components": [ + { + "component_inlet_node_name": "VAV Sys 1 Air Loop Inlet", + "component_name": "VAV Sys 1 OA System", + "component_object_type": "AirLoopHVAC:OutdoorAirSystem", + "component_outlet_node_name": "VAV Sys 1 Mixed Air Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "component_name": "VAV Sys 1 Cooling Coil", + "component_object_type": "Coil:Cooling:Water", + "component_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "component_name": "VAV Sys 1 Heating Coil", + "component_object_type": "Coil:Heating:Water", + "component_outlet_node_name": "VAV Sys 1 Heating Coil Outlet" + }, + { + "component_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "component_name": "VAV Sys 1 Supply Fan", + "component_object_type": "Fan:VariableVolume", + "component_outlet_node_name": "VAV Sys 1 Supply Fan Outlet" + } + ] + } + }, + "BranchList": { + "Chilled Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Demand Outlet Branch" + } + ] + }, + "Chilled Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Chiller ChW Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Chilled Water Loop Supply Outlet Branch" + } + ] + }, + "Condenser Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + { + "branch_name": "Main Chiller CndW Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Demand Outlet Branch" + } + ] + }, + "Condenser Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Condenser Water Loop Supply Outlet Branch" + } + ] + }, + "Hot Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VAV Sys 1 Heating Coil Hw Branch" + }, + { + "branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Demand Outlet Branch" + } + ] + }, + "Hot Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Hot Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Hot Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Hot Water Loop Supply Outlet Branch" + } + ] + }, + "VAV Sys 1 Branches": { + "branches": [ + { + "branch_name": "VAV Sys 1 Main Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Chiller:Electric:EIR": { + "Main Chiller": { + "chilled_water_inlet_node_name": "Main Chiller ChW Inlet", + "chilled_water_outlet_node_name": "Main Chiller ChW Outlet", + "chiller_flow_mode": "ConstantFlow", + "condenser_inlet_node_name": "Main Chiller Cnd Inlet", + "condenser_outlet_node_name": "Main Chiller Cnd Outlet", + "condenser_type": "WaterCooled", + "cooling_capacity_function_of_temperature_curve_name": "Main Chiller RecipCapFT", + "electric_input_to_cooling_output_ratio_function_of_part_load_ratio_curve_name": "Main Chiller RecipEIRFPLR", + "electric_input_to_cooling_output_ratio_function_of_temperature_curve_name": "Main Chiller RecipEIRFT", + "leaving_chilled_water_lower_temperature_limit": 5, + "minimum_part_load_ratio": 0.0, + "minimum_unloading_ratio": 0.25, + "optimum_part_load_ratio": 1.0, + "reference_capacity": "Autosize", + "reference_chilled_water_flow_rate": "Autosize", + "reference_condenser_fluid_flow_rate": "Autosize", + "reference_cop": 3.2 + } + }, + "Coil:Cooling:Water": { + "VAV Sys 1 Cooling Coil": { + "air_inlet_node_name": "VAV Sys 1 Mixed Air Outlet", + "air_outlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "heat_exchanger_configuration": "CrossFlow", + "type_of_analysis": "DetailedAnalysis", + "water_inlet_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "water_outlet_node_name": "VAV Sys 1 Cooling Coil Chw Outlet" + } + }, + "Coil:Heating:Water": { + "SPACE1-1 Reheat Coil": { + "air_inlet_node_name": "SPACE1-1 Damper Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE1-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Coil Hw Outlet" + }, + "SPACE2-1 Reheat Coil": { + "air_inlet_node_name": "SPACE2-1 Damper Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE2-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Coil Hw Outlet" + }, + "SPACE3-1 Reheat Coil": { + "air_inlet_node_name": "SPACE3-1 Damper Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE3-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Coil Hw Outlet" + }, + "SPACE4-1 Reheat Coil": { + "air_inlet_node_name": "SPACE4-1 Damper Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE4-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Coil Hw Outlet" + }, + "SPACE5-1 Reheat Coil": { + "air_inlet_node_name": "SPACE5-1 Damper Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "SPACE5-1 Heating Coil Hw Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Coil Hw Outlet" + }, + "VAV Sys 1 Heating Coil": { + "air_inlet_node_name": "VAV Sys 1 Cooling Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "rated_inlet_air_temperature": 16.6, + "rated_inlet_water_temperature": 82.2, + "rated_outlet_air_temperature": 32.2, + "rated_outlet_water_temperature": 71.1, + "water_inlet_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "water_outlet_node_name": "VAV Sys 1 Heating Coil Hw Outlet" + } + }, + "CondenserEquipmentList": { + "Condenser Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + } + }, + "CondenserEquipmentOperationSchemes": { + "Condenser Water Loop Operation": { + "control_scheme_1_name": "Condenser Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "CondenserLoop": { + "Condenser Water Loop PlantLoop": { + "condenser_demand_side_branch_list_name": "Condenser Water Loop Demand Side Branches", + "condenser_demand_side_connector_list_name": "Condenser Water Loop Demand Side Connectors", + "condenser_equipment_operation_scheme_name": "Condenser Water Loop Operation", + "condenser_loop_temperature_setpoint_node_name": "Condenser Water Loop Supply Outlet", + "condenser_side_branch_list_name": "Condenser Water Loop Supply Side Branches", + "condenser_side_connector_list_name": "Condenser Water Loop Supply Side Connectors", + "condenser_side_inlet_node_name": "Condenser Water Loop Supply Inlet", + "condenser_side_outlet_node_name": "Condenser Water Loop Supply Outlet", + "demand_side_inlet_node_name": "Condenser Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Condenser Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 80, + "minimum_loop_temperature": 5 + } + }, + "Connector:Mixer": { + "Chilled Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Demand Outlet Branch" + }, + "Chilled Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Chiller ChW Branch" + }, + { + "inlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Chilled Water Loop Supply Outlet Branch" + }, + "Condenser Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "Main Chiller CndW Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Demand Outlet Branch" + }, + "Condenser Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Condenser Water Loop Supply Outlet Branch" + }, + "Hot Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "inlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Demand Outlet Branch" + }, + "Hot Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Hot Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Chilled Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Chilled Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Cooling Coil Chw Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Demand Inlet Branch" + }, + "Chilled Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Chiller ChW Branch" + }, + { + "outlet_branch_name": "Chilled Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Chilled Water Loop Supply Inlet Branch" + }, + "Condenser Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Condenser Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "Main Chiller CndW Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Demand Inlet Branch" + }, + "Condenser Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Condenser Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Condenser Water Loop Supply Inlet Branch" + }, + "Hot Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Hot Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE2-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE3-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE4-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "SPACE5-1 Reheat Coil Hw Branch" + }, + { + "outlet_branch_name": "VAV Sys 1 Heating Coil Hw Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Demand Inlet Branch" + }, + "Hot Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Hot Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Hot Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Chilled Water Loop Demand Side Connectors": { + "connector_1_name": "Chilled Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Chilled Water Loop Supply Side Connectors": { + "connector_1_name": "Chilled Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Chilled Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Demand Side Connectors": { + "connector_1_name": "Condenser Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Condenser Water Loop Supply Side Connectors": { + "connector_1_name": "Condenser Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Condenser Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Demand Side Connectors": { + "connector_1_name": "Hot Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Hot Water Loop Supply Side Connectors": { + "connector_1_name": "Hot Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Hot Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "Controller:OutdoorAir": { + "VAV Sys 1 OA Controller": { + "actuator_node_name": "VAV Sys 1 Outdoor Air Inlet", + "economizer_control_type": "DifferentialDryBulb", + "economizer_maximum_limit_dry_bulb_temperature": 19, + "economizer_minimum_limit_dry_bulb_temperature": 4, + "lockout_type": "NoLockout", + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_limit_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "relief_air_outlet_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "Controller:WaterCoil": { + "VAV Sys 1 Cooling Coil Controller": { + "actuator_node_name": "VAV Sys 1 Cooling Coil Chw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + "VAV Sys 1 Heating Coil Controller": { + "actuator_node_name": "VAV Sys 1 Heating Coil Hw Inlet", + "actuator_variable": "Flow", + "control_variable": "Temperature", + "minimum_actuated_flow": 0, + "sensor_node_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "ConvergenceLimits": { + "ConvergenceLimits 1": { + "maximum_hvac_iterations": 20, + "maximum_plant_iterations": 10, + "minimum_plant_iterations": 4, + "minimum_system_timestep": 1 + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "Main Chiller RecipCapFT": { + "coefficient1_constant": 0.507883, + "coefficient2_x": 0.145228, + "coefficient3_x_2": -0.00625644, + "coefficient4_y": -0.0011178, + "coefficient5_y_2": -0.0001296, + "coefficient6_x_y": -0.00028188, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + }, + "Main Chiller RecipEIRFT": { + "coefficient1_constant": 1.03076, + "coefficient2_x": -0.103536, + "coefficient3_x_2": 0.00710208, + "coefficient4_y": 0.0093186, + "coefficient5_y_2": 0.00031752, + "coefficient6_x_y": -0.00104328, + "maximum_value_of_x": 10, + "maximum_value_of_y": 35, + "minimum_value_of_x": 5, + "minimum_value_of_y": 24 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "Main Chiller RecipEIRFPLR": { + "coefficient1_constant": 0.088065, + "coefficient2_x": 1.137742, + "coefficient3_x_2": -0.225806, + "maximum_value_of_x": 1, + "minimum_value_of_x": 0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_flow_per_zone": 0.0, + "outdoor_air_flow_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:VariableVolume": { + "VAV Sys 1 Supply Fan": { + "air_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "air_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "availability_schedule_name": "FanAvailSched", + "fan_power_coefficient_1": 0.35071223, + "fan_power_coefficient_2": 0.30850535, + "fan_power_coefficient_3": -0.54137364, + "fan_power_coefficient_4": 0.87198823, + "fan_power_coefficient_5": 0, + "fan_power_minimum_flow_fraction": 0.25, + "fan_power_minimum_flow_rate_input_method": "Fraction", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1, + "pressure_rise": 600 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.2, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Chilled Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Chiller ChW Outlet" + }, + { + "node_name": "Chilled Water Loop Supply Outlet" + } + ] + }, + "Condenser Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Condenser Water Loop Supply Outlet" + } + ] + }, + "Hot Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Hot Water Loop Supply Outlet" + } + ] + }, + "VAV Sys 1 Mixed Air Nodes": { + "nodes": [ + { + "node_name": "VAV Sys 1 Cooling Coil Outlet" + }, + { + "node_name": "VAV Sys 1 Mixed Air Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "VAV Sys 1 OA Mixing Box": { + "mixed_air_node_name": "VAV Sys 1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "VAV Sys 1 Outdoor Air Inlet", + "relief_air_stream_node_name": "VAV Sys 1 Relief Air Outlet", + "return_air_stream_node_name": "VAV Sys 1 Air Loop Inlet" + } + }, + "OutdoorAir:Node": { + "Chilled Water Loop Outside Air Sensor": {}, + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "VAV Sys 1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "VAV Sys 1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Terminal VAV Damper Position" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Heating Coil Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Total Cooling Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Coil Sensible Cooling Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Evaporator Cooling Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Condenser Heat Transfer Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Chiller COP" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Chilled Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Demand Bypass Outlet" + }, + "Chilled Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Inlet", + "outlet_node_name": "Chilled Water Loop Demand Inlet Pipe Outlet" + }, + "Chilled Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Demand Outlet" + }, + "Chilled Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Bypass Inlet", + "outlet_node_name": "Chilled Water Loop Supply Bypass Outlet" + }, + "Chilled Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Chilled Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Condenser Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Demand Bypass Outlet" + }, + "Condenser Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Inlet", + "outlet_node_name": "Condenser Water Loop Demand Inlet Pipe Outlet" + }, + "Condenser Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Demand Outlet" + }, + "Condenser Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Bypass Inlet", + "outlet_node_name": "Condenser Water Loop Supply Bypass Outlet" + }, + "Condenser Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Condenser Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Condenser Water Loop Supply Outlet" + }, + "Hot Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Demand Bypass Inlet", + "outlet_node_name": "Hot Water Loop Demand Bypass Outlet" + }, + "Hot Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Inlet", + "outlet_node_name": "Hot Water Loop Demand Inlet Pipe Outlet" + }, + "Hot Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Demand Outlet" + }, + "Hot Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Hot Water Loop Supply Bypass Inlet", + "outlet_node_name": "Hot Water Loop Supply Bypass Outlet" + }, + "Hot Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Hot Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Chilled Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Chiller", + "equipment_object_type": "Chiller:Electric:EIR" + } + ] + }, + "Hot Water Loop All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Chilled Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Chilled Water Loop All Equipment" + }, + "Condenser Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Condenser Water Loop All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Hot Water Loop Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Hot Water Loop All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Chilled Water Loop Operation": { + "control_scheme_1_name": "Chilled Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + }, + "Hot Water Loop Operation": { + "control_scheme_1_name": "Hot Water Loop Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Chilled Water Loop PlantLoop": { + "availability_manager_list_name": "Chilled Water Loop Availability Managers", + "demand_side_branch_list_name": "Chilled Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Chilled Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Chilled Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Chilled Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Chilled Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 98, + "minimum_loop_temperature": 1, + "plant_equipment_operation_scheme_name": "Chilled Water Loop Operation", + "plant_side_branch_list_name": "Chilled Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Chilled Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Chilled Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Chilled Water Loop Supply Outlet" + }, + "Hot Water Loop PlantLoop": { + "demand_side_branch_list_name": "Hot Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Hot Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Hot Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Hot Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Hot Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Hot Water Loop Operation", + "plant_side_branch_list_name": "Hot Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Hot Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Hot Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Hot Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Chilled Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Chilled Water Loop Supply Inlet", + "outlet_node_name": "Chilled Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + }, + "Hot Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Hot Water Loop Supply Inlet", + "outlet_node_name": "Hot Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "Pump:VariableSpeed": { + "Condenser Water Loop Supply Pump": { + "coefficient_2_of_the_part_load_performance_curve": 0, + "coefficient_3_of_the_part_load_performance_curve": 1, + "design_maximum_flow_rate": "Autosize", + "design_minimum_flow_rate": 0, + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Condenser Water Loop Supply Inlet", + "outlet_node_name": "Condenser Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always10.0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 10.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always12.8": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 12.8 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always29.4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 29.4 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always7.22": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 7.22 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Min OA Sched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:MixedAir": { + "VAV Sys 1 Cooling Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Fan Outlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Mixed Air Nodes" + }, + "VAV Sys 1 Heating Coil Air Temp Manager": { + "control_variable": "Temperature", + "fan_inlet_node_name": "VAV Sys 1 Heating Coil Outlet", + "fan_outlet_node_name": "VAV Sys 1 Supply Fan Outlet", + "reference_setpoint_node_name": "VAV Sys 1 Supply Path Inlet", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Heating Coil Outlet" + } + }, + "SetpointManager:OutdoorAirReset": { + "Hot Water Loop Temp Manager": { + "control_variable": "Temperature", + "outdoor_high_temperature": 10, + "outdoor_low_temperature": -6.7, + "setpoint_at_outdoor_high_temperature": 65.6, + "setpoint_at_outdoor_low_temperature": 82.2, + "setpoint_node_or_nodelist_name": "Hot Water Loop Supply Setpoint Nodes" + } + }, + "SetpointManager:Scheduled": { + "Chilled Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always7.22", + "setpoint_node_or_nodelist_name": "Chilled Water Loop Supply Setpoint Nodes" + }, + "Condenser Water Loop Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always29.4", + "setpoint_node_or_nodelist_name": "Condenser Water Loop Supply Setpoint Nodes" + }, + "VAV Sys 1 Cooling Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always12.8", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Fan Outlet" + }, + "VAV Sys 1 Heating Supply Air Temp Manager": { + "control_variable": "Temperature", + "schedule_name": "HVACTemplate-Always10.0", + "setpoint_node_or_nodelist_name": "VAV Sys 1 Supply Path Inlet" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Chilled Water Loop Sizing Plant": { + "design_loop_exit_temperature": 7.22, + "loop_design_temperature_difference": 6.67, + "loop_type": "Cooling", + "plant_or_condenser_loop_name": "Chilled Water Loop PlantLoop" + }, + "Condenser Water Loop Sizing Plant": { + "design_loop_exit_temperature": 29.4, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Condenser Water Loop PlantLoop" + }, + "Hot Water Loop Sizing Plant": { + "design_loop_exit_temperature": 82, + "loop_design_temperature_difference": 11, + "loop_type": "Heating", + "plant_or_condenser_loop_name": "Hot Water Loop PlantLoop" + } + }, + "Sizing:System": { + "VAV Sys 1 Sizing System": { + "airloop_name": "VAV Sys 1", + "central_cooling_capacity_control_method": "OnOff", + "central_cooling_design_supply_air_temperature": 12.8, + "central_heating_design_supply_air_temperature": 10.0, + "central_heating_maximum_system_air_flow_ratio": 0.3, + "design_outdoor_air_flow_rate": "Autosize", + "heating_design_capacity_method": "HeatingDesignCapacity", + "precool_design_humidity_ratio": 0.008, + "precool_design_temperature": 11, + "preheat_design_humidity_ratio": 0.008, + "preheat_design_temperature": 7.2, + "system_outdoor_air_method": "ZoneSum", + "type_of_zone_sum_to_use": "NonCoincident", + "zone_maximum_outdoor_air_fraction": 1.0 + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 12.8, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:AirDistributionUnit": { + "SPACE1-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE1-1 Supply Inlet", + "air_terminal_name": "SPACE1-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE2-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE2-1 Supply Inlet", + "air_terminal_name": "SPACE2-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE3-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE3-1 Supply Inlet", + "air_terminal_name": "SPACE3-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE4-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE4-1 Supply Inlet", + "air_terminal_name": "SPACE4-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + }, + "SPACE5-1 ATU": { + "air_distribution_unit_outlet_node_name": "SPACE5-1 Supply Inlet", + "air_terminal_name": "SPACE5-1 VAV Reheat", + "air_terminal_object_type": "AirTerminal:SingleDuct:VAV:Reheat" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supply Inlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supply Inlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supply Inlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supply Inlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supply Inlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 ATU", + "zone_equipment_object_type": "ZoneHVAC:AirDistributionUnit" + } + ] + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_hvac_templates.epJSON new file mode 100644 index 00000000000..9e6d8e069be --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVAVWaterCooled_hvac_templates.epJSON @@ -0,0 +1,222 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:ChilledWaterLoop": { + "Chilled Water Loop": { + "chilled_water_design_setpoint": 7.22, + "chilled_water_pump_configuration": "ConstantPrimaryNoSecondary", + "chilled_water_reset_outdoor_dry_bulb_high": 26.7, + "chilled_water_reset_outdoor_dry_bulb_low": 15.6, + "chilled_water_setpoint_at_outdoor_dry_bulb_high": 6.7, + "chilled_water_setpoint_at_outdoor_dry_bulb_low": 12.2, + "chilled_water_setpoint_reset_type": "None", + "chiller_plant_operation_scheme_type": "Default", + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "minimum_outdoor_dry_bulb_temperature": 7.22, + "primary_chilled_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "secondary_chilled_water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Chiller": { + "Main Chiller": { + "capacity": "Autosize", + "chiller_type": "ElectricReciprocatingChiller", + "condenser_type": "WaterCooled", + "nominal_cop": 3.2, + "priority": "1" + } + }, + "HVACTemplate:Plant:CondenserWaterLoop": { + "Condenser Water Loop": { + "condenser_plant_operation_scheme_type": "Default", + "condenser_water_design_setpoint": 29.4, + "condenser_water_pump_rated_head": 179352, + "pump_control_type": "Intermittent", + "template_plant_loop_type": "CondenserWaterLoop" + } + }, + "HVACTemplate:Plant:HotWaterLoop": { + "Hot Water Loop": { + "hot_water_design_setpoint": 82, + "hot_water_plant_operation_scheme_type": "Default", + "hot_water_pump_configuration": "ConstantFlow", + "hot_water_pump_rated_head": 179352, + "hot_water_reset_outdoor_dry_bulb_high": 10, + "hot_water_reset_outdoor_dry_bulb_low": -6.7, + "hot_water_setpoint_at_outdoor_dry_bulb_high": 65.6, + "hot_water_setpoint_at_outdoor_dry_bulb_low": 82.2, + "hot_water_setpoint_reset_type": "OutdoorAirTemperatureReset", + "pump_control_type": "Intermittent" + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:VAV": { + "VAV Sys 1": { + "cooling_coil_design_setpoint": 12.8, + "cooling_coil_setpoint_reset_type": "None", + "cooling_coil_type": "ChilledWater", + "dehumidification_control_type": "None", + "dehumidification_setpoint": 60.0, + "economizer_lockout": "NoLockout", + "economizer_lower_temperature_limit": 4, + "economizer_type": "DifferentialDryBulb", + "economizer_upper_temperature_limit": 19, + "gas_heating_coil_efficiency": 0.8, + "gas_heating_coil_parasitic_electric_load": 0.0, + "gas_preheat_coil_efficiency": 0.8, + "gas_preheat_coil_parasitic_electric_load": 0.0, + "heat_recovery_type": "None", + "heating_coil_design_setpoint": 10.0, + "heating_coil_setpoint_reset_type": "None", + "heating_coil_type": "HotWater", + "humidifier_rated_capacity": 1e-06, + "humidifier_rated_electric_power": 2690.0, + "humidifier_setpoint": 30.0, + "humidifier_type": "None", + "latent_heat_recovery_effectiveness": 0.65, + "maximum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_control_type": "FixedMinimum", + "minimum_outdoor_air_flow_rate": "Autosize", + "minimum_outdoor_air_schedule_name": "Min OA Sched", + "night_cycle_control": "CycleOnAny", + "preheat_coil_design_setpoint": 7.2, + "preheat_coil_type": "None", + "return_plenum_name": "PLENUM-1", + "sensible_heat_recovery_effectiveness": 0.7, + "sizing_option": "NonCoincident", + "supply_fan_delta_pressure": 600, + "supply_fan_maximum_flow_rate": "Autosize", + "supply_fan_minimum_flow_rate": "Autosize", + "supply_fan_motor_efficiency": 0.9, + "supply_fan_motor_in_air_stream_fraction": 1, + "supply_fan_part_load_power_coefficients": "InletVaneDampers", + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "system_availability_schedule_name": "FanAvailSched" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:VAV": { + "HVACTemplate:Zone:VAV 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:VAV 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:VAV 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:VAV 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:VAV 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "constant_minimum_air_flow_fraction": 0.3, + "damper_heating_action": "Reverse", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_flow_rate_per_zone": 0.0, + "outdoor_air_flow_rate_per_zone_floor_area": 0.0, + "outdoor_air_method": "Flow/Person", + "reheat_coil_type": "HotWater", + "supply_air_maximum_flow_rate": "Autosize", + "template_thermostat_name": "All Zones", + "template_vav_system_name": "VAV Sys 1", + "zone_cooling_design_supply_air_temperature_input_method": "SystemSupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_minimum_air_flow_input_method": "Constant", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_base.epJSON new file mode 100644 index 00000000000..df4b427ee2d --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_base.epJSON @@ -0,0 +1,2932 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Cooling Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Total Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Heating Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Total Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Fan Availability Status" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Total Cooling Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Total Heating Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cooling Electricity Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Heating Electricity Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cooling COP" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Heating COP" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Defrost Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Part Load Ratio" + }, + "Output:Variable 31": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Runtime Fraction" + }, + "Output:Variable 32": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cycling Ratio" + }, + "Output:Variable 33": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Operating Mode" + }, + "Output:Variable 34": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Inlet Temperature" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Crankcase Heater Electricity Rate" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Terminal Unit Cooling Load Rate" + }, + "Output:Variable 37": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Terminal Unit Heating Load Rate" + }, + "Output:Variable 38": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Outlet Temperature" + }, + "Output:Variable 39": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Heat Transfer Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_expanded.epJSON new file mode 100644 index 00000000000..0f4f2dbed1f --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_expanded.epJSON @@ -0,0 +1,4777 @@ +{ + "AirConditioner:VariableRefrigerantFlow": { + "VRF Sys 1 Water Source VRF Heat Pump": { + "basin_heater_setpoint_temperature": 2, + "condenser_inlet_node_name": "VRF Sys 1 Water Source Condenser Inlet Node", + "condenser_outlet_node_name": "VRF Sys 1 Water Source Condenser Outlet Node", + "condenser_type": "WaterCooled", + "cooling_capacity_ratio_boundary_curve_name": "VRF Sys 1 Water Source VRFCoolCapFTBoundary", + "cooling_capacity_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 1 Water Source VRFCoolCapFTHi", + "cooling_capacity_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 1 Water Source VRFCoolCapFT", + "cooling_combination_ratio_correction_factor_curve_name": "VRF Sys 1 Water Source CoolingCombRatio", + "cooling_energy_input_ratio_boundary_curve_name": "VRF Sys 1 Water Source VRFCoolEIRFTBoundary", + "cooling_energy_input_ratio_modifier_function_of_high_part_load_ratio_curve_name": "VRF Sys 1 Water Source CoolingEIRHiPLR", + "cooling_energy_input_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 1 Water Source VRFCoolEIRFTHi", + "cooling_energy_input_ratio_modifier_function_of_low_part_load_ratio_curve_name": "VRF Sys 1 Water Source CoolingEIRLowPLR", + "cooling_energy_input_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 1 Water Source VRFCoolEIRFT", + "cooling_part_load_fraction_correlation_curve_name": "VRF Sys 1 Water Source VRFCPLFFPLR", + "crankcase_heater_power_per_compressor": 33, + "defrost_control": "Timed", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "equivalent_piping_length_used_for_piping_correction_factor_in_cooling_mode": 30, + "equivalent_piping_length_used_for_piping_correction_factor_in_heating_mode": 30, + "evaporative_condenser_air_flow_rate": "Autosize", + "evaporative_condenser_effectiveness": 0.9, + "fuel_type": "Electricity", + "gross_rated_cooling_cop": 3.3, + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 3.4, + "gross_rated_total_cooling_capacity": "Autosize", + "heat_pump_waste_heat_recovery": "No", + "heat_recovery_cooling_capacity_time_constant": 0.45, + "heat_recovery_heating_capacity_time_constant": 0.45, + "heating_capacity_ratio_boundary_curve_name": "VRF Sys 1 Water Source VRFHeatCapFTBoundary", + "heating_capacity_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 1 Water Source VRFHeatCapFTHi", + "heating_capacity_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 1 Water Source VRFHeatCapFT", + "heating_combination_ratio_correction_factor_curve_name": "VRF Sys 1 Water Source HeatingCombRatio", + "heating_energy_input_ratio_boundary_curve_name": "VRF Sys 1 Water Source VRFHeatEIRFTBoundary", + "heating_energy_input_ratio_modifier_function_of_high_part_load_ratio_curve_name": "VRF Sys 1 Water Source HeatingEIRHiPLR", + "heating_energy_input_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 1 Water Source VRFHeatEIRFTHi", + "heating_energy_input_ratio_modifier_function_of_low_part_load_ratio_curve_name": "VRF Sys 1 Water Source HeatingEIRLowPLR", + "heating_energy_input_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 1 Water Source VRFHeatEIRFT", + "heating_part_load_fraction_correlation_curve_name": "VRF Sys 1 Water Source VRFCPLFFPLR", + "heating_performance_curve_outdoor_temperature_type": "DryBulbTemperature", + "master_thermostat_priority_control_type": "LoadPriority", + "maximum_condenser_inlet_node_temperature_in_cooling_mode": 43, + "maximum_condenser_inlet_node_temperature_in_heat_recovery_mode": 45, + "maximum_condenser_inlet_node_temperature_in_heating_mode": 30, + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater": 5, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_condenser_inlet_node_temperature_in_cooling_mode": -6, + "minimum_condenser_inlet_node_temperature_in_heat_recovery_mode": -15, + "minimum_condenser_inlet_node_temperature_in_heating_mode": -20, + "minimum_heat_pump_part_load_ratio": 0.25, + "number_of_compressors": 2, + "piping_correction_factor_for_height_in_cooling_mode_coefficient": -0.000386, + "piping_correction_factor_for_length_in_cooling_mode_curve_name": "VRF Sys 1 Water Source CoolingLengthCorrectionFactor", + "rated_heating_capacity_sizing_ratio": 1, + "ratio_of_compressor_size_to_total_compressor_capacity": 0.5, + "resistive_defrost_heater_capacity": "Autosize", + "vertical_height_used_for_piping_correction_factor": 10, + "water_condenser_volume_flow_rate": "Autosize", + "zone_terminal_unit_list_name": "VRF Sys 1 Water Source TU List" + }, + "VRF Sys 2 Air Source VRF Heat Pump": { + "basin_heater_setpoint_temperature": 2, + "condenser_inlet_node_name": "VRF Sys 2 Air Source Condenser Inlet Node", + "condenser_outlet_node_name": "VRF Sys 2 Air Source Condenser Outlet Node", + "condenser_type": "AirCooled", + "cooling_capacity_ratio_boundary_curve_name": "VRF Sys 2 Air Source VRFCoolCapFTBoundary", + "cooling_capacity_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 2 Air Source VRFCoolCapFTHi", + "cooling_capacity_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 2 Air Source VRFCoolCapFT", + "cooling_combination_ratio_correction_factor_curve_name": "VRF Sys 2 Air Source CoolingCombRatio", + "cooling_energy_input_ratio_boundary_curve_name": "VRF Sys 2 Air Source VRFCoolEIRFTBoundary", + "cooling_energy_input_ratio_modifier_function_of_high_part_load_ratio_curve_name": "VRF Sys 2 Air Source CoolingEIRHiPLR", + "cooling_energy_input_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 2 Air Source VRFCoolEIRFTHi", + "cooling_energy_input_ratio_modifier_function_of_low_part_load_ratio_curve_name": "VRF Sys 2 Air Source CoolingEIRLowPLR", + "cooling_energy_input_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 2 Air Source VRFCoolEIRFT", + "cooling_part_load_fraction_correlation_curve_name": "VRF Sys 2 Air Source VRFCPLFFPLR", + "crankcase_heater_power_per_compressor": 33, + "defrost_control": "Timed", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "equivalent_piping_length_used_for_piping_correction_factor_in_cooling_mode": 30, + "equivalent_piping_length_used_for_piping_correction_factor_in_heating_mode": 30, + "evaporative_condenser_air_flow_rate": "Autosize", + "evaporative_condenser_effectiveness": 0.9, + "fuel_type": "Electricity", + "gross_rated_cooling_cop": 3.3, + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 3.4, + "gross_rated_total_cooling_capacity": "Autosize", + "heat_pump_waste_heat_recovery": "No", + "heat_recovery_cooling_capacity_time_constant": 0.45, + "heat_recovery_heating_capacity_time_constant": 0.45, + "heating_capacity_ratio_boundary_curve_name": "VRF Sys 2 Air Source VRFHeatCapFTBoundary", + "heating_capacity_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 2 Air Source VRFHeatCapFTHi", + "heating_capacity_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 2 Air Source VRFHeatCapFT", + "heating_combination_ratio_correction_factor_curve_name": "VRF Sys 2 Air Source HeatingCombRatio", + "heating_energy_input_ratio_boundary_curve_name": "VRF Sys 2 Air Source VRFHeatEIRFTBoundary", + "heating_energy_input_ratio_modifier_function_of_high_part_load_ratio_curve_name": "VRF Sys 2 Air Source HeatingEIRHiPLR", + "heating_energy_input_ratio_modifier_function_of_high_temperature_curve_name": "VRF Sys 2 Air Source VRFHeatEIRFTHi", + "heating_energy_input_ratio_modifier_function_of_low_part_load_ratio_curve_name": "VRF Sys 2 Air Source HeatingEIRLowPLR", + "heating_energy_input_ratio_modifier_function_of_low_temperature_curve_name": "VRF Sys 2 Air Source VRFHeatEIRFT", + "heating_part_load_fraction_correlation_curve_name": "VRF Sys 2 Air Source VRFCPLFFPLR", + "master_thermostat_priority_control_type": "MasterThermostatPriority", + "maximum_condenser_inlet_node_temperature_in_cooling_mode": 43, + "maximum_condenser_inlet_node_temperature_in_heat_recovery_mode": 45, + "maximum_condenser_inlet_node_temperature_in_heating_mode": 25, + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater": 5, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "minimum_condenser_inlet_node_temperature_in_cooling_mode": -6, + "minimum_condenser_inlet_node_temperature_in_heat_recovery_mode": -15, + "minimum_condenser_inlet_node_temperature_in_heating_mode": -25, + "minimum_heat_pump_part_load_ratio": 0.25, + "number_of_compressors": 2, + "piping_correction_factor_for_height_in_cooling_mode_coefficient": -0.000386, + "piping_correction_factor_for_length_in_cooling_mode_curve_name": "VRF Sys 2 Air Source CoolingLengthCorrectionFactor", + "rated_heating_capacity_sizing_ratio": 1, + "ratio_of_compressor_size_to_total_compressor_capacity": 0.5, + "resistive_defrost_heater_capacity": "Autosize", + "vertical_height_used_for_piping_correction_factor": 10, + "water_condenser_volume_flow_rate": "Autosize", + "zone_name_for_master_thermostat_location": "SPACE5-1", + "zone_terminal_unit_list_name": "VRF Sys 2 Air Source TU List" + } + }, + "AvailabilityManagerAssignmentList": { + "Only Water Loop Availability Managers": {}, + "VRF Sys 1 Water Source Availability Managers": {}, + "VRF Sys 2 Air Source Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "Only Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Bypass Inlet", + "component_name": "Only Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Bypass Outlet" + } + ] + }, + "Only Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Inlet", + "component_name": "Only Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Only Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Outlet Pipe Inlet", + "component_name": "Only Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Outlet" + } + ] + }, + "Only Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Bypass Inlet", + "component_name": "Only Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Supply Bypass Outlet" + } + ] + }, + "Only Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Inlet", + "component_name": "Only Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Only Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Only Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Outlet Pipe Inlet", + "component_name": "Only Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Supply Outlet" + } + ] + }, + "VRF Sys 1 Water Source VRF Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "VRF Sys 1 Water Source Condenser Inlet Node", + "component_name": "VRF Sys 1 Water Source VRF Heat Pump", + "component_object_type": "AirConditioner:VariableRefrigerantFlow", + "component_outlet_node_name": "VRF Sys 1 Water Source Condenser Outlet Node" + } + ] + } + }, + "BranchList": { + "Only Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Only Water Loop Demand Inlet Branch" + }, + { + "branch_name": "VRF Sys 1 Water Source VRF Condenser Branch" + }, + { + "branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Only Water Loop Demand Outlet Branch" + } + ] + }, + "Only Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Only Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Only Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Only Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:DX:VariableRefrigerantFlow": { + "SPACE1-1 VRF Cooling Coil": { + "coil_air_inlet_node": "SPACE1-1 Supply Fan Outlet", + "coil_air_outlet_node": "SPACE1-1 VRF Cooling Coil Outlet", + "cooling_capacity_modifier_curve_function_of_flow_fraction_name": "SPACE1-1 VRF Cooling Coil Cap-FF", + "cooling_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE1-1 VRF Cooling Coil Cap-FT", + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize" + }, + "SPACE2-1 VRF Cooling Coil": { + "coil_air_inlet_node": "SPACE2-1 Supply Fan Outlet", + "coil_air_outlet_node": "SPACE2-1 VRF Cooling Coil Outlet", + "cooling_capacity_modifier_curve_function_of_flow_fraction_name": "SPACE2-1 VRF Cooling Coil Cap-FF", + "cooling_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE2-1 VRF Cooling Coil Cap-FT", + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize" + }, + "SPACE3-1 VRF Cooling Coil": { + "coil_air_inlet_node": "SPACE3-1 Supply Fan Outlet", + "coil_air_outlet_node": "SPACE3-1 VRF Cooling Coil Outlet", + "cooling_capacity_modifier_curve_function_of_flow_fraction_name": "SPACE3-1 VRF Cooling Coil Cap-FF", + "cooling_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE3-1 VRF Cooling Coil Cap-FT", + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize" + }, + "SPACE4-1 VRF Cooling Coil": { + "coil_air_inlet_node": "SPACE4-1 Supply Fan Outlet", + "coil_air_outlet_node": "SPACE4-1 VRF Cooling Coil Outlet", + "cooling_capacity_modifier_curve_function_of_flow_fraction_name": "SPACE4-1 VRF Cooling Coil Cap-FF", + "cooling_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE4-1 VRF Cooling Coil Cap-FT", + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize" + }, + "SPACE5-1 VRF Cooling Coil": { + "coil_air_inlet_node": "SPACE5-1 Supply Fan Outlet", + "coil_air_outlet_node": "SPACE5-1 VRF Cooling Coil Outlet", + "cooling_capacity_modifier_curve_function_of_flow_fraction_name": "SPACE5-1 VRF Cooling Coil Cap-FF", + "cooling_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE5-1 VRF Cooling Coil Cap-FT", + "gross_rated_sensible_heat_ratio": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize" + } + }, + "Coil:Heating:DX:VariableRefrigerantFlow": { + "SPACE1-1 VRF Heating Coil": { + "coil_air_inlet_node": "SPACE1-1 VRF Cooling Coil Outlet", + "coil_air_outlet_node": "SPACE1-1 VRF Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "heating_capacity_modifier_function_of_flow_fraction_curve_name": "SPACE1-1 VRF Heating Coil Cap-FF", + "heating_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE1-1 VRF Heating Coil Cap-FT", + "rated_air_flow_rate": "Autosize" + }, + "SPACE2-1 VRF Heating Coil": { + "coil_air_inlet_node": "SPACE2-1 VRF Cooling Coil Outlet", + "coil_air_outlet_node": "SPACE2-1 VRF Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "heating_capacity_modifier_function_of_flow_fraction_curve_name": "SPACE2-1 VRF Heating Coil Cap-FF", + "heating_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE2-1 VRF Heating Coil Cap-FT", + "rated_air_flow_rate": "Autosize" + }, + "SPACE3-1 VRF Heating Coil": { + "coil_air_inlet_node": "SPACE3-1 VRF Cooling Coil Outlet", + "coil_air_outlet_node": "SPACE3-1 VRF Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "heating_capacity_modifier_function_of_flow_fraction_curve_name": "SPACE3-1 VRF Heating Coil Cap-FF", + "heating_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE3-1 VRF Heating Coil Cap-FT", + "rated_air_flow_rate": "Autosize" + }, + "SPACE4-1 VRF Heating Coil": { + "coil_air_inlet_node": "SPACE4-1 VRF Cooling Coil Outlet", + "coil_air_outlet_node": "SPACE4-1 VRF Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "heating_capacity_modifier_function_of_flow_fraction_curve_name": "SPACE4-1 VRF Heating Coil Cap-FF", + "heating_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE4-1 VRF Heating Coil Cap-FT", + "rated_air_flow_rate": "Autosize" + }, + "SPACE5-1 VRF Heating Coil": { + "coil_air_inlet_node": "SPACE5-1 VRF Cooling Coil Outlet", + "coil_air_outlet_node": "SPACE5-1 VRF Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "heating_capacity_modifier_function_of_flow_fraction_curve_name": "SPACE5-1 VRF Heating Coil Cap-FF", + "heating_capacity_ratio_modifier_function_of_temperature_curve_name": "SPACE5-1 VRF Heating Coil Cap-FT", + "rated_air_flow_rate": "Autosize" + } + }, + "Connector:Mixer": { + "Only Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "VRF Sys 1 Water Source VRF Condenser Branch" + } + ], + "outlet_branch_name": "Only Water Loop Demand Outlet Branch" + }, + "Only Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Only Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Only Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Only Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "VRF Sys 1 Water Source VRF Condenser Branch" + } + ], + "inlet_branch_name": "Only Water Loop Demand Inlet Branch" + }, + "Only Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Only Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Only Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Only Water Loop Demand Side Connectors": { + "connector_1_name": "Only Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Only Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Only Water Loop Supply Side Connectors": { + "connector_1_name": "Only Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Only Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:Biquadratic": { + "VRF Sys 1 Water Source CoolingLengthCorrectionFactor": { + "coefficient1_constant": 1.0693794, + "coefficient2_x": -0.0014951, + "coefficient3_x_2": 2.56e-06, + "coefficient4_y": -0.1151104, + "coefficient5_y_2": 0.0511169, + "coefficient6_x_y": -0.0004369, + "input_unit_type_for_x": "Distance", + "input_unit_type_for_y": "Dimensionless", + "maximum_value_of_x": 175, + "maximum_value_of_y": 1.5, + "minimum_value_of_x": 8, + "minimum_value_of_y": 0.5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCoolCapFT": { + "coefficient1_constant": 0.576856477, + "coefficient2_x": 0.017450222, + "coefficient3_x_2": 0.00058326, + "coefficient4_y": 1.15563e-07, + "coefficient5_y_2": 7.61504e-09, + "coefficient6_x_y": -1.1503e-08, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 23, + "minimum_value_of_x": 15, + "minimum_value_of_y": -5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCoolCapFTHi": { + "coefficient1_constant": 0.6861551, + "coefficient2_x": 0.0207869, + "coefficient3_x_2": 0.0005445, + "coefficient4_y": -0.0016098, + "coefficient5_y_2": -6.254e-07, + "coefficient6_x_y": -0.000339, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 43, + "minimum_value_of_x": 15, + "minimum_value_of_y": 16, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCoolEIRFT": { + "coefficient1_constant": 0.989010541, + "coefficient2_x": -0.02347967, + "coefficient3_x_2": 0.000199711, + "coefficient4_y": 0.005968336, + "coefficient5_y_2": -1.0289e-07, + "coefficient6_x_y": -0.00015686, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 23, + "minimum_value_of_x": 15, + "minimum_value_of_y": -5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCoolEIRFTHi": { + "coefficient1_constant": 0.18293171, + "coefficient2_x": 0.01635442, + "coefficient3_x_2": -0.0003505, + "coefficient4_y": 0.02375694, + "coefficient5_y_2": 0.00017854, + "coefficient6_x_y": -0.0006177, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 43, + "minimum_value_of_x": 15, + "minimum_value_of_y": 16, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFHeatCapFT": { + "coefficient1_constant": 1.014599599, + "coefficient2_x": -0.002506703, + "coefficient3_x_2": -0.000141599, + "coefficient4_y": 0.026931595, + "coefficient5_y_2": 1.83538e-06, + "coefficient6_x_y": -0.000358147, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -20, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFHeatCapFTHi": { + "coefficient1_constant": 1.161134821, + "coefficient2_x": 0.027478868, + "coefficient3_x_2": -0.00168795, + "coefficient4_y": 0.001783378, + "coefficient5_y_2": 2.03208e-06, + "coefficient6_x_y": -6.8969e-05, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -10, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFHeatEIRFT": { + "coefficient1_constant": 0.87465501, + "coefficient2_x": -0.01319754, + "coefficient3_x_2": 0.00110307, + "coefficient4_y": -0.0133118, + "coefficient5_y_2": 0.00089017, + "coefficient6_x_y": -0.00012766, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 12, + "minimum_value_of_x": 15, + "minimum_value_of_y": -20, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFHeatEIRFTHi": { + "coefficient1_constant": 2.504005146, + "coefficient2_x": -0.05736767, + "coefficient3_x_2": 4.07336e-05, + "coefficient4_y": -0.12959669, + "coefficient5_y_2": 0.00135839, + "coefficient6_x_y": 0.00317047, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -10, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source CoolingLengthCorrectionFactor": { + "coefficient1_constant": 1.0693794, + "coefficient2_x": -0.0014951, + "coefficient3_x_2": 2.56e-06, + "coefficient4_y": -0.1151104, + "coefficient5_y_2": 0.0511169, + "coefficient6_x_y": -0.0004369, + "input_unit_type_for_x": "Distance", + "input_unit_type_for_y": "Dimensionless", + "maximum_value_of_x": 175, + "maximum_value_of_y": 1.5, + "minimum_value_of_x": 8, + "minimum_value_of_y": 0.5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCoolCapFT": { + "coefficient1_constant": 0.576856477, + "coefficient2_x": 0.017450222, + "coefficient3_x_2": 0.00058326, + "coefficient4_y": 1.15563e-07, + "coefficient5_y_2": 7.61504e-09, + "coefficient6_x_y": -1.1503e-08, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 23, + "minimum_value_of_x": 15, + "minimum_value_of_y": -5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCoolCapFTHi": { + "coefficient1_constant": 0.6861551, + "coefficient2_x": 0.0207869, + "coefficient3_x_2": 0.0005445, + "coefficient4_y": -0.0016098, + "coefficient5_y_2": -6.254e-07, + "coefficient6_x_y": -0.000339, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 43, + "minimum_value_of_x": 15, + "minimum_value_of_y": 16, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCoolEIRFT": { + "coefficient1_constant": 0.989010541, + "coefficient2_x": -0.02347967, + "coefficient3_x_2": 0.000199711, + "coefficient4_y": 0.005968336, + "coefficient5_y_2": -1.0289e-07, + "coefficient6_x_y": -0.00015686, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 23, + "minimum_value_of_x": 15, + "minimum_value_of_y": -5, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCoolEIRFTHi": { + "coefficient1_constant": 0.18293171, + "coefficient2_x": 0.01635442, + "coefficient3_x_2": -0.0003505, + "coefficient4_y": 0.02375694, + "coefficient5_y_2": 0.00017854, + "coefficient6_x_y": -0.0006177, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 24, + "maximum_value_of_y": 43, + "minimum_value_of_x": 15, + "minimum_value_of_y": 16, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFHeatCapFT": { + "coefficient1_constant": 1.014599599, + "coefficient2_x": -0.002506703, + "coefficient3_x_2": -0.000141599, + "coefficient4_y": 0.026931595, + "coefficient5_y_2": 1.83538e-06, + "coefficient6_x_y": -0.000358147, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -20, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFHeatCapFTHi": { + "coefficient1_constant": 1.161134821, + "coefficient2_x": 0.027478868, + "coefficient3_x_2": -0.00168795, + "coefficient4_y": 0.001783378, + "coefficient5_y_2": 2.03208e-06, + "coefficient6_x_y": -6.8969e-05, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -10, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFHeatEIRFT": { + "coefficient1_constant": 0.87465501, + "coefficient2_x": -0.01319754, + "coefficient3_x_2": 0.00110307, + "coefficient4_y": -0.0133118, + "coefficient5_y_2": 0.00089017, + "coefficient6_x_y": -0.00012766, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 12, + "minimum_value_of_x": 15, + "minimum_value_of_y": -20, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFHeatEIRFTHi": { + "coefficient1_constant": 2.504005146, + "coefficient2_x": -0.05736767, + "coefficient3_x_2": 4.07336e-05, + "coefficient4_y": -0.12959669, + "coefficient5_y_2": 0.00135839, + "coefficient6_x_y": 0.00317047, + "input_unit_type_for_x": "Temperature", + "input_unit_type_for_y": "Temperature", + "maximum_value_of_x": 27, + "maximum_value_of_y": 15, + "minimum_value_of_x": 15, + "minimum_value_of_y": -10, + "output_unit_type": "Dimensionless" + } + }, + "Curve:Cubic": { + "SPACE1-1 VRF Cooling Coil Cap-FT": { + "coefficient1_constant": 0.504547273506488, + "coefficient2_x": 0.0288891279198444, + "coefficient3_x_2": -1.0819418650677e-05, + "coefficient4_x_3": 1.01359395177008e-05, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE1-1 VRF Heating Coil Cap-FT": { + "coefficient1_constant": -0.390708928227928, + "coefficient2_x": 0.261815023760162, + "coefficient3_x_2": -0.0130431603151873, + "coefficient4_x_3": 0.000178131745997821, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE2-1 VRF Cooling Coil Cap-FT": { + "coefficient1_constant": 0.504547273506488, + "coefficient2_x": 0.0288891279198444, + "coefficient3_x_2": -1.0819418650677e-05, + "coefficient4_x_3": 1.01359395177008e-05, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE2-1 VRF Heating Coil Cap-FT": { + "coefficient1_constant": -0.390708928227928, + "coefficient2_x": 0.261815023760162, + "coefficient3_x_2": -0.0130431603151873, + "coefficient4_x_3": 0.000178131745997821, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE3-1 VRF Cooling Coil Cap-FT": { + "coefficient1_constant": 0.504547273506488, + "coefficient2_x": 0.0288891279198444, + "coefficient3_x_2": -1.0819418650677e-05, + "coefficient4_x_3": 1.01359395177008e-05, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE3-1 VRF Heating Coil Cap-FT": { + "coefficient1_constant": -0.390708928227928, + "coefficient2_x": 0.261815023760162, + "coefficient3_x_2": -0.0130431603151873, + "coefficient4_x_3": 0.000178131745997821, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE4-1 VRF Cooling Coil Cap-FT": { + "coefficient1_constant": 0.504547273506488, + "coefficient2_x": 0.0288891279198444, + "coefficient3_x_2": -1.0819418650677e-05, + "coefficient4_x_3": 1.01359395177008e-05, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE4-1 VRF Heating Coil Cap-FT": { + "coefficient1_constant": -0.390708928227928, + "coefficient2_x": 0.261815023760162, + "coefficient3_x_2": -0.0130431603151873, + "coefficient4_x_3": 0.000178131745997821, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE5-1 VRF Cooling Coil Cap-FT": { + "coefficient1_constant": 0.504547273506488, + "coefficient2_x": 0.0288891279198444, + "coefficient3_x_2": -1.0819418650677e-05, + "coefficient4_x_3": 1.01359395177008e-05, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "SPACE5-1 VRF Heating Coil Cap-FT": { + "coefficient1_constant": -0.390708928227928, + "coefficient2_x": 0.261815023760162, + "coefficient3_x_2": -0.0130431603151873, + "coefficient4_x_3": 0.000178131745997821, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 1.5, + "maximum_value_of_x": 50.0, + "minimum_curve_output": 0.5, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source CoolingEIRLowPLR": { + "coefficient1_constant": 0.4628123, + "coefficient2_x": -1.0402406, + "coefficient3_x_2": 2.17491, + "coefficient4_x_3": -0.5974817, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 1, + "minimum_value_of_x": 0, + "output_unit_type": "Temperature" + }, + "VRF Sys 1 Water Source HeatingEIRLowPLR": { + "coefficient1_constant": 0.1400093, + "coefficient2_x": 0.6415002, + "coefficient3_x_2": 0.1339047, + "coefficient4_x_3": 0.0845859, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1, + "minimum_value_of_x": 0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCoolCapFTBoundary": { + "coefficient1_constant": 25.73473775, + "coefficient2_x": -0.03150043, + "coefficient3_x_2": -0.01416595, + "coefficient4_x_3": 0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 30, + "minimum_value_of_x": 11, + "output_unit_type": "Temperature" + }, + "VRF Sys 1 Water Source VRFCoolEIRFTBoundary": { + "coefficient1_constant": 25.73473775, + "coefficient2_x": -0.03150043, + "coefficient3_x_2": -0.01416595, + "coefficient4_x_3": 0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 24, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + }, + "VRF Sys 1 Water Source VRFHeatCapFTBoundary": { + "coefficient1_constant": -7.6000882, + "coefficient2_x": 3.05090016, + "coefficient3_x_2": -0.1162844, + "coefficient4_x_3": 0.0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 27, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + }, + "VRF Sys 1 Water Source VRFHeatEIRFTBoundary": { + "coefficient1_constant": -7.6000882, + "coefficient2_x": 3.05090016, + "coefficient3_x_2": -0.1162844, + "coefficient4_x_3": 0.0, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 15, + "maximum_value_of_x": 27, + "minimum_curve_output": -20, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + }, + "VRF Sys 2 Air Source CoolingEIRLowPLR": { + "coefficient1_constant": 0.4628123, + "coefficient2_x": -1.0402406, + "coefficient3_x_2": 2.17491, + "coefficient4_x_3": -0.5974817, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 1, + "minimum_value_of_x": 0, + "output_unit_type": "Temperature" + }, + "VRF Sys 2 Air Source HeatingEIRLowPLR": { + "coefficient1_constant": 0.1400093, + "coefficient2_x": 0.6415002, + "coefficient3_x_2": 0.1339047, + "coefficient4_x_3": 0.0845859, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1, + "minimum_value_of_x": 0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCoolCapFTBoundary": { + "coefficient1_constant": 25.73473775, + "coefficient2_x": -0.03150043, + "coefficient3_x_2": -0.01416595, + "coefficient4_x_3": 0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 30, + "minimum_value_of_x": 11, + "output_unit_type": "Temperature" + }, + "VRF Sys 2 Air Source VRFCoolEIRFTBoundary": { + "coefficient1_constant": 25.73473775, + "coefficient2_x": -0.03150043, + "coefficient3_x_2": -0.01416595, + "coefficient4_x_3": 0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 24, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + }, + "VRF Sys 2 Air Source VRFHeatCapFTBoundary": { + "coefficient1_constant": -7.6000882, + "coefficient2_x": 3.05090016, + "coefficient3_x_2": -0.1162844, + "coefficient4_x_3": 0.0, + "input_unit_type_for_x": "Temperature", + "maximum_value_of_x": 27, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + }, + "VRF Sys 2 Air Source VRFHeatEIRFTBoundary": { + "coefficient1_constant": -7.6000882, + "coefficient2_x": 3.05090016, + "coefficient3_x_2": -0.1162844, + "coefficient4_x_3": 0.0, + "input_unit_type_for_x": "Temperature", + "maximum_curve_output": 15, + "maximum_value_of_x": 27, + "minimum_curve_output": -20, + "minimum_value_of_x": 15, + "output_unit_type": "Temperature" + } + }, + "Curve:Linear": { + "VRF Sys 1 Water Source CoolingCombRatio": { + "coefficient1_constant": 0.618055, + "coefficient2_x": 0.381945, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.2, + "maximum_value_of_x": 1.5, + "minimum_curve_output": 1.0, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source HeatingCombRatio": { + "coefficient1_constant": 0.96034, + "coefficient2_x": 0.03966, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.023, + "maximum_value_of_x": 1.5, + "minimum_curve_output": 1.0, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source CoolingCombRatio": { + "coefficient1_constant": 0.618055, + "coefficient2_x": 0.381945, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.2, + "maximum_value_of_x": 1.5, + "minimum_curve_output": 1.0, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source HeatingCombRatio": { + "coefficient1_constant": 0.96034, + "coefficient2_x": 0.03966, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.023, + "maximum_value_of_x": 1.5, + "minimum_curve_output": 1.0, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + }, + "SPACE1-1 VRF Cooling Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE1-1 VRF Heating Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 VRF Cooling Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE2-1 VRF Heating Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 VRF Cooling Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE3-1 VRF Heating Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 VRF Cooling Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE4-1 VRF Heating Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 VRF Cooling Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "SPACE5-1 VRF Heating Coil Cap-FF": { + "coefficient1_constant": 0.8, + "coefficient2_x": 0.2, + "coefficient3_x_2": 0, + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 0.5 + }, + "VRF Sys 1 Water Source CoolingEIRHiPLR": { + "coefficient1_constant": 1.0, + "coefficient2_x": 0.0, + "coefficient3_x_2": 0.0, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source HeatingEIRHiPLR": { + "coefficient1_constant": 2.4294355, + "coefficient2_x": -2.235887, + "coefficient3_x_2": 0.8064516, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 1 Water Source VRFCPLFFPLR": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0.0, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.0, + "maximum_value_of_x": 1.0, + "minimum_curve_output": 0.85, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source CoolingEIRHiPLR": { + "coefficient1_constant": 1.0, + "coefficient2_x": 0.0, + "coefficient3_x_2": 0.0, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source HeatingEIRHiPLR": { + "coefficient1_constant": 2.4294355, + "coefficient2_x": -2.235887, + "coefficient3_x_2": 0.8064516, + "input_unit_type_for_x": "Dimensionless", + "maximum_value_of_x": 1.5, + "minimum_value_of_x": 1.0, + "output_unit_type": "Dimensionless" + }, + "VRF Sys 2 Air Source VRFCPLFFPLR": { + "coefficient1_constant": 0.85, + "coefficient2_x": 0.15, + "coefficient3_x_2": 0.0, + "input_unit_type_for_x": "Dimensionless", + "maximum_curve_output": 1.0, + "maximum_value_of_x": 1.0, + "minimum_curve_output": 0.85, + "minimum_value_of_x": 0.0, + "output_unit_type": "Dimensionless" + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Only Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Only Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "Main Tower Outdoor Air Inlet": {}, + "VRF Sys 2 Air Source Condenser Inlet Node": {} + }, + "OutdoorAir:NodeList": { + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 18": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Cooling Electricity Rate" + }, + "Output:Variable 19": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Total Cooling Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 20": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Heating Electricity Rate" + }, + "Output:Variable 21": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Total Heating Rate" + }, + "Output:Variable 22": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone VRF Air Terminal Fan Availability Status" + }, + "Output:Variable 23": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Total Cooling Rate" + }, + "Output:Variable 24": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Total Heating Rate" + }, + "Output:Variable 25": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cooling Electricity Rate" + }, + "Output:Variable 26": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Heating Electricity Rate" + }, + "Output:Variable 27": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cooling COP" + }, + "Output:Variable 28": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Heating COP" + }, + "Output:Variable 29": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Defrost Electricity Rate" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 30": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Part Load Ratio" + }, + "Output:Variable 31": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Runtime Fraction" + }, + "Output:Variable 32": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Cycling Ratio" + }, + "Output:Variable 33": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Operating Mode" + }, + "Output:Variable 34": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Inlet Temperature" + }, + "Output:Variable 35": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Crankcase Heater Electricity Rate" + }, + "Output:Variable 36": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Terminal Unit Cooling Load Rate" + }, + "Output:Variable 37": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Terminal Unit Heating Load Rate" + }, + "Output:Variable 38": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Outlet Temperature" + }, + "Output:Variable 39": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "VRF Heat Pump Condenser Heat Transfer Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "IDF" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Only Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Only Water Loop Demand Bypass Inlet", + "outlet_node_name": "Only Water Loop Demand Bypass Outlet" + }, + "Only Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Only Water Loop Demand Inlet", + "outlet_node_name": "Only Water Loop Demand Inlet Pipe Outlet" + }, + "Only Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Only Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Only Water Loop Demand Outlet" + }, + "Only Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Only Water Loop Supply Bypass Inlet", + "outlet_node_name": "Only Water Loop Supply Bypass Outlet" + }, + "Only Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Only Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Only Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Only Water Loop Cooling All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + }, + "Only Water Loop Heating All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Only Water Loop Cool Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Only Water Loop Cooling All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Only Water Loop Heat Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Only Water Loop Heating All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Only Water Loop Operation": { + "control_scheme_1_name": "Only Water Loop Heat Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1", + "control_scheme_2_name": "Only Water Loop Cool Operation All Hours", + "control_scheme_2_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_2_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Only Water Loop PlantLoop": { + "demand_side_branch_list_name": "Only Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Only Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Only Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Only Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Only Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Only Water Loop Operation", + "plant_loop_demand_calculation_scheme": "DualSetpointDeadband", + "plant_side_branch_list_name": "Only Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Only Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Only Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Only Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Only Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Only Water Loop Supply Inlet", + "outlet_node_name": "Only Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 1": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "FanAvailSched": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always20": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 20.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always30": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 30.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:Scheduled:DualSetpoint": { + "Only Water Loop Temp Manager": { + "control_variable": "Temperature", + "high_setpoint_schedule_name": "HVACTemplate-Always30", + "low_setpoint_schedule_name": "HVACTemplate-Always20", + "setpoint_node_or_nodelist_name": "Only Water Loop Supply Setpoint Nodes" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Only Water Loop Sizing Plant": { + "design_loop_exit_temperature": 30, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Only Water Loop PlantLoop" + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 VRF Heating Coil Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 VRF Heating Coil Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 VRF Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 VRF Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 VRF Heating Coil Outlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 VRF Terminal Unit", + "zone_equipment_object_type": "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 VRF Terminal Unit", + "zone_equipment_object_type": "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 VRF Terminal Unit", + "zone_equipment_object_type": "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 VRF Terminal Unit", + "zone_equipment_object_type": "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 VRF Terminal Unit", + "zone_equipment_object_type": "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow" + } + ] + } + }, + "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow": { + "SPACE1-1 VRF Terminal Unit": { + "cooling_coil_object_name": "SPACE1-1 VRF Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:VariableRefrigerantFlow", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heating_coil_object_name": "SPACE1-1 VRF Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:VariableRefrigerantFlow", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outside_air_mixer_object_name": "SPACE1-1 OA Mixing Box", + "outside_air_mixer_object_type": "OutdoorAir:Mixer", + "rated_heating_capacity_sizing_ratio": 1, + "supply_air_fan_object_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_air_fan_placement": "BlowThrough", + "terminal_unit_air_inlet_node_name": "SPACE1-1 Return", + "terminal_unit_air_outlet_node_name": "SPACE1-1 VRF Heating Coil Outlet" + }, + "SPACE2-1 VRF Terminal Unit": { + "cooling_coil_object_name": "SPACE2-1 VRF Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:VariableRefrigerantFlow", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heating_coil_object_name": "SPACE2-1 VRF Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:VariableRefrigerantFlow", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outside_air_mixer_object_name": "SPACE2-1 OA Mixing Box", + "outside_air_mixer_object_type": "OutdoorAir:Mixer", + "rated_heating_capacity_sizing_ratio": 1, + "supply_air_fan_object_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_air_fan_placement": "BlowThrough", + "terminal_unit_air_inlet_node_name": "SPACE2-1 Return", + "terminal_unit_air_outlet_node_name": "SPACE2-1 VRF Heating Coil Outlet" + }, + "SPACE3-1 VRF Terminal Unit": { + "cooling_coil_object_name": "SPACE3-1 VRF Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:VariableRefrigerantFlow", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heating_coil_object_name": "SPACE3-1 VRF Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:VariableRefrigerantFlow", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outside_air_mixer_object_name": "SPACE3-1 OA Mixing Box", + "outside_air_mixer_object_type": "OutdoorAir:Mixer", + "rated_heating_capacity_sizing_ratio": 1, + "supply_air_fan_object_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_air_fan_placement": "BlowThrough", + "terminal_unit_air_inlet_node_name": "SPACE3-1 Return", + "terminal_unit_air_outlet_node_name": "SPACE3-1 VRF Heating Coil Outlet" + }, + "SPACE4-1 VRF Terminal Unit": { + "cooling_coil_object_name": "SPACE4-1 VRF Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:VariableRefrigerantFlow", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heating_coil_object_name": "SPACE4-1 VRF Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:VariableRefrigerantFlow", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outside_air_mixer_object_name": "SPACE4-1 OA Mixing Box", + "outside_air_mixer_object_type": "OutdoorAir:Mixer", + "rated_heating_capacity_sizing_ratio": 1, + "supply_air_fan_object_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_air_fan_placement": "BlowThrough", + "terminal_unit_air_inlet_node_name": "SPACE4-1 Return", + "terminal_unit_air_outlet_node_name": "SPACE4-1 VRF Heating Coil Outlet" + }, + "SPACE5-1 VRF Terminal Unit": { + "cooling_coil_object_name": "SPACE5-1 VRF Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:DX:VariableRefrigerantFlow", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heating_coil_object_name": "SPACE5-1 VRF Heating Coil", + "heating_coil_object_type": "Coil:Heating:DX:VariableRefrigerantFlow", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outside_air_mixer_object_name": "SPACE5-1 OA Mixing Box", + "outside_air_mixer_object_type": "OutdoorAir:Mixer", + "rated_heating_capacity_sizing_ratio": 1, + "supply_air_fan_object_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_air_fan_placement": "BlowThrough", + "terminal_unit_air_inlet_node_name": "SPACE5-1 Return", + "terminal_unit_air_outlet_node_name": "SPACE5-1 VRF Heating Coil Outlet" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneTerminalUnitList": { + "VRF Sys 1 Water Source ZoneTerminalUnitList": { + "terminal_units": [ + { + "zone_terminal_unit_name": "SPACE1-1 VRF Terminal Unit" + }, + { + "zone_terminal_unit_name": "SPACE2-1 VRF Terminal Unit" + }, + { + "zone_terminal_unit_name": "SPACE3-1 VRF Terminal Unit" + }, + { + "zone_terminal_unit_name": "SPACE4-1 VRF Terminal Unit" + } + ], + "zone_terminal_unit_list_name": "VRF Sys 1 Water Source TU List" + }, + "VRF Sys 2 Air Source ZoneTerminalUnitList": { + "terminal_units": [ + { + "zone_terminal_unit_name": "SPACE5-1 VRF Terminal Unit" + } + ], + "zone_terminal_unit_list_name": "VRF Sys 2 Air Source TU List" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_hvac_templates.epJSON new file mode 100644 index 00000000000..3b853e7808a --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneVRF_hvac_templates.epJSON @@ -0,0 +1,282 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:MixedWaterLoop": { + "Only Water Loop": { + "high_temperature_design_setpoint": 30, + "low_temperature_design_setpoint": 20, + "operation_scheme_type": "Default", + "pump_control_type": "Intermittent", + "water_pump_configuration": "ConstantFlow", + "water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:System:VRF": { + "VRF Sys 1 Water Source": { + "basin_heater_setpoint_temperature": 2, + "condenser_type": "WaterCooled", + "crankcase_heater_power_per_compressor": 33, + "defrost_control": "Timed", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "equivalent_piping_length_used_for_piping_correction_factor_in_cooling_mode": 30, + "equivalent_piping_length_used_for_piping_correction_factor_in_heating_mode": 30, + "evaporative_condenser_air_flow_rate": "Autosize", + "evaporative_condenser_effectiveness": 0.9, + "fuel_type": "Electricity", + "gross_rated_cooling_cop": 3.3, + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 3.4, + "gross_rated_total_cooling_capacity": "Autosize", + "heat_pump_waste_heat_recovery": "No", + "master_thermostat_priority_control_type": "LoadPriority", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater": 5, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "maximum_outdoor_temperature_in_cooling_mode": 43, + "maximum_outdoor_temperature_in_heat_recovery_mode": 45, + "maximum_outdoor_temperature_in_heating_mode": 30, + "minimum_heat_pump_part_load_ratio": 0.15, + "minimum_outdoor_temperature_in_cooling_mode": -6, + "minimum_outdoor_temperature_in_heat_recovery_mode": -15, + "minimum_outdoor_temperature_in_heating_mode": -20, + "number_of_compressors": 2, + "rated_heating_capacity_sizing_ratio": 1, + "ratio_of_compressor_size_to_total_compressor_capacity": 0.5, + "resistive_defrost_heater_capacity": "Autosize", + "vertical_height_used_for_piping_correction_factor": 10, + "water_condenser_volume_flow_rate": "Autosize" + }, + "VRF Sys 2 Air Source": { + "basin_heater_setpoint_temperature": 2, + "condenser_type": "AirCooled", + "crankcase_heater_power_per_compressor": 33, + "defrost_control": "Timed", + "defrost_strategy": "Resistive", + "defrost_time_period_fraction": 0.058333, + "equivalent_piping_length_used_for_piping_correction_factor_in_cooling_mode": 30, + "equivalent_piping_length_used_for_piping_correction_factor_in_heating_mode": 30, + "evaporative_condenser_air_flow_rate": "Autosize", + "evaporative_condenser_effectiveness": 0.9, + "fuel_type": "Electricity", + "gross_rated_cooling_cop": 3.3, + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 3.4, + "gross_rated_total_cooling_capacity": "Autosize", + "heat_pump_waste_heat_recovery": "No", + "master_thermostat_priority_control_type": "MasterThermostatPriority", + "maximum_outdoor_dry_bulb_temperature_for_crankcase_heater": 5, + "maximum_outdoor_dry_bulb_temperature_for_defrost_operation": 5, + "maximum_outdoor_temperature_in_cooling_mode": 43, + "maximum_outdoor_temperature_in_heat_recovery_mode": 45, + "maximum_outdoor_temperature_in_heating_mode": 25, + "minimum_heat_pump_part_load_ratio": 0.15, + "minimum_outdoor_temperature_in_cooling_mode": -6, + "minimum_outdoor_temperature_in_heat_recovery_mode": -15, + "minimum_outdoor_temperature_in_heating_mode": -25, + "number_of_compressors": 2, + "rated_heating_capacity_sizing_ratio": 1, + "ratio_of_compressor_size_to_total_compressor_capacity": 0.5, + "resistive_defrost_heater_capacity": "Autosize", + "vertical_height_used_for_piping_correction_factor": 10, + "water_condenser_volume_flow_rate": "Autosize", + "zone_name_for_master_thermostat_location": "SPACE5-1" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:VRF": { + "HVACTemplate:Zone:VRF 1": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "VariableRefrigerantFlowDX", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_type": "VariableRefrigerantFlowDX", + "heating_coil_type": "VariableRefrigerantFlowDX", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "rated_total_heating_capacity_sizing_ratio": 1, + "supply_air_fan_placement": "BlowThrough", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "template_vrf_system_name": "VRF Sys 1 Water Source", + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:VRF 2": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "VariableRefrigerantFlowDX", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_type": "VariableRefrigerantFlowDX", + "heating_coil_type": "VariableRefrigerantFlowDX", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "rated_total_heating_capacity_sizing_ratio": 1, + "supply_air_fan_placement": "BlowThrough", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "template_vrf_system_name": "VRF Sys 1 Water Source", + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:VRF 3": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "VariableRefrigerantFlowDX", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_type": "VariableRefrigerantFlowDX", + "heating_coil_type": "VariableRefrigerantFlowDX", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "rated_total_heating_capacity_sizing_ratio": 1, + "supply_air_fan_placement": "BlowThrough", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "template_vrf_system_name": "VRF Sys 1 Water Source", + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:VRF 4": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "VariableRefrigerantFlowDX", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_type": "VariableRefrigerantFlowDX", + "heating_coil_type": "VariableRefrigerantFlowDX", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "rated_total_heating_capacity_sizing_ratio": 1, + "supply_air_fan_placement": "BlowThrough", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "template_vrf_system_name": "VRF Sys 1 Water Source", + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:VRF 5": { + "baseboard_heating_capacity": "Autosize", + "baseboard_heating_type": "None", + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "VariableRefrigerantFlowDX", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_type": "VariableRefrigerantFlowDX", + "heating_coil_type": "VariableRefrigerantFlowDX", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "no_cooling_supply_air_flow_rate": "Autosize", + "no_heating_supply_air_flow_rate": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "rated_total_heating_capacity_sizing_ratio": 1, + "supply_air_fan_placement": "BlowThrough", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_operating_mode_schedule_name": "FanAvailSched", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "template_vrf_system_name": "VRF Sys 2 Air Source", + "zone_cooling_design_supply_air_temperature": 14, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50, + "zone_heating_design_supply_air_temperature_difference": 30, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_base.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_base.epJSON new file mode 100644 index 00000000000..450ea6d6928 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_base.epJSON @@ -0,0 +1,2766 @@ +{ + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_expanded.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_expanded.epJSON new file mode 100644 index 00000000000..d49d5b83271 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_expanded.epJSON @@ -0,0 +1,4456 @@ +{ + "AvailabilityManagerAssignmentList": { + "Only Water Loop Availability Managers": {} + }, + "Boiler:HotWater": { + "Main Boiler": { + "boiler_flow_mode": "ConstantFlow", + "boiler_water_inlet_node_name": "Main Boiler HW Inlet", + "boiler_water_outlet_node_name": "Main Boiler HW Outlet", + "efficiency_curve_temperature_evaluation_variable": "LeavingBoiler", + "fuel_type": "NaturalGas", + "maximum_part_load_ratio": 1.1, + "nominal_capacity": "Autosize", + "nominal_thermal_efficiency": 0.8, + "normalized_boiler_efficiency_curve_name": "Main Boiler Efficiency Curve", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "Branch": { + "Main Boiler Branch": { + "components": [ + { + "component_inlet_node_name": "Main Boiler HW Inlet", + "component_name": "Main Boiler", + "component_object_type": "Boiler:HotWater", + "component_outlet_node_name": "Main Boiler HW Outlet" + } + ] + }, + "Main Tower Branch": { + "components": [ + { + "component_inlet_node_name": "Main Tower Inlet", + "component_name": "Main Tower", + "component_object_type": "CoolingTower:SingleSpeed", + "component_outlet_node_name": "Main Tower Outlet" + } + ] + }, + "Only Water Loop Demand Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Bypass Inlet", + "component_name": "Only Water Loop Demand Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Bypass Outlet" + } + ] + }, + "Only Water Loop Demand Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Inlet", + "component_name": "Only Water Loop Demand Inlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Inlet Pipe Outlet" + } + ] + }, + "Only Water Loop Demand Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Demand Outlet Pipe Inlet", + "component_name": "Only Water Loop Demand Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Demand Outlet" + } + ] + }, + "Only Water Loop Supply Bypass Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Bypass Inlet", + "component_name": "Only Water Loop Supply Bypass Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Supply Bypass Outlet" + } + ] + }, + "Only Water Loop Supply Inlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Inlet", + "component_name": "Only Water Loop Supply Pump", + "component_object_type": "Pump:ConstantSpeed", + "component_outlet_node_name": "Only Water Loop Supply Inlet Pump Outlet" + } + ] + }, + "Only Water Loop Supply Outlet Branch": { + "components": [ + { + "component_inlet_node_name": "Only Water Loop Supply Outlet Pipe Inlet", + "component_name": "Only Water Loop Supply Outlet Pipe", + "component_object_type": "Pipe:Adiabatic", + "component_outlet_node_name": "Only Water Loop Supply Outlet" + } + ] + }, + "SPACE1-1 WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Cooling Water Inlet", + "component_name": "SPACE1-1 Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE1-1 Cooling Water Outlet" + } + ] + }, + "SPACE1-1 WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE1-1 Heating Water Inlet", + "component_name": "SPACE1-1 Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE1-1 Heating Water Outlet" + } + ] + }, + "SPACE2-1 WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Cooling Water Inlet", + "component_name": "SPACE2-1 Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE2-1 Cooling Water Outlet" + } + ] + }, + "SPACE2-1 WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE2-1 Heating Water Inlet", + "component_name": "SPACE2-1 Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE2-1 Heating Water Outlet" + } + ] + }, + "SPACE3-1 WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Cooling Water Inlet", + "component_name": "SPACE3-1 Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE3-1 Cooling Water Outlet" + } + ] + }, + "SPACE3-1 WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE3-1 Heating Water Inlet", + "component_name": "SPACE3-1 Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE3-1 Heating Water Outlet" + } + ] + }, + "SPACE4-1 WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Cooling Water Inlet", + "component_name": "SPACE4-1 Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE4-1 Cooling Water Outlet" + } + ] + }, + "SPACE4-1 WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE4-1 Heating Water Inlet", + "component_name": "SPACE4-1 Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE4-1 Heating Water Outlet" + } + ] + }, + "SPACE5-1 WaterSource Cooling Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Cooling Water Inlet", + "component_name": "SPACE5-1 Cooling Coil", + "component_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE5-1 Cooling Water Outlet" + } + ] + }, + "SPACE5-1 WaterSource Heating Condenser Branch": { + "components": [ + { + "component_inlet_node_name": "SPACE5-1 Heating Water Inlet", + "component_name": "SPACE5-1 Heating Coil", + "component_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "component_outlet_node_name": "SPACE5-1 Heating Water Outlet" + } + ] + } + }, + "BranchList": { + "Only Water Loop Demand Side Branches": { + "branches": [ + { + "branch_name": "Only Water Loop Demand Inlet Branch" + }, + { + "branch_name": "SPACE5-1 WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "SPACE5-1 WaterSource Heating Condenser Branch" + }, + { + "branch_name": "SPACE4-1 WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "SPACE4-1 WaterSource Heating Condenser Branch" + }, + { + "branch_name": "SPACE3-1 WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "SPACE3-1 WaterSource Heating Condenser Branch" + }, + { + "branch_name": "SPACE2-1 WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "SPACE2-1 WaterSource Heating Condenser Branch" + }, + { + "branch_name": "SPACE1-1 WaterSource Cooling Condenser Branch" + }, + { + "branch_name": "SPACE1-1 WaterSource Heating Condenser Branch" + }, + { + "branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "branch_name": "Only Water Loop Demand Outlet Branch" + } + ] + }, + "Only Water Loop Supply Side Branches": { + "branches": [ + { + "branch_name": "Only Water Loop Supply Inlet Branch" + }, + { + "branch_name": "Main Tower Branch" + }, + { + "branch_name": "Main Boiler Branch" + }, + { + "branch_name": "Only Water Loop Supply Bypass Branch" + }, + { + "branch_name": "Only Water Loop Supply Outlet Branch" + } + ] + } + }, + "Building": { + "Building": { + "loads_convergence_tolerance_value": 0.04, + "maximum_number_of_warmup_days": 25, + "minimum_number_of_warmup_days": 6, + "north_axis": 30.0, + "solar_distribution": "FullExterior", + "temperature_convergence_tolerance_value": 0.4, + "terrain": "City" + } + }, + "BuildingSurface:Detailed": { + "BACK-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE3-1" + }, + "C1-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "C1-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C1-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C2-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "C2-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C2-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C3-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "C3-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C3-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C4-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "C4-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C4-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "C5-1": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1P", + "sun_exposure": "NoSun", + "surface_type": "Ceiling", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "C5-1P": { + "construction_name": "CLNG-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "C5-1", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "PLENUM-1" + }, + "F1-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "F2-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "F3-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "F4-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "F5-1": { + "construction_name": "FLOOR-SLAB-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Ground", + "sun_exposure": "NoSun", + "surface_type": "Floor", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "FRONT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE1-1" + }, + "LEFT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE4-1" + }, + "RIGHT-1": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "SPACE2-1" + }, + "SB12": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB21", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB14": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB41", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB15": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB51", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE1-1" + }, + "SB21": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB12", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB23": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB32", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB25": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB52", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE2-1" + }, + "SB32": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB23", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB34": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB43", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB35": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB53", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE3-1" + }, + "SB41": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB14", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB43": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB34", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB45": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB54", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE4-1" + }, + "SB51": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB15", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB52": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB25", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB53": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB35", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 26.8, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "SB54": { + "construction_name": "INT-WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Surface", + "outside_boundary_condition_object": "SB45", + "sun_exposure": "NoSun", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 11.6, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 0.0 + }, + { + "vertex_x_coordinate": 3.7, + "vertex_y_coordinate": 3.7, + "vertex_z_coordinate": 2.4 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "NoWind", + "zone_name": "SPACE5-1" + }, + "TOP-1": { + "construction_name": "ROOF-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Roof", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.0, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PB": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PF": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PL": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + }, + "WALL-1PR": { + "construction_name": "WALL-1", + "number_of_vertices": 4, + "outside_boundary_condition": "Outdoors", + "sun_exposure": "SunExposed", + "surface_type": "Wall", + "vertices": [ + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 3.0 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 2.4 + }, + { + "vertex_x_coordinate": 30.5, + "vertex_y_coordinate": 15.2, + "vertex_z_coordinate": 3.0 + } + ], + "view_factor_to_ground": 0.5, + "wind_exposure": "WindExposed", + "zone_name": "PLENUM-1" + } + }, + "Coil:Cooling:WaterToAirHeatPump:EquationFit": { + "SPACE1-1 Cooling Coil": { + "air_inlet_node_name": "SPACE1-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "SPACE1-1 WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3.5, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "SPACE1-1 WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "SPACE1-1 WAHP ClgTotCapCurve", + "water_inlet_node_name": "SPACE1-1 Cooling Water Inlet", + "water_outlet_node_name": "SPACE1-1 Cooling Water Outlet" + }, + "SPACE2-1 Cooling Coil": { + "air_inlet_node_name": "SPACE2-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "SPACE2-1 WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3.5, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "SPACE2-1 WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "SPACE2-1 WAHP ClgTotCapCurve", + "water_inlet_node_name": "SPACE2-1 Cooling Water Inlet", + "water_outlet_node_name": "SPACE2-1 Cooling Water Outlet" + }, + "SPACE3-1 Cooling Coil": { + "air_inlet_node_name": "SPACE3-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "SPACE3-1 WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3.5, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "SPACE3-1 WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "SPACE3-1 WAHP ClgTotCapCurve", + "water_inlet_node_name": "SPACE3-1 Cooling Water Inlet", + "water_outlet_node_name": "SPACE3-1 Cooling Water Outlet" + }, + "SPACE4-1 Cooling Coil": { + "air_inlet_node_name": "SPACE4-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "SPACE4-1 WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3.5, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "SPACE4-1 WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "SPACE4-1 WAHP ClgTotCapCurve", + "water_inlet_node_name": "SPACE4-1 Cooling Water Inlet", + "water_outlet_node_name": "SPACE4-1 Cooling Water Outlet" + }, + "SPACE5-1 Cooling Coil": { + "air_inlet_node_name": "SPACE5-1 Mixed Air Outlet", + "air_outlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "cooling_power_consumption_curve_name": "SPACE5-1 WAHP ClgPowCurve", + "gross_rated_cooling_cop": 3.5, + "gross_rated_sensible_cooling_capacity": "Autosize", + "gross_rated_total_cooling_capacity": "Autosize", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "sensible_cooling_capacity_curve_name": "SPACE5-1 WAHP ClgSensCapCurve", + "total_cooling_capacity_curve_name": "SPACE5-1 WAHP ClgTotCapCurve", + "water_inlet_node_name": "SPACE5-1 Cooling Water Inlet", + "water_outlet_node_name": "SPACE5-1 Cooling Water Outlet" + } + }, + "Coil:Heating:Electric": { + "SPACE1-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE1-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE2-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE2-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE3-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE3-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE4-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE4-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + }, + "SPACE5-1 Supp Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Supply Fan Outlet", + "air_outlet_node_name": "SPACE5-1 Supp Heating Coil Outlet", + "nominal_capacity": "Autosize" + } + }, + "Coil:Heating:WaterToAirHeatPump:EquationFit": { + "SPACE1-1 Heating Coil": { + "air_inlet_node_name": "SPACE1-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 4.2, + "heating_capacity_curve_name": "SPACE1-1 WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "SPACE1-1 WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "SPACE1-1 Heating Water Inlet", + "water_outlet_node_name": "SPACE1-1 Heating Water Outlet" + }, + "SPACE2-1 Heating Coil": { + "air_inlet_node_name": "SPACE2-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 4.2, + "heating_capacity_curve_name": "SPACE2-1 WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "SPACE2-1 WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "SPACE2-1 Heating Water Inlet", + "water_outlet_node_name": "SPACE2-1 Heating Water Outlet" + }, + "SPACE3-1 Heating Coil": { + "air_inlet_node_name": "SPACE3-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 4.2, + "heating_capacity_curve_name": "SPACE3-1 WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "SPACE3-1 WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "SPACE3-1 Heating Water Inlet", + "water_outlet_node_name": "SPACE3-1 Heating Water Outlet" + }, + "SPACE4-1 Heating Coil": { + "air_inlet_node_name": "SPACE4-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 4.2, + "heating_capacity_curve_name": "SPACE4-1 WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "SPACE4-1 WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "SPACE4-1 Heating Water Inlet", + "water_outlet_node_name": "SPACE4-1 Heating Water Outlet" + }, + "SPACE5-1 Heating Coil": { + "air_inlet_node_name": "SPACE5-1 Cooling Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Heating Coil Outlet", + "gross_rated_heating_capacity": "Autosize", + "gross_rated_heating_cop": 4.2, + "heating_capacity_curve_name": "SPACE5-1 WAHP HtgCapCurve", + "heating_power_consumption_curve_name": "SPACE5-1 WAHP HtgPowCurve", + "rated_air_flow_rate": "Autosize", + "rated_water_flow_rate": "Autosize", + "water_inlet_node_name": "SPACE5-1 Heating Water Inlet", + "water_outlet_node_name": "SPACE5-1 Heating Water Outlet" + } + }, + "Connector:Mixer": { + "Only Water Loop Demand Mixer": { + "branches": [ + { + "inlet_branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "inlet_branch_name": "SPACE1-1 WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "SPACE1-1 WaterSource Cooling Condenser Branch" + }, + { + "inlet_branch_name": "SPACE2-1 WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "SPACE2-1 WaterSource Cooling Condenser Branch" + }, + { + "inlet_branch_name": "SPACE3-1 WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "SPACE3-1 WaterSource Cooling Condenser Branch" + }, + { + "inlet_branch_name": "SPACE4-1 WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "SPACE4-1 WaterSource Cooling Condenser Branch" + }, + { + "inlet_branch_name": "SPACE5-1 WaterSource Heating Condenser Branch" + }, + { + "inlet_branch_name": "SPACE5-1 WaterSource Cooling Condenser Branch" + } + ], + "outlet_branch_name": "Only Water Loop Demand Outlet Branch" + }, + "Only Water Loop Supply Mixer": { + "branches": [ + { + "inlet_branch_name": "Main Boiler Branch" + }, + { + "inlet_branch_name": "Main Tower Branch" + }, + { + "inlet_branch_name": "Only Water Loop Supply Bypass Branch" + } + ], + "outlet_branch_name": "Only Water Loop Supply Outlet Branch" + } + }, + "Connector:Splitter": { + "Only Water Loop Demand Splitter": { + "branches": [ + { + "outlet_branch_name": "Only Water Loop Demand Bypass Branch" + }, + { + "outlet_branch_name": "SPACE1-1 WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "SPACE1-1 WaterSource Cooling Condenser Branch" + }, + { + "outlet_branch_name": "SPACE2-1 WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "SPACE2-1 WaterSource Cooling Condenser Branch" + }, + { + "outlet_branch_name": "SPACE3-1 WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "SPACE3-1 WaterSource Cooling Condenser Branch" + }, + { + "outlet_branch_name": "SPACE4-1 WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "SPACE4-1 WaterSource Cooling Condenser Branch" + }, + { + "outlet_branch_name": "SPACE5-1 WaterSource Heating Condenser Branch" + }, + { + "outlet_branch_name": "SPACE5-1 WaterSource Cooling Condenser Branch" + } + ], + "inlet_branch_name": "Only Water Loop Demand Inlet Branch" + }, + "Only Water Loop Supply Splitter": { + "branches": [ + { + "outlet_branch_name": "Main Boiler Branch" + }, + { + "outlet_branch_name": "Main Tower Branch" + }, + { + "outlet_branch_name": "Only Water Loop Supply Bypass Branch" + } + ], + "inlet_branch_name": "Only Water Loop Supply Inlet Branch" + } + }, + "ConnectorList": { + "Only Water Loop Demand Side Connectors": { + "connector_1_name": "Only Water Loop Demand Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Only Water Loop Demand Mixer", + "connector_2_object_type": "Connector:Mixer" + }, + "Only Water Loop Supply Side Connectors": { + "connector_1_name": "Only Water Loop Supply Splitter", + "connector_1_object_type": "Connector:Splitter", + "connector_2_name": "Only Water Loop Supply Mixer", + "connector_2_object_type": "Connector:Mixer" + } + }, + "Construction": { + "CLNG-1": { + "outside_layer": "MAT-CLNG-1" + }, + "Dbl Clr 3mm/13mm Air": { + "layer_2": "AIR 13MM", + "layer_3": "CLEAR 3MM", + "outside_layer": "CLEAR 3MM" + }, + "FLOOR-SLAB-1": { + "outside_layer": "CC03" + }, + "INT-WALL-1": { + "layer_2": "AL21", + "layer_3": "GP02", + "outside_layer": "GP02" + }, + "ROOF-1": { + "layer_2": "BR01", + "layer_3": "IN46", + "layer_4": "WD01", + "outside_layer": "RG01" + }, + "Sgl Grey 3mm": { + "outside_layer": "GREY 3MM" + }, + "WALL-1": { + "layer_2": "PW03", + "layer_3": "IN02", + "layer_4": "GP01", + "outside_layer": "WD01" + } + }, + "CoolingTower:SingleSpeed": { + "Main Tower": { + "blowdown_calculation_mode": "ConcentrationRatio", + "design_air_flow_rate": "Autosize", + "design_fan_power": "Autosize", + "design_u_factor_times_area_value": "Autosize", + "design_water_flow_rate": "Autosize", + "evaporation_loss_mode": "SaturatedExit", + "free_convection_capacity": "Autocalculate", + "free_convection_regime_air_flow_rate": "Autocalculate", + "free_convection_regime_u_factor_times_area_value": "Autocalculate", + "outdoor_air_inlet_node_name": "Main Tower Outdoor Air Inlet", + "performance_input_method": "UFactorTimesAreaAndDesignWaterFlowRate", + "water_inlet_node_name": "Main Tower Inlet", + "water_outlet_node_name": "Main Tower Outlet" + } + }, + "Curve:QuadLinear": { + "SPACE1-1 WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE1-1 WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE1-1 WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE1-1 WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE2-1 WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE2-1 WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE2-1 WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE2-1 WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE3-1 WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE3-1 WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE3-1 WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE3-1 WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE4-1 WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE4-1 WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE4-1 WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE4-1 WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE5-1 WAHP ClgPowCurve": { + "coefficient1_constant": -3.205409884, + "coefficient2_w": -0.976409399, + "coefficient3_x": 3.97892546, + "coefficient4_y": 0.938181818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE5-1 WAHP ClgTotCapCurve": { + "coefficient1_constant": -9.149069561, + "coefficient2_w": 10.87814026, + "coefficient3_x": -1.718780157, + "coefficient4_y": 0.746414818, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE5-1 WAHP HtgCapCurve": { + "coefficient1_constant": -1.361311959, + "coefficient2_w": -2.471798046, + "coefficient3_x": 4.173164514, + "coefficient4_y": 0.640757401, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE5-1 WAHP HtgPowCurve": { + "coefficient1_constant": -2.176941116, + "coefficient2_w": 0.832114286, + "coefficient3_x": 1.570743399, + "coefficient4_y": 0.690793651, + "coefficient5_z": 0.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + } + }, + "Curve:Quadratic": { + "Main Boiler Efficiency Curve": { + "coefficient1_constant": 0.97, + "coefficient2_x": 0.0633, + "coefficient3_x_2": -0.0333, + "maximum_value_of_x": 1.0, + "minimum_value_of_x": 0.0 + } + }, + "Curve:QuintLinear": { + "SPACE1-1 WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE2-1 WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE3-1 WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE4-1 WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + }, + "SPACE5-1 WAHP ClgSensCapCurve": { + "coefficient1_constant": -5.462690012, + "coefficient2_v": 17.95968138, + "coefficient3_w": -11.87818402, + "coefficient4_x": -0.980163419, + "coefficient5_y": 0.767285761, + "coefficient6_z": 0.0, + "maximum_value_of_v": 100.0, + "maximum_value_of_w": 100.0, + "maximum_value_of_x": 100.0, + "maximum_value_of_y": 100.0, + "maximum_value_of_z": 100.0, + "minimum_value_of_v": -100.0, + "minimum_value_of_w": -100.0, + "minimum_value_of_x": -100.0, + "minimum_value_of_y": -100.0, + "minimum_value_of_z": -100.0 + } + }, + "DesignSpecification:OutdoorAir": { + "SPACE1-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE2-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE3-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE4-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + }, + "SPACE5-1 SZ DSOA": { + "outdoor_air_flow_per_person": 0.00944, + "outdoor_air_method": "Flow/Person" + } + }, + "DesignSpecification:ZoneAirDistribution": { + "SPACE1-1 SZ DSZAD": {}, + "SPACE2-1 SZ DSZAD": {}, + "SPACE3-1 SZ DSZAD": {}, + "SPACE4-1 SZ DSZAD": {}, + "SPACE5-1 SZ DSZAD": {} + }, + "ElectricEquipment": { + "SPACE1-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 ElecEq 1": { + "design_level": 1056, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 ElecEq 1": { + "design_level": 456, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 ElecEq 1": { + "design_level": 1976, + "design_level_calculation_method": "EquipmentLevel", + "fraction_latent": 0, + "fraction_lost": 0, + "fraction_radiant": 0.3, + "schedule_name": "EQUIP-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Fan:OnOff": { + "SPACE1-1 Supply Fan": { + "air_inlet_node_name": "SPACE1-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE1-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE2-1 Supply Fan": { + "air_inlet_node_name": "SPACE2-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE2-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE3-1 Supply Fan": { + "air_inlet_node_name": "SPACE3-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE3-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE4-1 Supply Fan": { + "air_inlet_node_name": "SPACE4-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE4-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + }, + "SPACE5-1 Supply Fan": { + "air_inlet_node_name": "SPACE5-1 Heating Coil Outlet", + "air_outlet_node_name": "SPACE5-1 Supply Fan Outlet", + "availability_schedule_name": "HVACTemplate-Always1", + "fan_total_efficiency": 0.7, + "maximum_flow_rate": "Autosize", + "motor_efficiency": 0.9, + "motor_in_airstream_fraction": 1.0, + "pressure_rise": 75 + } + }, + "FenestrationSurface:Detailed": { + "DB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 9.1, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 9.1, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 7.0, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 7.0, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "DF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Sgl Grey 3mm", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "GlassDoor", + "vertex_1_x_coordinate": 21.3, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 21.3, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.0, + "vertex_3_x_coordinate": 23.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.0, + "vertex_4_x_coordinate": 23.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WB-1": { + "building_surface_name": "BACK-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 27.4, + "vertex_1_y_coordinate": 15.2, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 27.4, + "vertex_2_y_coordinate": 15.2, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 13.7, + "vertex_3_y_coordinate": 15.2, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 13.7, + "vertex_4_y_coordinate": 15.2, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WF-1": { + "building_surface_name": "FRONT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 3.0, + "vertex_1_y_coordinate": 0.0, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 3.0, + "vertex_2_y_coordinate": 0.0, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 16.8, + "vertex_3_y_coordinate": 0.0, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 16.8, + "vertex_4_y_coordinate": 0.0, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WL-1": { + "building_surface_name": "LEFT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 0.0, + "vertex_1_y_coordinate": 11.4, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 0.0, + "vertex_2_y_coordinate": 11.4, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 0.0, + "vertex_3_y_coordinate": 3.8, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 0.0, + "vertex_4_y_coordinate": 3.8, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + }, + "WR-1": { + "building_surface_name": "RIGHT-1", + "construction_name": "Dbl Clr 3mm/13mm Air", + "multiplier": 1, + "number_of_vertices": 4, + "surface_type": "Window", + "vertex_1_x_coordinate": 30.5, + "vertex_1_y_coordinate": 3.8, + "vertex_1_z_coordinate": 2.1, + "vertex_2_x_coordinate": 30.5, + "vertex_2_y_coordinate": 3.8, + "vertex_2_z_coordinate": 0.9, + "vertex_3_x_coordinate": 30.5, + "vertex_3_y_coordinate": 11.4, + "vertex_3_z_coordinate": 0.9, + "vertex_4_x_coordinate": 30.5, + "vertex_4_y_coordinate": 11.4, + "vertex_4_z_coordinate": 2.1, + "view_factor_to_ground": 0.5 + } + }, + "GlobalGeometryRules": { + "GlobalGeometryRules 1": { + "coordinate_system": "Relative", + "starting_vertex_position": "UpperLeftCorner", + "vertex_entry_direction": "Counterclockwise" + } + }, + "HeatBalanceAlgorithm": { + "HeatBalanceAlgorithm 1": { + "algorithm": "ConductionTransferFunction" + } + }, + "Lights": { + "SPACE1-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 1584, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 684, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 Lights 1": { + "design_level_calculation_method": "LightingLevel", + "end_use_subcategory": "GeneralLights", + "fraction_radiant": 0.59, + "fraction_replaceable": 0, + "fraction_visible": 0.2, + "lighting_level": 2964, + "return_air_fraction": 0.0, + "schedule_name": "LIGHTS-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Material": { + "BR01": { + "conductivity": 0.162, + "density": 1121.0, + "roughness": "VeryRough", + "solar_absorptance": 0.7, + "specific_heat": 1464.0, + "thermal_absorptance": 0.9, + "thickness": 0.0094999997, + "visible_absorptance": 0.7 + }, + "CC03": { + "conductivity": 1.31, + "density": 2243.0, + "roughness": "MediumRough", + "solar_absorptance": 0.65, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.1016, + "visible_absorptance": 0.65 + }, + "GP01": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.75 + }, + "GP02": { + "conductivity": 0.16, + "density": 801.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.015900001, + "visible_absorptance": 0.75 + }, + "IN02": { + "conductivity": 0.043000001, + "density": 10.0, + "roughness": "Rough", + "solar_absorptance": 0.75, + "specific_heat": 837.0, + "thermal_absorptance": 0.9, + "thickness": 0.090099998, + "visible_absorptance": 0.75 + }, + "IN46": { + "conductivity": 0.023, + "density": 24.0, + "roughness": "VeryRough", + "solar_absorptance": 0.5, + "specific_heat": 1590.0, + "thermal_absorptance": 0.9, + "thickness": 0.076200001, + "visible_absorptance": 0.5 + }, + "PW03": { + "conductivity": 0.115, + "density": 545.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1213.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.78 + }, + "RG01": { + "conductivity": 1.442, + "density": 881.0, + "roughness": "Rough", + "solar_absorptance": 0.65, + "specific_heat": 1674.0, + "thermal_absorptance": 0.9, + "thickness": 0.0127, + "visible_absorptance": 0.65 + }, + "WD01": { + "conductivity": 0.115, + "density": 513.0, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381.0, + "thermal_absorptance": 0.9, + "thickness": 0.019099999, + "visible_absorptance": 0.78 + }, + "WD10": { + "conductivity": 0.115, + "density": 513, + "roughness": "MediumSmooth", + "solar_absorptance": 0.78, + "specific_heat": 1381, + "thermal_absorptance": 0.9, + "thickness": 0.667, + "visible_absorptance": 0.78 + } + }, + "Material:AirGap": { + "AL21": { + "thermal_resistance": 0.157 + }, + "AL23": { + "thermal_resistance": 0.153 + } + }, + "Material:NoMass": { + "CP01": { + "roughness": "Rough", + "solar_absorptance": 0.75, + "thermal_absorptance": 0.9, + "thermal_resistance": 0.367, + "visible_absorptance": 0.75 + }, + "MAT-CLNG-1": { + "roughness": "Rough", + "solar_absorptance": 0.65, + "thermal_absorptance": 0.65, + "thermal_resistance": 0.65225929, + "visible_absorptance": 0.65 + } + }, + "NodeList": { + "Only Water Loop Supply Setpoint Nodes": { + "nodes": [ + { + "node_name": "Main Tower Outlet" + }, + { + "node_name": "Main Boiler HW Outlet" + }, + { + "node_name": "Only Water Loop Supply Outlet" + } + ] + } + }, + "OutdoorAir:Mixer": { + "SPACE1-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE1-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE1-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE1-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE1-1 Return" + }, + "SPACE2-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE2-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE2-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE2-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE2-1 Return" + }, + "SPACE3-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE3-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE3-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE3-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE3-1 Return" + }, + "SPACE4-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE4-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE4-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE4-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE4-1 Return" + }, + "SPACE5-1 OA Mixing Box": { + "mixed_air_node_name": "SPACE5-1 Mixed Air Outlet", + "outdoor_air_stream_node_name": "SPACE5-1 Outdoor Air Inlet", + "relief_air_stream_node_name": "SPACE5-1 Relief Air Outlet", + "return_air_stream_node_name": "SPACE5-1 Return" + } + }, + "OutdoorAir:Node": { + "Main Tower Outdoor Air Inlet": {} + }, + "OutdoorAir:NodeList": { + "SPACE1-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE1-1 Outdoor Air Inlet" + } + ] + }, + "SPACE2-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE2-1 Outdoor Air Inlet" + } + ] + }, + "SPACE3-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE3-1 Outdoor Air Inlet" + } + ] + }, + "SPACE4-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE4-1 Outdoor Air Inlet" + } + ] + }, + "SPACE5-1 Outdoor Air NodeList": { + "nodes": [ + { + "node_or_nodelist_name": "SPACE5-1 Outdoor Air Inlet" + } + ] + } + }, + "Output:Meter:MeterFileOnly": { + "Output:Meter:MeterFileOnly 1": { + "key_name": "Electricity:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 10": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 11": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 12": { + "key_name": "Electricity:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 13": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 14": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 2": { + "key_name": "Electricity:Building", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 3": { + "key_name": "InteriorLights:Electricity", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 4": { + "key_name": "Electricity:HVAC", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 5": { + "key_name": "Electricity:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 6": { + "key_name": "NaturalGas:Plant", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 7": { + "key_name": "NaturalGas:Facility", + "reporting_frequency": "Monthly" + }, + "Output:Meter:MeterFileOnly 8": { + "key_name": "Electricity:Facility", + "reporting_frequency": "RunPeriod" + }, + "Output:Meter:MeterFileOnly 9": { + "key_name": "Electricity:Building", + "reporting_frequency": "RunPeriod" + } + }, + "Output:PreprocessorMessage": {}, + "Output:Surfaces:Drawing": { + "Output:Surfaces:Drawing 1": { + "report_type": "DXF" + } + }, + "Output:Surfaces:List": { + "Output:Surfaces:List 1": { + "report_type": "Lines" + } + }, + "Output:Table:SummaryReports": { + "Output:Table:SummaryReports 1": { + "reports": [ + { + "report_name": "AllSummary" + } + ] + } + }, + "Output:Variable": { + "Output:Variable 1": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Site Outdoor Air Drybulb Temperature" + }, + "Output:Variable 10": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Relative Humidity" + }, + "Output:Variable 11": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Heating Setpoint Not Met While Occupied Time" + }, + "Output:Variable 12": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Cooling Setpoint Not Met While Occupied Time" + }, + "Output:Variable 13": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Plant Supply Side Outlet Temperature" + }, + "Output:Variable 14": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler Heating Rate" + }, + "Output:Variable 15": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Boiler NaturalGas Rate" + }, + "Output:Variable 16": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Heat Transfer Rate" + }, + "Output:Variable 17": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Cooling Tower Fan Electricity Rate" + }, + "Output:Variable 2": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Temperature" + }, + "Output:Variable 3": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Cooling Rate" + }, + "Output:Variable 4": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air System Sensible Heating Rate" + }, + "Output:Variable 5": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Air Temperature" + }, + "Output:Variable 6": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Mean Radiant Temperature" + }, + "Output:Variable 7": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Operative Temperature" + }, + "Output:Variable 8": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time" + }, + "Output:Variable 9": { + "key_value": "*", + "reporting_frequency": "Hourly", + "variable_name": "Zone Air Humidity Ratio" + } + }, + "Output:VariableDictionary": { + "Output:VariableDictionary 1": { + "key_field": "regular" + } + }, + "OutputControl:Table:Style": { + "OutputControl:Table:Style 1": { + "column_separator": "HTML" + } + }, + "People": { + "SPACE1-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE1-1" + }, + "SPACE2-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE2-1" + }, + "SPACE3-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 11, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE3-1" + }, + "SPACE4-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 5, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE4-1" + }, + "SPACE5-1 People 1": { + "activity_level_schedule_name": "ActSchd", + "fraction_radiant": 0.3, + "number_of_people": 20, + "number_of_people_calculation_method": "People", + "number_of_people_schedule_name": "OCCUPY-1", + "zone_or_zonelist_or_space_or_spacelist_name": "SPACE5-1" + } + }, + "Pipe:Adiabatic": { + "Only Water Loop Demand Bypass Pipe": { + "inlet_node_name": "Only Water Loop Demand Bypass Inlet", + "outlet_node_name": "Only Water Loop Demand Bypass Outlet" + }, + "Only Water Loop Demand Inlet Pipe": { + "inlet_node_name": "Only Water Loop Demand Inlet", + "outlet_node_name": "Only Water Loop Demand Inlet Pipe Outlet" + }, + "Only Water Loop Demand Outlet Pipe": { + "inlet_node_name": "Only Water Loop Demand Outlet Pipe Inlet", + "outlet_node_name": "Only Water Loop Demand Outlet" + }, + "Only Water Loop Supply Bypass Pipe": { + "inlet_node_name": "Only Water Loop Supply Bypass Inlet", + "outlet_node_name": "Only Water Loop Supply Bypass Outlet" + }, + "Only Water Loop Supply Outlet Pipe": { + "inlet_node_name": "Only Water Loop Supply Outlet Pipe Inlet", + "outlet_node_name": "Only Water Loop Supply Outlet" + } + }, + "PlantEquipmentList": { + "Only Water Loop Cooling All Equipment": { + "equipment": [ + { + "equipment_name": "Main Tower", + "equipment_object_type": "CoolingTower:SingleSpeed" + } + ] + }, + "Only Water Loop Heating All Equipment": { + "equipment": [ + { + "equipment_name": "Main Boiler", + "equipment_object_type": "Boiler:HotWater" + } + ] + } + }, + "PlantEquipmentOperation:CoolingLoad": { + "Only Water Loop Cool Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Only Water Loop Cooling All Equipment" + } + }, + "PlantEquipmentOperation:HeatingLoad": { + "Only Water Loop Heat Operation All Hours": { + "load_range_1_lower_limit": 0, + "load_range_1_upper_limit": 1000000000000000, + "range_1_equipment_list_name": "Only Water Loop Heating All Equipment" + } + }, + "PlantEquipmentOperationSchemes": { + "Only Water Loop Operation": { + "control_scheme_1_name": "Only Water Loop Heat Operation All Hours", + "control_scheme_1_object_type": "PlantEquipmentOperation:HeatingLoad", + "control_scheme_1_schedule_name": "HVACTemplate-Always1", + "control_scheme_2_name": "Only Water Loop Cool Operation All Hours", + "control_scheme_2_object_type": "PlantEquipmentOperation:CoolingLoad", + "control_scheme_2_schedule_name": "HVACTemplate-Always1" + } + }, + "PlantLoop": { + "Only Water Loop PlantLoop": { + "demand_side_branch_list_name": "Only Water Loop Demand Side Branches", + "demand_side_connector_list_name": "Only Water Loop Demand Side Connectors", + "demand_side_inlet_node_name": "Only Water Loop Demand Inlet", + "demand_side_outlet_node_name": "Only Water Loop Demand Outlet", + "load_distribution_scheme": "SequentialLoad", + "loop_temperature_setpoint_node_name": "Only Water Loop Supply Outlet", + "maximum_loop_flow_rate": "Autosize", + "maximum_loop_temperature": 100, + "minimum_loop_temperature": 10, + "plant_equipment_operation_scheme_name": "Only Water Loop Operation", + "plant_loop_demand_calculation_scheme": "DualSetpointDeadband", + "plant_side_branch_list_name": "Only Water Loop Supply Side Branches", + "plant_side_connector_list_name": "Only Water Loop Supply Side Connectors", + "plant_side_inlet_node_name": "Only Water Loop Supply Inlet", + "plant_side_outlet_node_name": "Only Water Loop Supply Outlet" + } + }, + "Pump:ConstantSpeed": { + "Only Water Loop Supply Pump": { + "design_flow_rate": "Autosize", + "design_power_consumption": "Autosize", + "design_pump_head": 179352, + "inlet_node_name": "Only Water Loop Supply Inlet", + "outlet_node_name": "Only Water Loop Supply Inlet Pump Outlet", + "pump_control_type": "Intermittent" + } + }, + "RunPeriod": { + "Run Period 2": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 14, + "begin_month": 1, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 14, + "end_month": 1, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + }, + "Run Period 3": { + "apply_weekend_holiday_rule": "No", + "begin_day_of_month": 7, + "begin_month": 7, + "day_of_week_for_start_day": "Tuesday", + "end_day_of_month": 7, + "end_month": 7, + "use_weather_file_daylight_saving_period": "Yes", + "use_weather_file_holidays_and_special_days": "Yes", + "use_weather_file_rain_indicators": "Yes", + "use_weather_file_snow_indicators": "Yes" + } + }, + "Schedule:Compact": { + "ActSchd": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 117.239997864 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Clg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 32.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 24.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 24.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 32.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "EQUIP-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.02 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 15:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 16:00" + }, + { + "field": 0.7 + }, + { + "field": "Until: 18:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.3 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.02 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "HVACTemplate-Always0": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always20": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 20.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always34": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 34.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "HVACTemplate-Always4": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 4.0 + } + ], + "schedule_type_limits_name": "Any Number" + }, + "Htg-SetP-Sch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 6:00" + }, + { + "field": 13.0 + }, + { + "field": "Until: 7:00" + }, + { + "field": 18.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 23.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WeekEnds Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 13.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 23.0 + } + ], + "schedule_type_limits_name": "Temperature" + }, + "INFIL-SCH": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays CustomDay1 CustomDay2" + }, + { + "field": "Until: 7:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: Weekends Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: SummerDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + }, + { + "field": "For: WinterDesignDay" + }, + { + "field": "Until: 24:00" + }, + { + "field": 1.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "LIGHTS-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.05 + }, + { + "field": "Until: 9:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 10:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.95 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.9 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.6 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.05 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "OCCUPY-1": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: WeekDays SummerDesignDay CustomDay1 CustomDay2" + }, + { + "field": "Until: 8:00" + }, + { + "field": 0.0 + }, + { + "field": "Until: 11:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 12:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 13:00" + }, + { + "field": 0.4 + }, + { + "field": "Until: 14:00" + }, + { + "field": 0.8 + }, + { + "field": "Until: 18:00" + }, + { + "field": 1.0 + }, + { + "field": "Until: 19:00" + }, + { + "field": 0.5 + }, + { + "field": "Until: 21:00" + }, + { + "field": 0.1 + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + }, + { + "field": "For: Weekends WinterDesignDay Holiday" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + }, + "ShadeTransSch": { + "data": [ + { + "field": "Through: 12/31" + }, + { + "field": "For: AllDays" + }, + { + "field": "Until: 24:00" + }, + { + "field": 0.0 + } + ], + "schedule_type_limits_name": "Fraction" + } + }, + "ScheduleTypeLimits": { + "Any Number": {}, + "Control Type": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 4 + }, + "FlowRate": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 10 + }, + "Fraction": { + "lower_limit_value": 0.0, + "numeric_type": "Continuous", + "upper_limit_value": 1.0 + }, + "On/Off": { + "lower_limit_value": 0, + "numeric_type": "Discrete", + "upper_limit_value": 1 + }, + "Temperature": { + "lower_limit_value": -60, + "numeric_type": "Continuous", + "unit_type": "Temperature", + "upper_limit_value": 200 + } + }, + "SetpointManager:Scheduled:DualSetpoint": { + "Only Water Loop Temp Manager": { + "control_variable": "Temperature", + "high_setpoint_schedule_name": "HVACTemplate-Always34", + "low_setpoint_schedule_name": "HVACTemplate-Always20", + "setpoint_node_or_nodelist_name": "Only Water Loop Supply Setpoint Nodes" + } + }, + "Shading:Zone:Detailed": { + "Main South Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 0.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.2 + }, + { + "vertex_x_coordinate": 19.8, + "vertex_y_coordinate": -1.3, + "vertex_z_coordinate": 2.2 + } + ] + }, + "South Door Overhang": { + "base_surface_name": "FRONT-1", + "number_of_vertices": 4, + "transmittance_schedule_name": "ShadeTransSch", + "vertices": [ + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 21.0, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": 0.0, + "vertex_z_coordinate": 2.6 + }, + { + "vertex_x_coordinate": 24.1, + "vertex_y_coordinate": -2.0, + "vertex_z_coordinate": 2.6 + } + ] + } + }, + "SimulationControl": { + "SimulationControl 1": { + "do_hvac_sizing_simulation_for_sizing_periods": "No", + "do_plant_sizing_calculation": "Yes", + "do_system_sizing_calculation": "Yes", + "do_zone_sizing_calculation": "Yes", + "maximum_number_of_hvac_sizing_simulation_passes": 1, + "run_simulation_for_sizing_periods": "No", + "run_simulation_for_weather_file_run_periods": "Yes" + } + }, + "Site:GroundTemperature:BuildingSurface": { + "Site:GroundTemperature:BuildingSurface 1": { + "april_ground_temperature": 21.5, + "august_ground_temperature": 23.1, + "december_ground_temperature": 21.6, + "february_ground_temperature": 21.4, + "january_ground_temperature": 21.5, + "july_ground_temperature": 23.0, + "june_ground_temperature": 22.9, + "march_ground_temperature": 21.5, + "may_ground_temperature": 22.0, + "november_ground_temperature": 21.7, + "october_ground_temperature": 22.2, + "september_ground_temperature": 23.1 + } + }, + "Site:Location": { + "CHICAGO_IL_USA TMY2-94846": { + "elevation": 190.0, + "latitude": 41.78, + "longitude": -87.75, + "time_zone": -6.0 + } + }, + "Sizing:Parameters": { + "Sizing:Parameters 1": { + "cooling_sizing_factor": 1.2, + "heating_sizing_factor": 1.2 + } + }, + "Sizing:Plant": { + "Only Water Loop Sizing Plant": { + "design_loop_exit_temperature": 34, + "loop_design_temperature_difference": 5.6, + "loop_type": "Condenser", + "plant_or_condenser_loop_name": "Only Water Loop PlantLoop" + } + }, + "Sizing:Zone": { + "SPACE1-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE1-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE1-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE2-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE2-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE3-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE3-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE4-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE4-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Sizing Zone": { + "cooling_minimum_air_flow_fraction": 0, + "design_specification_outdoor_air_object_name": "SPACE5-1 SZ DSOA", + "design_specification_zone_air_distribution_object_name": "SPACE5-1 SZ DSZAD", + "heating_maximum_air_flow_fraction": 0, + "zone_cooling_design_supply_air_humidity_ratio": 0.008, + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_humidity_ratio": 0.008, + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "SizingPeriod:DesignDay": { + "CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 10.7, + "day_of_month": 21, + "day_type": "SummerDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": 31.5, + "month": 7, + "rain_indicator": "No", + "sky_clearness": 1.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": 23.0, + "wind_direction": 230, + "wind_speed": 5.3 + }, + "CHICAGO_IL_USA Annual Heating 99% Design Conditions DB": { + "barometric_pressure": 99063.0, + "daily_dry_bulb_temperature_range": 0.0, + "day_of_month": 21, + "day_type": "WinterDesignDay", + "daylight_saving_time_indicator": "No", + "humidity_condition_type": "WetBulb", + "maximum_dry_bulb_temperature": -17.3, + "month": 1, + "rain_indicator": "No", + "sky_clearness": 0.0, + "snow_indicator": "No", + "solar_model_indicator": "ASHRAEClearSky", + "wetbulb_or_dewpoint_at_maximum_dry_bulb": -17.3, + "wind_direction": 270, + "wind_speed": 4.9 + } + }, + "SurfaceConvectionAlgorithm:Inside": { + "SurfaceConvectionAlgorithm:Inside 1": { + "algorithm": "TARP" + } + }, + "SurfaceConvectionAlgorithm:Outside": { + "SurfaceConvectionAlgorithm:Outside 1": { + "algorithm": "DOE-2" + } + }, + "ThermostatSetpoint:DualSetpoint": { + "All Zones SP Control": { + "cooling_setpoint_temperature_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_temperature_schedule_name": "Htg-SetP-Sch" + } + }, + "Timestep": { + "Timestep 1": { + "number_of_timesteps_per_hour": 4 + } + }, + "Version": { + "Version 1": { + "version_identifier": "9.6" + } + }, + "WindowMaterial:Gas": { + "AIR 13MM": { + "gas_type": "Air", + "thickness": 0.0127 + }, + "AIR 6MM": { + "gas_type": "Air", + "thickness": 0.0063 + }, + "ARGON 13MM": { + "gas_type": "Argon", + "thickness": 0.0127 + } + }, + "WindowMaterial:Glazing": { + "CLEAR 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.075, + "back_side_visible_reflectance_at_normal_incidence": 0.081, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.075, + "front_side_visible_reflectance_at_normal_incidence": 0.081, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.837, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.898 + }, + "CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.071, + "back_side_visible_reflectance_at_normal_incidence": 0.08, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.071, + "front_side_visible_reflectance_at_normal_incidence": 0.08, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.775, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.881 + }, + "GREY 3MM": { + "back_side_infrared_hemispherical_emissivity": 0.84, + "back_side_solar_reflectance_at_normal_incidence": 0.061, + "back_side_visible_reflectance_at_normal_incidence": 0.061, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.061, + "front_side_visible_reflectance_at_normal_incidence": 0.061, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.626, + "thickness": 0.003, + "visible_transmittance_at_normal_incidence": 0.611 + }, + "LoE CLEAR 6MM": { + "back_side_infrared_hemispherical_emissivity": 0.1, + "back_side_solar_reflectance_at_normal_incidence": 0.22, + "back_side_visible_reflectance_at_normal_incidence": 0.078, + "conductivity": 0.9, + "front_side_infrared_hemispherical_emissivity": 0.84, + "front_side_solar_reflectance_at_normal_incidence": 0.17, + "front_side_visible_reflectance_at_normal_incidence": 0.055, + "infrared_transmittance_at_normal_incidence": 0.0, + "optical_data_type": "SpectralAverage", + "solar_transmittance_at_normal_incidence": 0.6, + "thickness": 0.006, + "visible_transmittance_at_normal_incidence": 0.84 + } + }, + "Zone": { + "PLENUM-1": { + "ceiling_height": 0.609600067, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 283.2, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE1-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE2-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE3-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 239.247360229, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE4-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 103.311355591, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + }, + "SPACE5-1": { + "ceiling_height": 2.438400269, + "direction_of_relative_north": 0, + "multiplier": 1, + "type": 1, + "volume": 447.682556152, + "x_origin": 0, + "y_origin": 0, + "z_origin": 0 + } + }, + "ZoneControl:Thermostat": { + "SPACE1-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Thermostat": { + "control_1_name": "All Zones SP Control", + "control_1_object_type": "ThermostatSetpoint:DualSetpoint", + "control_type_schedule_name": "HVACTemplate-Always4", + "zone_or_zonelist_name": "SPACE5-1" + } + }, + "ZoneHVAC:EquipmentConnections": { + "SPACE1-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE1-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE1-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE1-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE1-1 Equipment", + "zone_name": "SPACE1-1", + "zone_return_air_node_or_nodelist_name": "SPACE1-1 Return Outlet" + }, + "SPACE2-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE2-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE2-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE2-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE2-1 Equipment", + "zone_name": "SPACE2-1", + "zone_return_air_node_or_nodelist_name": "SPACE2-1 Return Outlet" + }, + "SPACE3-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE3-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE3-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE3-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE3-1 Equipment", + "zone_name": "SPACE3-1", + "zone_return_air_node_or_nodelist_name": "SPACE3-1 Return Outlet" + }, + "SPACE4-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE4-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE4-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE4-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE4-1 Equipment", + "zone_name": "SPACE4-1", + "zone_return_air_node_or_nodelist_name": "SPACE4-1 Return Outlet" + }, + "SPACE5-1 Equipment Connections": { + "zone_air_exhaust_node_or_nodelist_name": "SPACE5-1 Return", + "zone_air_inlet_node_or_nodelist_name": "SPACE5-1 Supp Heating Coil Outlet", + "zone_air_node_name": "SPACE5-1 Zone Air Node", + "zone_conditioning_equipment_list_name": "SPACE5-1 Equipment", + "zone_name": "SPACE5-1", + "zone_return_air_node_or_nodelist_name": "SPACE5-1 Return Outlet" + } + }, + "ZoneHVAC:EquipmentList": { + "SPACE1-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE1-1 WAHP", + "zone_equipment_object_type": "ZoneHVAC:WaterToAirHeatPump" + } + ] + }, + "SPACE2-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE2-1 WAHP", + "zone_equipment_object_type": "ZoneHVAC:WaterToAirHeatPump" + } + ] + }, + "SPACE3-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE3-1 WAHP", + "zone_equipment_object_type": "ZoneHVAC:WaterToAirHeatPump" + } + ] + }, + "SPACE4-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE4-1 WAHP", + "zone_equipment_object_type": "ZoneHVAC:WaterToAirHeatPump" + } + ] + }, + "SPACE5-1 Equipment": { + "equipment": [ + { + "zone_equipment_cooling_sequence": 1, + "zone_equipment_heating_or_no_load_sequence": 1, + "zone_equipment_name": "SPACE5-1 WAHP", + "zone_equipment_object_type": "ZoneHVAC:WaterToAirHeatPump" + } + ] + } + }, + "ZoneHVAC:WaterToAirHeatPump": { + "SPACE1-1 WAHP": { + "air_inlet_node_name": "SPACE1-1 Return", + "air_outlet_node_name": "SPACE1-1 Supp Heating Coil Outlet", + "cooling_coil_name": "SPACE1-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_time_constant": 60, + "heating_coil_name": "SPACE1-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 20.0, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE1-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "outdoor_dry_bulb_temperature_sensor_node_name": "SPACE1-1 Outdoor Air Inlet", + "supplemental_heating_coil_name": "SPACE1-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE1-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE2-1 WAHP": { + "air_inlet_node_name": "SPACE2-1 Return", + "air_outlet_node_name": "SPACE2-1 Supp Heating Coil Outlet", + "cooling_coil_name": "SPACE2-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_time_constant": 60, + "heating_coil_name": "SPACE2-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 20.0, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE2-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "outdoor_dry_bulb_temperature_sensor_node_name": "SPACE2-1 Outdoor Air Inlet", + "supplemental_heating_coil_name": "SPACE2-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE2-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE3-1 WAHP": { + "air_inlet_node_name": "SPACE3-1 Return", + "air_outlet_node_name": "SPACE3-1 Supp Heating Coil Outlet", + "cooling_coil_name": "SPACE3-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_time_constant": 60, + "heating_coil_name": "SPACE3-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 20.0, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE3-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "outdoor_dry_bulb_temperature_sensor_node_name": "SPACE3-1 Outdoor Air Inlet", + "supplemental_heating_coil_name": "SPACE3-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE3-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE4-1 WAHP": { + "air_inlet_node_name": "SPACE4-1 Return", + "air_outlet_node_name": "SPACE4-1 Supp Heating Coil Outlet", + "cooling_coil_name": "SPACE4-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_time_constant": 60, + "heating_coil_name": "SPACE4-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 20.0, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE4-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "outdoor_dry_bulb_temperature_sensor_node_name": "SPACE4-1 Outdoor Air Inlet", + "supplemental_heating_coil_name": "SPACE4-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE4-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + }, + "SPACE5-1 WAHP": { + "air_inlet_node_name": "SPACE5-1 Return", + "air_outlet_node_name": "SPACE5-1 Supp Heating Coil Outlet", + "cooling_coil_name": "SPACE5-1 Cooling Coil", + "cooling_coil_object_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_outdoor_air_flow_rate": "Autosize", + "cooling_supply_air_flow_rate": "Autosize", + "fan_placement": "DrawThrough", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_time_constant": 60, + "heating_coil_name": "SPACE5-1 Heating Coil", + "heating_coil_object_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heating_outdoor_air_flow_rate": "Autosize", + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "maximum_outdoor_dry_bulb_temperature_for_supplemental_heater_operation": 20.0, + "maximum_supply_air_temperature_from_supplemental_heater": "Autosize", + "no_load_outdoor_air_flow_rate": "Autosize", + "no_load_supply_air_flow_rate": "Autosize", + "outdoor_air_mixer_name": "SPACE5-1 OA Mixing Box", + "outdoor_air_mixer_object_type": "OutdoorAir:Mixer", + "outdoor_dry_bulb_temperature_sensor_node_name": "SPACE5-1 Outdoor Air Inlet", + "supplemental_heating_coil_name": "SPACE5-1 Supp Heating Coil", + "supplemental_heating_coil_object_type": "Coil:Heating:Electric", + "supply_air_fan_name": "SPACE5-1 Supply Fan", + "supply_air_fan_object_type": "Fan:OnOff", + "supply_air_fan_operating_mode_schedule_name": "HVACTemplate-Always0" + } + }, + "ZoneInfiltration:DesignFlowRate": { + "SPACE1-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE1-1" + }, + "SPACE2-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE2-1" + }, + "SPACE3-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.0167, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE3-1" + }, + "SPACE4-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.00717, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE4-1" + }, + "SPACE5-1 Infil 1": { + "constant_term_coefficient": 0, + "design_flow_rate": 0.031089, + "design_flow_rate_calculation_method": "Flow/Zone", + "schedule_name": "INFIL-SCH", + "temperature_term_coefficient": 0, + "velocity_squared_term_coefficient": 0, + "velocity_term_coefficient": 0.2237, + "zone_or_zonelist_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_hvac_templates.epJSON b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_hvac_templates.epJSON new file mode 100644 index 00000000000..0d91dd9c583 --- /dev/null +++ b/src/pyExpandObjects/simulation/ExampleOutputs/HVACTemplate-5ZoneWaterToAirHeatPumpTowerBoiler_hvac_templates.epJSON @@ -0,0 +1,201 @@ +{ + "HVACTemplate:Plant:Boiler": { + "Main Boiler": { + "boiler_type": "HotWaterBoiler", + "capacity": "Autosize", + "efficiency": 0.8, + "fuel_type": "NaturalGas", + "priority": "1", + "water_outlet_upper_temperature_limit": 100.0 + } + }, + "HVACTemplate:Plant:MixedWaterLoop": { + "Only Water Loop": { + "high_temperature_design_setpoint": 34, + "low_temperature_design_setpoint": 20, + "operation_scheme_type": "Default", + "pump_control_type": "Intermittent", + "water_pump_configuration": "ConstantFlow", + "water_pump_rated_head": 179352 + } + }, + "HVACTemplate:Plant:Tower": { + "Main Tower": { + "free_convection_capacity": "Autosize", + "high_speed_fan_power": "Autosize", + "high_speed_nominal_capacity": "Autosize", + "low_speed_fan_power": "Autosize", + "low_speed_nominal_capacity": "Autosize", + "priority": "1", + "tower_type": "SingleSpeed" + } + }, + "HVACTemplate:Thermostat": { + "All Zones": { + "cooling_setpoint_schedule_name": "Clg-SetP-Sch", + "heating_setpoint_schedule_name": "Htg-SetP-Sch" + } + }, + "HVACTemplate:Zone:WaterToAirHeatPump": { + "HVACTemplate:Zone:WaterToAirHeatPump 1": { + "cooling_coil_gross_rated_cop": 3.5, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 4.2, + "heat_pump_heating_coil_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heat_pump_time_constant": 60, + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE1-1" + }, + "HVACTemplate:Zone:WaterToAirHeatPump 2": { + "cooling_coil_gross_rated_cop": 3.5, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 4.2, + "heat_pump_heating_coil_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heat_pump_time_constant": 60, + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE2-1" + }, + "HVACTemplate:Zone:WaterToAirHeatPump 3": { + "cooling_coil_gross_rated_cop": 3.5, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 4.2, + "heat_pump_heating_coil_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heat_pump_time_constant": 60, + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE3-1" + }, + "HVACTemplate:Zone:WaterToAirHeatPump 4": { + "cooling_coil_gross_rated_cop": 3.5, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 4.2, + "heat_pump_heating_coil_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heat_pump_time_constant": 60, + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE4-1" + }, + "HVACTemplate:Zone:WaterToAirHeatPump 5": { + "cooling_coil_gross_rated_cop": 3.5, + "cooling_coil_gross_rated_sensible_heat_ratio": "Autosize", + "cooling_coil_gross_rated_total_capacity": "Autosize", + "cooling_coil_type": "Coil:Cooling:WaterToAirHeatPump:EquationFit", + "cooling_supply_air_flow_rate": "Autosize", + "fraction_of_on_cycle_power_use": 0.01, + "heat_pump_coil_water_flow_mode": "Cycling", + "heat_pump_fan_delay_time": 60, + "heat_pump_heating_coil_gross_rated_capacity": "Autosize", + "heat_pump_heating_coil_gross_rated_cop": 4.2, + "heat_pump_heating_coil_type": "Coil:Heating:WaterToAirHeatPump:EquationFit", + "heat_pump_time_constant": 60, + "heating_supply_air_flow_rate": "Autosize", + "maximum_cycling_rate": 2.5, + "outdoor_air_flow_rate_per_person": 0.00944, + "outdoor_air_method": "Flow/Person", + "supplemental_heating_coil_capacity": "Autosize", + "supplemental_heating_coil_type": "Electric", + "supply_fan_delta_pressure": 75, + "supply_fan_motor_efficiency": 0.9, + "supply_fan_placement": "DrawThrough", + "supply_fan_total_efficiency": 0.7, + "template_thermostat_name": "All Zones", + "zone_cooling_design_supply_air_temperature": 14.0, + "zone_cooling_design_supply_air_temperature_difference": 11.11, + "zone_cooling_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_heating_design_supply_air_temperature": 50.0, + "zone_heating_design_supply_air_temperature_difference": 30.0, + "zone_heating_design_supply_air_temperature_input_method": "SupplyAirTemperature", + "zone_name": "SPACE5-1" + } + } +} \ No newline at end of file diff --git a/src/pyExpandObjects/simulation/ExampleOutputs/__init__.py b/src/pyExpandObjects/simulation/ExampleOutputs/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/src/pyExpandObjects/src/__init__.py b/src/pyExpandObjects/src/__init__.py new file mode 100644 index 00000000000..ae46d7ae745 --- /dev/null +++ b/src/pyExpandObjects/src/__init__.py @@ -0,0 +1,2 @@ +__version__ = "0.0" +__author__ = "John Grando" diff --git a/src/pyExpandObjects/src/custom_exceptions.py b/src/pyExpandObjects/src/custom_exceptions.py new file mode 100644 index 00000000000..e05263fa004 --- /dev/null +++ b/src/pyExpandObjects/src/custom_exceptions.py @@ -0,0 +1,76 @@ +import yaml +from jsonschema.exceptions import SchemaError +from logger import Logger + + +class CustomException(Logger, Exception): + """ + Custom Exceptions used to write outputs to logger and + indicate program-specific issues + """ + def __init__(self, msg=''): + super().__init__() + self.msg = msg + self.logger.error(msg) + return + + def __str__(self): + return self.msg + + +class InvalidInputException(CustomException): + """ + command line input errors + """ + pass + + +class InvalidEpJSONException(CustomException): + """ + epJSON errors + """ + pass + + +class InvalidTemplateException(CustomException): + """ + Incorrect template usage and references + """ + pass + + +class UniqueNameException(CustomException): + """ + Unintentional key-overriding in dictionary/JSON objects + """ + pass + + +class PyExpandObjectsException(CustomException): + """ + General ExpandObjects errors + """ + pass + + +class PyExpandObjectsYamlStructureException(CustomException): + """ + Hierarchy and organizational YAML file exceptions + """ + pass + + +class PyExpandObjectsSchemaError(CustomException, SchemaError): + pass + + +class PyExpandObjectsFileNotFoundError(CustomException, FileNotFoundError): + pass + + +class PyExpandObjectsTypeError(CustomException, TypeError): + pass + + +class PyExpandObjectsYamlError(CustomException, yaml.YAMLError): + pass diff --git a/src/pyExpandObjects/src/epjson_handler.py b/src/pyExpandObjects/src/epjson_handler.py new file mode 100644 index 00000000000..a28f93a4027 --- /dev/null +++ b/src/pyExpandObjects/src/epjson_handler.py @@ -0,0 +1,370 @@ +import pathlib +import re +import json +import jsonschema +import copy +from pathlib import Path +from custom_exceptions import PyExpandObjectsFileNotFoundError, PyExpandObjectsSchemaError, \ + PyExpandObjectsTypeError, UniqueNameException, InvalidEpJSONException +from logger import Logger + +this_script_path = Path(__file__).resolve() + + +class EPJSON(Logger): + """ + Handle epJSON and JSON specific tasks + + Attributes: + Validator: schema validator from jsonschema + + schema: loaded schema. Only validated schemas will be loaded. + + input_epjson: input epjson file + + schema_is_valid: initialized as None. False if failed, True if passed. + + input_epjson_is_valid: initialized as None. False if failed, True if passed. + """ + + def __init__(self, no_schema=False, logger_level="WARNING", logger_name='console_only_logger', reset_stream=False): + super().__init__(logger_level=logger_level, logger_name=logger_name, reset_stream=reset_stream) + self.no_schema = no_schema + self.schema = None + self.Validator = jsonschema.Draft4Validator + self.schema_is_valid = None + self.input_epjson = None + self.input_epjson_is_valid = None + if self.no_schema: + self.logger.warning( + 'Warning: Schema validation has been turned off. There will be no invalid choice error messages ' + 'generated, which may lead to unexplained errors') + return + + @staticmethod + def merge_epjson( + super_dictionary: dict, + object_dictionary: dict, + unique_name_override: bool = False, + unique_name_fail: bool = True): + """ + Merge a high level formatted dictionary with a sub-dictionary, both in epJSON format + + :param super_dictionary: high level dictionary used as the base object + :param object_dictionary: dictionary to merge into base object + :param unique_name_override: allow a duplicate unique name to overwrite an existing object + :param unique_name_fail: if override is set to False, choose whether to skip object or fail + :return: merged output of the two input dictionaries. Note, the super_dictionary is modified in this operation. + A copy operation was not performed intentionally. If the user wants the original super_dictionary + to remain unchanged then a copy.deepcopy() should be performed before running the function. + """ + if object_dictionary: + for object_type, object_structure in object_dictionary.items(): + if not super_dictionary.get(object_type): + super_dictionary[object_type] = {} + if isinstance(object_structure, dict): + for object_name, object_fields in object_structure.items(): + if not unique_name_override and object_name in super_dictionary[object_type].keys(): + # Raise exception if the object name already exists in the target dictionary. One exception + # to this rule is to ignore Schedule:Compact objects with template names. This is allowed + # to make it easier to specify schedules while building objects without needing to turn + # off the unique name check entirely. + if unique_name_fail and not ( + re.match( + r'HVACTemplate-Always', + object_name, + re.IGNORECASE) and object_type.lower() == 'schedule:compact' + ): + raise UniqueNameException("Unique name {} already exists in object {}".format( + object_name, + object_type + )) + else: # pragma: loop bug + # if two unique names are present and the user has opted to not fail on this condition + # and not override the existing object, then skip it. + continue + super_dictionary[object_type][object_name] = object_fields + else: + raise PyExpandObjectsTypeError( + 'An Invalid object {} failed to merge'.format(object_structure)) + return + + @staticmethod + def summarize_epjson(epjson): + """ + Provide summary of epJSON dictionary for comparisons and metrics. + + :param epjson: epJSON formatted dictionary + :return: dictionary of count summaries + """ + output = {} + for object_type, epjson_objects in epjson.items(): + for _, _ in epjson_objects.items(): + if not output.get(object_type): + output[object_type] = 1 + else: + output[object_type] = output[object_type] + 1 + return output + + @staticmethod + def purge_epjson(epjson, purge_dictionary=None): + """ + Remove objects in an input epJSON object. + :param epjson: input epJSON + :param purge_dictionary: key-value pair of object_type and list of regular expressions to remove items + (.* removes all objects) + :return: epJSON with items referenced in purge_dictionary removed. + """ + tmp_d = copy.deepcopy(epjson) + if purge_dictionary: + for object_type, object_structure in epjson.items(): + if object_type in purge_dictionary.keys(): + for object_name, object_fields in object_structure.items(): + # if the purge_dictionary value is a string, then it is a single regex to be processed, so + # convert it to a list and continue + if isinstance(purge_dictionary[object_type], str): + purge_dictionary[object_type] = [purge_dictionary[object_type], ] + # iterate over the list of regex strings in purge_dictionary value and pop the object if there + # is a match. + for rgx_match in purge_dictionary[object_type]: + if re.match(rgx_match, object_name): + tmp_d[object_type].pop(object_name) + # if the object_type is now empty, delete it as well. + if not tmp_d[object_type].keys(): + tmp_d.pop(object_type) + return tmp_d + + @staticmethod + def epjson_genexp(epjson): + """ + Create generator of individual epJSON objects in epJSON format from a dictionary of objects in epJSON format. + + {object_type: {object_name: object_fields}, {...}} -> {object_type: {object_name: object_fields}}, {...} + + :param epjson: epJSON object + :return: generator which returns one unique object in epJSON format for each object in an object_type. + """ + for object_type, epjson_objects in epjson.items(): + for object_name, object_structure in epjson_objects.items(): + yield {object_type: {object_name: object_structure}} + return None + + @staticmethod + def _get_json_file(json_location=None): + """ + Load json file and return an error and None if fails + + :param json_location: file location for json object + :return: loaded json object + """ + if not isinstance(json_location, (str, pathlib.PosixPath, pathlib.WindowsPath)): + raise PyExpandObjectsFileNotFoundError("JSON file location input is not a string: {}".format(json_location)) + try: + with open(json_location) as f: + json_obj = json.load(f) + return json_obj + except FileNotFoundError: + raise PyExpandObjectsFileNotFoundError("file does not exist: {}".format(json_location)) + except json.decoder.JSONDecodeError as e: + raise PyExpandObjectsTypeError("file is not a valid json: {}\n{}".format(json_location, str(e))) + + def get_epjson_objects( + self, epjson: dict, + object_type_regexp: str = '.*', + object_name_regexp: str = '.*') -> dict: + """ + Get objects from epJSON dictionary after filtering by object type and name. + + :param epjson: epJSON formatted Dictionary to scan + :param object_type_regexp: regular expression to match with object type + :param object_name_regexp: regular expression to match with object_name + :return: epJSON dictionary of matched objects. + """ + matched_epjson = {} + try: + for object_type, objects_structure in epjson.items(): + if re.match(object_type_regexp, object_type, re.IGNORECASE): + for object_name, object_structure in objects_structure.items(): + if re.match(object_name_regexp, object_name, re.IGNORECASE): + self.merge_epjson( + super_dictionary=matched_epjson, + object_dictionary={object_type: {object_name: object_structure}} + ) + return matched_epjson + except (ValueError, AttributeError, KeyError): + raise InvalidEpJSONException('Invalid epJSON formatted object: {}'.format(epjson)) + + def _validate_schema(self, schema): + """ + Validate schema based on the loaded + jsonschema pre-built validator (self.Validator) + + :param schema: loaded schema object + :return: validated schema object. object and boolean are added to class attributes. + """ + try: + self.Validator.check_schema(schema) + validated_schema = self.Validator(schema) + self.logger.info('schema version: %s', schema['epJSON_schema_version']) + self.logger.info('schema build: %s', schema['epJSON_schema_build']) + setattr(self, 'schema_is_valid', True) + setattr(self, 'schema', validated_schema) + return validated_schema + except jsonschema.exceptions.SchemaError as e: + raise PyExpandObjectsSchemaError(e.message) + except Exception as e: + raise PyExpandObjectsSchemaError("Schema Validator Failed: {}".format(str(e))) + + def _load_schema(self, schema_ref=None): + """ + Load schema to class object. + + :param schema_ref: (Optional) location of json schema or dictionary object. If not provided + then the default relative path and file (Energy+.schema.epJSON) will be used. + + :return: Validated schema and boolean flag as class attributes + """ + if self.no_schema: + self.schema = False + self.schema_is_valid = False + else: + if isinstance(schema_ref, dict): + schema = schema_ref + else: + # load schema from default if location is not provided. + if not schema_ref: + try: + schema_ref = str(this_script_path.parent / 'resources' / 'Energy+.schema.epJSON') + except FileNotFoundError: + raise PyExpandObjectsFileNotFoundError('Schema default file path is not valid; \n%s') + schema = self._get_json_file(schema_ref) + self._validate_schema(schema) + self.logger.info('Schema loaded') + return + + def validate_epjson(self, epjson): + """ + Validate json object as epJSON. Return object if valid + + :param epjson: epJSON object + :return: validated epJSON object + """ + building_object = epjson.get('Building') + global_geometry_rules_object = epjson.get('GlobalGeometryRules') + if not building_object or not global_geometry_rules_object: + raise PyExpandObjectsSchemaError('Building or GlobalGeometryRules object missing') + for object_type, object_structure in epjson.items(): + if object_type not in ['Building', 'GlobalGeometryRules']: + epjson_object = {'Building': building_object, 'GlobalGeometryRules': global_geometry_rules_object} + self.merge_epjson( + super_dictionary=epjson_object, + object_dictionary={object_type: object_structure}) + try: + file_validation = self.schema.is_valid(epjson_object) + if not file_validation: + (object_name, _), = object_structure.items() + # if the schema validation fails for the epJSON object, write out specific errors that occurred. + self.logger.error("Error: Input file does not meet schema format") + for err in self.schema.iter_errors(epjson_object): + if re.match(r'.*{.*}.*', err.message): + msg = '. '.join([ + err.message, + '. It appears a complex YAML reference was not resolved.']) + else: + msg = err.message + self.logger.error('Error: Invalid choice in {} ({}). {}' + .format(object_type, object_name, msg)) + else: + continue + except Exception as e: + raise PyExpandObjectsSchemaError("epJSON validation failed while processing {}: {}" + .format(object_type, str(e))) + return epjson + + def _validate_epjson(self, input_epjson): + """ + Validate json file based on loaded schema. I schema validation is off, then will return True for any + dictionary. + + :param input_epjson: epJSON object + :return: validated epJSON object. object and boolean flag added to class attributes. + """ + if self.no_schema: + if isinstance(input_epjson, dict): + setattr(self, 'input_epjson_is_valid', True) + setattr(self, 'input_epjson', input_epjson) + return input_epjson + else: + raise PyExpandObjectsTypeError("input epJSON is not a dictionary object") + try: + # Building ang GlobalGeometryRules are required objects. Retrieve those objects and one by one verify + # epJSON object types such that when an error is kicked, the logging statement can identify + # where it came from + building_object = input_epjson.get('Building') + global_geometry_rules_object = input_epjson.get('GlobalGeometryRules') + if not building_object or not global_geometry_rules_object: + raise PyExpandObjectsSchemaError('Building or GlobalGeometryRules object missing') + for object_type, object_structure in input_epjson.items(): + if object_type not in ['Building', 'GlobalGeometryRules']: + epjson_object = {'Building': building_object, 'GlobalGeometryRules': global_geometry_rules_object} + self.merge_epjson( + super_dictionary=epjson_object, + object_dictionary={object_type: object_structure}) + file_validation = self.schema.is_valid(epjson_object) + if not file_validation: + if len(object_structure.keys()) > 1: + self.logger.error("Error: Input file does not meet schema format") + for err in self.schema.iter_errors(input_epjson): + self.logger.error('Error: Invalid choice in {} {}' + .format(object_type, err.message)) + raise PyExpandObjectsSchemaError("Error: Schema Format is invalid") + else: + (object_name, _), = object_structure.items() + # if the schema validation fails for the epJSON object, write out specific errors that occurred. + self.logger.error("Error: Input file does not meet schema format") + for err in self.schema.iter_errors(input_epjson): + if re.match(r'.*{.*}.*', err.message): + msg = '. '.join([ + err.message, + '. It appears a complex YAML reference was not resolved.']) + else: + msg = err.message + self.logger.error('Error: Invalid choice in {} ({}). {}' + .format(object_type, object_name, msg)) + raise PyExpandObjectsSchemaError("Error: Schema Format is invalid") + else: + continue + setattr(self, 'input_epjson_is_valid', True) + setattr(self, 'input_epjson', input_epjson) + return input_epjson + except Exception as e: + raise PyExpandObjectsSchemaError("Error: epJSON validation failed: {}".format(str(e))) + + def _load_epjson(self, epjson_ref): + """ + Load schema to class object. + + :param epjson_ref: Location of epJSON file to read or object itself + + :return: boolean flag for valid epJSON and epJSON object as class attributes + """ + if isinstance(epjson_ref, dict): + input_epjson = epjson_ref + else: + input_epjson = self._get_json_file(epjson_ref) + self._validate_epjson(input_epjson) + self.logger.info( + 'input EPJSON file loaded, %s EnergyPlus object types', + len(self.input_epjson.keys()) + ) + return self.input_epjson + + def epjson_process(self, epjson_ref): + """ + Default loading and verification of epJSON file + :param epjson_ref: epJSON in dictionary format or file location. + :return: initialized class attributes and input_epJSON object + """ + self._load_schema() + self._load_epjson(epjson_ref=epjson_ref) + return diff --git a/src/pyExpandObjects/src/expand_objects.py b/src/pyExpandObjects/src/expand_objects.py new file mode 100644 index 00000000000..8b227149866 --- /dev/null +++ b/src/pyExpandObjects/src/expand_objects.py @@ -0,0 +1,3425 @@ +import copy +import yaml +import re +from pathlib import Path +import numbers +import typing + +from custom_exceptions import PyExpandObjectsTypeError, InvalidTemplateException, \ + PyExpandObjectsYamlError, PyExpandObjectsFileNotFoundError, PyExpandObjectsYamlStructureException, \ + PyExpandObjectsException +from epjson_handler import EPJSON + +source_dir = Path(__file__).parent + +yaml_file = None + +this_script_path = Path(__file__).resolve() + +try: + expansion_structure_location = \ + str(this_script_path.parent / 'resources' / 'template_expansion_structures.yaml') +except FileNotFoundError: + raise PyExpandObjectsFileNotFoundError('YAML file not found') + + +class ExpansionStructureLocation: + """ + Verify expansion structure file location or object + """ + def __get__(self, obj, owner): + return obj._expansion_structure + + def __set__(self, obj, value): + global yaml_file + if isinstance(value, dict): + parsed_value = value + elif isinstance(value, str): + value_is_path = Path(value) + if value_is_path.is_file(): + if not value.endswith(('.yaml', '.yml')): + raise PyExpandObjectsTypeError('Error: File extension does not match yaml type: {}'.format(value)) + else: + if yaml_file: + parsed_value = copy.deepcopy(yaml_file) + else: + with open(value, 'r') as f: + try: + # todo_eo: discuss tradeoff of safety vs functionality of SafeLoader/FullLoader. + # With FullLoader there would be more functionality and the ability to create more + # complex yaml files but it might not be necessary. + parsed_value = yaml.load(f, Loader=yaml.SafeLoader) + yaml_file = parsed_value + except yaml.YAMLError as err: + raise PyExpandObjectsYamlError('Failed to load YAML:\n{}'.format(err)) + else: + try: + # if the string is not a file, then try to load it directly with SafeLoader. + parsed_value = yaml.load(value, Loader=yaml.SafeLoader) + # if the parsed value is the same as the input value, it's probably a bad file path + if parsed_value == value: + raise PyExpandObjectsFileNotFoundError('Error: File does not exist: {}'.format(value)) + except yaml.YAMLError as exc: + if hasattr(exc, 'problem_mark'): + mark = exc.problem_mark + raise PyExpandObjectsYamlError("Error: Problem loading yaml at ({}, {})".format( + mark.line + 1, mark.column + 1)) + else: # pragma: no cover + raise PyExpandObjectsYamlError('Error: Unknown yaml loading error') + else: + raise PyExpandObjectsTypeError( + 'Error: Template expansion structure reference is not a file path or dictionary: {}'.format(value)) + obj._expansion_structure = parsed_value + return + + +class VerifyTemplate: + """ + Verify if template dictionary is a valid type and structure + """ + + def __get__(self, obj, owner): + template = obj._template + return template + + def __set__(self, obj, value): + if value: + if not isinstance(value, dict): + raise PyExpandObjectsTypeError('Error: Template must be a dictionary: {}'.format(value)) + try: + # template dictionary should have one template_type, one key (unique name) + # and one object as a value (field/value dict) + # this assignment below will fail if that is not the case. + (template_type, template_structure), = value.items() + (_, object_structure), = template_structure.items() + # ensure object is dictionary + if not isinstance(object_structure, dict): + raise InvalidTemplateException( + 'Error: An invalid object {} was passed as an {} object'.format(value, getattr(self, 'template_type'))) + obj._template = template_structure + except (ValueError, AttributeError): + raise InvalidTemplateException( + 'Error: An invalid object {} failed verification'.format(value)) + else: + obj._template = None + return + + +class ExpandObjects(EPJSON): + """ + Class to contain general expansion functions as well as methods to connect template outputs. + + Attributes: + expansion_structure: file or dictionary of expansion structure details (from YAML) + + template: epJSON dictionary containing HVACTemplate to expand + + template_type: HVACTemplate object type + + template_name: HVACTemplate unique name + + epjson: dictionary of epSJON objects to write to file + + unique_name: unique string used to modify to epJSON object names within the class + + HVACTemplate fields are stored as class attributes + """ + + template = VerifyTemplate() + expansion_structure = ExpansionStructureLocation() + + def __init__( + self, + template=None, + expansion_structure=expansion_structure_location, + logger_level='WARNING', + logger_name='console_only_logger'): + super().__init__(logger_level=logger_level, logger_name=logger_name) + self.logger.setLevel(logger_level) + self.expansion_structure = expansion_structure + self.template = template + if self.template: + try: + (hvac_template_type, hvac_template_structure), = template.items() + (template_name, template_structure), = hvac_template_structure.items() + except ValueError: + raise InvalidTemplateException( + 'Error: An Invalid object {} failed verification'.format(template)) + self.template_type = hvac_template_type + self.template_name = template_name + # apply template name and fields as class attributes + for template_field in template_structure.keys(): + # If the value can be a numeric, then format it, otherwise save as a string. + template_string_value = str(template_structure[template_field]) + num_rgx = re.match(r'^[-\d\.]+$', template_string_value) + if num_rgx: + try: + if '.' in template_string_value: + setattr(self, template_field, float(template_structure[template_field])) + else: + setattr(self, template_field, int(template_structure[template_field])) + except ValueError: + setattr(self, template_field, template_structure[template_field]) + else: + setattr(self, template_field, template_structure[template_field]) + else: + self.template_type = None + self.template_name = None + self.unique_name = None + self.epjson = {} + return + + def rename_attribute(self, old_attribute, new_attribute): + """ + Change attribute name to commonize variables. Do not perform the operation if the target attribute + already has a value. + + :param old_attribute: old attribute name + :param new_attribute: new attribute name + :return: None. Old attribute is deleted and new attribute created in class + """ + if hasattr(self, old_attribute) and not getattr(self, new_attribute, None): + self.logger.info('{} renamed to {}'.format(old_attribute, new_attribute)) + setattr(self, new_attribute, getattr(self, old_attribute)) + # Possibly make this optional + delattr(self, old_attribute) + return + + def _flatten_list( + self, + nested_list: list, + flat_list: list = [], + clear: bool = True) -> list: + """ + Flattens list of lists to one list of items. + + :param nested_list: list of nested dictionary objects + :param flat_list: list used to store recursive addition of objects + :param clear: Option to empty the recursive list + :return: flattened list of objects + """ + if clear: + flat_list = [] + for i in nested_list: + if isinstance(i, list): + self._flatten_list(i, flat_list, clear=False) + else: + flat_list.append(i) + return flat_list + + def get_structure( + self, + structure_hierarchy: list, + structure=None) -> dict: + """ + Retrieve structure from YAML loaded object. When retrieving TemplateObjects, the last item in the hierarchy + will be matched via regex instead of a direct key call for TemplateObjects. This is done to allow for + multiple template options in a single mapping. + + :param structure_hierarchy: list representing structure hierarchy + :param structure: YAML loaded dictionary, default is loaded yaml loaded object + :return: structured object as dictionary + """ + try: + structure = copy.deepcopy(structure or self.expansion_structure) + if not isinstance(structure_hierarchy, list): + raise PyExpandObjectsTypeError( + "Error: In {} ({}) Structure hierarchy input must be a list of structure keys: {}" + .format(self.template_type, self.template_name, structure_hierarchy)) + # iterate over structure hierarchy list. For each item, call the key to the YAML object. When looking up + # TemplateObjects, For the last item get the YAML object's keys and try a regex match. + for idx, key in enumerate(structure_hierarchy): + if structure_hierarchy[0] != 'TemplateObjects' or not idx == len(structure_hierarchy) - 1: + structure = structure[key] + else: + structure_key_list = list(structure.keys()) + for skl in structure_key_list: + if skl == 'AnyValue': + if re.match(r'\w+', str(key)) and str(key) != 'None': + structure = structure['AnyValue'] + elif skl == 'AnyNumber': + if isinstance(key, (int, float)) and str(key) != 'None': + structure = structure['AnyNumber'] + else: + if skl == str(key): + structure = structure[skl] + except KeyError: + raise PyExpandObjectsTypeError( + 'Error: In {} ({}) YAML structure does not exist for hierarchy: {}' + .format(self.template_type, self.template_name, structure_hierarchy)) + return structure + + def _get_option_tree( + self, + structure_hierarchy: list) -> dict: + """ + Retrieve structure from YAML loaded object and verify it is correctly formatted for an option tree + :param structure_hierarchy: list representing structure hierarchy + :return: structured object as dictionary + """ + try: + if not isinstance(structure_hierarchy, list): + raise PyExpandObjectsTypeError( + "Error: In {} ({}) Structrue input must be a list of structure keys: {}" + .format(self.template_type, self.template_name, structure_hierarchy)) + if structure_hierarchy[0] != 'OptionTree': + structure_hierarchy.insert(0, 'OptionTree') + except TypeError: + raise PyExpandObjectsTypeError( + "Error: In {} ({}) Call to YAML object was not a list of structure keys: {}" + .format(self.template_type, self.template_name, structure_hierarchy)) + structure = self.get_structure(structure_hierarchy=structure_hierarchy) + return structure + + def _get_option_tree_objects( + self, + structure_hierarchy: list) -> dict: + """ + Return objects from option tree leaves. + + :param structure_hierarchy: list representing structure hierarchy + :return: epJSON dictionary with unresolved complex inputs + """ + self.logger.info('Processing option tree: {}'.format(structure_hierarchy)) + option_tree = self._get_option_tree(structure_hierarchy=structure_hierarchy) + option_tree_dictionary = {} + if "BuildPath" in option_tree.keys(): + object_list = self._process_build_path(option_tree=option_tree['BuildPath']) + self.merge_epjson( + super_dictionary=option_tree_dictionary, + object_dictionary=self.yaml_list_to_epjson_dictionaries(object_list)) + if 'BaseObjects' in option_tree.keys(): + option_tree_leaf = self._get_option_tree_leaf( + option_tree=option_tree, + leaf_path=['BaseObjects', ]) + object_list = self._apply_transitions(option_tree_leaf=option_tree_leaf) + self.merge_epjson( + super_dictionary=option_tree_dictionary, + object_dictionary=self.yaml_list_to_epjson_dictionaries(object_list)) + if 'TemplateObjects' in option_tree.keys() and option_tree['TemplateObjects']: + try: + template_applied = None + template_field_processing = None + for template_field, template_tree in option_tree['TemplateObjects'].items(): + template_applied = None + template_field_processing = template_field + for field_option, objects in template_tree.items(): + # check if field option is 'None' and if object doesn't exist in the class, or if + # the fields match + if (field_option == 'None' and getattr(self, template_field, 'None') == 'None') or \ + (getattr(self, template_field, None) and ( + field_option == str(getattr(self, template_field)) or ( + field_option == 'AnyValue' and re.match(r'\w+', str(getattr(self, template_field)))) or ( + field_option == 'AnyNumber' and isinstance(getattr(self, template_field), (int, float))) + )): + option_tree_leaf = self._get_option_tree_leaf( + option_tree=option_tree, + leaf_path=['TemplateObjects', template_field, getattr(self, template_field, 'None')]) + object_list = self._apply_transitions(option_tree_leaf=option_tree_leaf) + self.merge_epjson( + super_dictionary=option_tree_dictionary, + object_dictionary=self.yaml_list_to_epjson_dictionaries(object_list)) + # Only one field option should be applied, so break after it is successful + template_applied = True + break + if not template_applied: + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) A template option was not applied for template field {} and option {}' + .format( + self.template_type, + self.template_name, + template_field_processing, + getattr(self, template_field_processing, None))) + except (AttributeError, KeyError): + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) TemplateObjects section for system type is invalid in yaml file.'. + format(self.template_type, self.template_name)) + return option_tree_dictionary + + def _get_option_tree_leaf( + self, + option_tree: dict, + leaf_path: list) -> dict: + """ + Return leaf from OptionTree with alternative options formatted in dictionary + + :param option_tree: Yaml object holding HVACTemplate option tree + :param leaf_path: path to leaf node of option tree + :return: Formatted dictionary with objects and alternative options to be applied. + """ + option_leaf = self.get_structure(structure_hierarchy=leaf_path, structure=option_tree) + if option_leaf: + transitions = option_leaf.pop('Transitions', None) + mappings = option_leaf.pop('Mappings', None) + # flatten object list in case it was nested due to yaml formatting + try: + objects = self._flatten_list(option_leaf['Objects']) + except KeyError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Invalid or missing Objects location in YAML file: {}" + .format(self.template_type, self.template_name, option_tree)) + return { + 'Objects': objects, + 'Transitions': transitions, + 'Mappings': mappings + } + else: + # If no objects found, return blank dictionary + return {} + + def _apply_transitions( + self, + option_tree_leaf: dict) -> list: + """ + Set object field values in an OptionTree leaf, which consist of a 'Objects', 'Transitions', and 'Mappings' keys + using a supplied Transitions dictionary. + + Transitions translates template input values to fields in Objects. A more direct method of transitioning + template inputs to object values can be done using field name formatting (e.g. field_name: {template_field}) + in the yaml file. This method of application is used to override default values if template + inputs are provided. + + Mappings maps values from templates to objects. This is necessary when the template input is not a direct + transition to an object value. + + :param option_tree_leaf: YAML loaded option tree end node with three keys: objects, transitions, mappings + :return: list of dictionary objects with transitions and mappings applied + """ + # if a dictionary without an objects key is provided, then return a blank dictionary because no transitions + # or mappings will be performed either. + if not option_tree_leaf.get('Objects'): + return {} + option_tree_transitions = option_tree_leaf.pop('Transitions', None) + option_tree_mappings = option_tree_leaf.pop('Mappings', None) + # for each transition instruction, iterate over the objects and apply if the object_type matches the reference + if option_tree_transitions: + # flatten list if it is nested due to yaml structuring + option_tree_transitions = self._flatten_list(option_tree_transitions) + # iterate over the transitions instructions + # Note, this method may be deprecated due to the more direct option of specifying the class attribute + # directly in the yaml text field (e.g. field_name: {class_variable}). However, this code has not been + # removed in case it proves useful during development. + try: + for opt in option_tree_transitions: + for object_type_reference, transition_structure in opt.items(): + for template_field, object_field in transition_structure.items(): + # Ensure there is only one object_key and it is 'Objects' + try: + (object_key, tree_objects), = option_tree_leaf.items() + if not object_key == 'Objects': + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) OptionTree leaf is incorrectly formatted Transition: {}" + .format(self.template_type, self.template_name, opt)) + except ValueError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) OptionTree leaf is incorrectly formatted Transition: {}" + .format(self.template_type, self.template_name, opt)) + # iterate over each object from 'Objects' dictionary + for tree_object in tree_objects: + for object_type, _ in tree_object.items(): + # if the object reference matches the object or 'AnyValue', apply the transition + if re.match(object_type_reference, object_type) or \ + object_type_reference == 'AnyValue' or \ + (object_type_reference == 'AnyNumber' and isinstance(object_type, (int, float))): + # if the object_field is a dictionary, then the value is a formatted string to + # apply with the template_field. Otherwise, just try to get the value from the + # template field, which is stored as a class attribute (on class initialization). + # Make a tmp_object_field variable to hold the instructions and prevent + # overwriting the original object + tmp_object_field = None + try: + # if the value is a formatted string referencing a class attribute + # then reformat the object to be processed as a dictionary with + # the key being the template name + tmp_object_field = copy.deepcopy(object_field) + if isinstance(tmp_object_field, str) and '{' in tmp_object_field: + tmp_object_field = {template_field: tmp_object_field} + # if the value is a dictionary, then do the same thing without the + # preformatting above. + if isinstance(tmp_object_field, dict): + (tmp_object_field, object_val), = tmp_object_field.items() + # Try to perform numeric evaluation if operators and formatting brackets + # are present. regex match is to avoid any operator symbols used in + # variable names, but not intended for evaluation, e.g. HVACTemplate-Always + if re.match(r'.*[a-zA-Z]\s*[-+/*]\s*[a-zA-Z].*', object_val): + if '{' in object_val: + object_value = object_val.replace('{', '{0.').format(self) + else: + object_value = object_val + elif any(i in ['*', '+', '/', '-'] for i in object_val) and '{' in object_val: + # Add '0.' for accessing class object attributes + try: + object_value = eval(object_val.replace('{', '{0.').format(self)) + except SyntaxError: + # if attempt at numerical evaluation fails, just pass the + # string directly + object_value = object_val + else: + object_value = object_val.format(getattr(self, template_field)) + else: + object_value = getattr(self, template_field) + except (AttributeError, KeyError, NameError): + object_value = None + self.logger.debug("A template field ({}) / value ({}) pair was attempted " + "to be applied to an object ({}) field ({}) but the " + "transition did not complete." + .format(template_field, + getattr(self, template_field, None), + object_type, + object_field)) + if object_value: + # On a match and valid value, apply the field. + # If the object is a 'super' object used in a + # BuildPath, then insert it in the 'Fields' dictionary. Otherwise, insert it + # into the top level of the object. + # if tmp_object_field was not created then just try applying a copy of the + # original value + if not tmp_object_field: + tmp_object_field = copy.deepcopy(object_field) + if 'Fields' in tree_object[object_type].keys(): + tree_object[object_type]['Fields'][tmp_object_field] = object_value + else: + tree_object[object_type][tmp_object_field] = object_value + except (KeyError, AttributeError, ValueError): + raise InvalidTemplateException( + 'In {} ({}) A TemplateObject transition failed and is likely incorrectly formatted' + .format(self.template_type, self.template_name)) + # for each mapping instruction, iterate over the objects and apply if the object_type matches the reference + if option_tree_mappings: + try: + # flatten list if it is nested due to yaml structuring + option_tree_mappings = self._flatten_list(option_tree_mappings) + # iterate over mapping instructions + for otm in option_tree_mappings: + for object_type_reference, mapping_structure in otm.items(): + for mapping_field, mapping_dictionary in mapping_structure.items(): + # Ensure there is only one object_key and it is 'Objects' + try: + (object_key, tree_objects), = option_tree_leaf.items() + if not object_key == 'Objects': + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) OptionTree leaf has incorrectly formatted Mapping: {}" + .format(self.template_type, self.template_name, otm)) + except ValueError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) OptionTree leaf is incorrectly formatted Mapping: {}" + .format(self.template_type, self.template_name, otm)) + # iterate over each object from 'Objects' dictionary + for tree_object in tree_objects: + for object_type, object_fields in tree_object.items(): + # if the object reference in the mapping dictionary matches the object or is + # 'AnyValue' then apply the map + if re.match(object_type_reference, object_type): + for map_option, sub_dictionary in mapping_dictionary.items(): + if (map_option == 'None' and getattr(self, mapping_field, 'None') == 'None') or \ + (hasattr(self, mapping_field) and getattr(self, mapping_field) == map_option) or \ + (map_option == 'AnyValue' and getattr(self, mapping_field, None)) or \ + (map_option == 'AnyNumber' and isinstance( + getattr(self, mapping_field, None), (int, float))): + for field, val in sub_dictionary.items(): + try: + # On a match and valid value, apply the field. + # If the object is a 'super' object used in a + # BuildPath, then insert it in the 'Fields' dictionary. + # Otherwise, insert it into the top level of the object. + if 'Fields' in tree_object[object_type].keys(): + tree_object[object_type]['Fields'][field] = val + else: + tree_object[object_type][field] = val + except AttributeError: + self.logger.warning( + "Warning: Template field was attempted to be " + "mapped to object but was not present " + "in template inputs. mapping field: {}, " + "object type: {}".format(field, object_type)) + except (KeyError, AttributeError, ValueError): + raise InvalidTemplateException( + 'In {} ({}) A TemplateObject mapping failed an is likely incorrectly formatted' + .format(self.template_type, self.template_name)) + return option_tree_leaf['Objects'] + + def yaml_list_to_epjson_dictionaries(self, yaml_list: list) -> dict: + """ + Convert list of YAML dictionaries into epJSON formatted dictionaries. + + YAML dictionaries can either be regular or 'super' objects which contain 'Fields' and 'Connectors' + :param yaml_list: list of yaml objects to be formatted. + :return: epJSON formatted dictionary + """ + output_dictionary = {} + for transitioned_object in yaml_list: + if transitioned_object: + try: + (transitioned_object_type, transitioned_object_structure), = copy.deepcopy(transitioned_object).items() + # get the dictionary nested in 'Fields' for super objects + if transitioned_object_structure.get('Fields'): + object_name = transitioned_object_structure['Fields'].pop('name') + object_name = object_name.replace('{}', '{unique_name}').replace('{', '{0.').format(self) + transitioned_object_structure = transitioned_object_structure['Fields'] + else: + object_name = transitioned_object_structure.pop('name') + object_name = object_name.replace('{}', '{unique_name}').replace('{', '{0.').format(self) + self.merge_epjson( + super_dictionary=output_dictionary, + object_dictionary={transitioned_object_type: {object_name: transitioned_object_structure}}) + except (TypeError, KeyError, ValueError): + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) YAML object is incorrectly formatted: {}" + .format(self.template_type, self.template_name, transitioned_object)) + return output_dictionary + + def _resolve_complex_input_from_build_path( + self, + build_path: list, + lookup_instructions: dict, + connector_path: str = 'AirLoop') -> str: + """ + Resolve a complex input using a build path and location based instructions. + + :param build_path: list of EnergyPlus super objects forming a build path + :param lookup_instructions: instructions identifying the node location to return + :param connector_path: fluid flow type path (AirLoop only available) + :return: Resolved field value + """ + # keep a copy for output + backup_copy = copy.deepcopy(lookup_instructions) + # retrieve the necessary instructions from the instructions + # if Location is an integer, lookup by index. If it is a string, treat is as a regex and look for an + # 'occurrence' key as well + try: + li = copy.deepcopy(lookup_instructions) + location = li.pop('Location') + connector_path = connector_path or li.pop('ConnectorPath', None) + value_location = li.pop('ValueLocation') + except KeyError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Build Path Location or ValueLocation reference is invalid." + "\nbuild path: {}\nlookup instructions: {}" + .format(self.template_type, self.template_name, build_path, backup_copy)) + try: + # If location is an integer, then just retrieve the index + if isinstance(location, int): + super_object = build_path[location] + (super_object_type, super_object_structure), = super_object.items() + # If the called object is a manipulated super object (Connectors = False) then grab the object before it + if not super_object_structure['Connectors'][connector_path]: + super_object = build_path[location - 1] + (super_object_type, super_object_structure), = super_object.items() + else: + # If location is not an integer, assume it is a string and perform a regex match. Also, check for an + # Occurrence key in case the first match is not desired. A Occurrence of -1 will just keep matching and + # return the results from the last object match. + occurrence = li.pop('Occurrence', 1) + if not isinstance(occurrence, int): + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) Occurrence key in complex reference is not an integer: {}' + .format(self.template_type, self.template_name, backup_copy)) + match_count = 0 + previous_object = {} + for super_object in build_path: + (super_object_type_check, _), = super_object.items() + if re.match(location, super_object_type_check): + (super_object_type, super_object_structure), = super_object.items() + # If the called object is a manipulated super object (Connectors = False) + # and 'key' or 'self' is not specified then grab the object before it + # todo_eo: test this conditional clause to see if it is still being used and in what cases. + # make more explicit explanation if needed. + if not super_object_structure['Connectors'][connector_path] and \ + value_location.lower() not in ['self', 'key']: + (super_object_type, super_object_structure), = previous_object.items() + match_count += 1 + if match_count == occurrence: + break + previous_object = super_object + if (not match_count >= occurrence and occurrence != -1) or match_count == 0: + self.logger.warning( + "Warning: In {} ({}) The number of occurrence matches in a build path was never reached for " + "complex reference. This reference will not be applied." + "\nbuild path: {}\ncomplex reference: {}" + .format(self.template_type, self.template_name, build_path, backup_copy)) + return None + except (IndexError, ValueError): + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Invalid build path or lookup instructions:\nbuild_path: {}\nlookup_instructions: {}" + .format(self.template_type, self.template_name, build_path, backup_copy)) + if value_location.lower() == 'self': + return super_object_type + elif value_location.lower() == 'key': + return super_object_structure['Fields']['name'] + elif value_location in ('Inlet', 'Outlet'): + reference_node = super_object_structure['Connectors'][connector_path][value_location] + return super_object_structure['Fields'][reference_node] + else: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Invalid complex input for Build Path " + "Lookup:\nlookup_instructions: {}\nvalue_location: {}" + .format(self.template_type, self.template_name, backup_copy, value_location)) + + def _resolve_complex_input( + self, + field_name: str, + input_value: typing.Union[str, int, float, dict, list], + epjson: dict = None, + build_path: list = None, + recursions: int = 0) -> \ + typing.Generator[str, typing.Dict[str, str], None]: + """ + Resolve a complex input reference into a field value + + :param field_name: object field name + :param input_value: field value input + :param epjson: epJSON dictionary of objects + :param build_path: BuildPath to reference for lookup + :param recursions: cumulative count of recursive calls so that a cap can be made. This is a backup in case + RecursionError misses an infinite loop. + :return: resolved field value + """ + # Try class attributes if variables not defined in function + epjson = epjson or self.epjson + build_path = build_path or getattr(self, 'build_path', None) + if isinstance(input_value, numbers.Number): + yield {"field": field_name, "value": input_value} + elif isinstance(input_value, str): + # if a string is present within the formatting brackets, it is intended to be the template field (which is + # a class attribute). + # Extract the attribute reference and attempt to apply it. + formatted_value = None + try: + formatted_value = input_value.replace('{}', '{unique_name}').replace('{', '{0.').format(self) + except AttributeError: + # If the format attempt failed, but autosize is indicated in the field value, then use it. + # example '{class_attribute} / 2 or Autosize' + if 'Autosize' in input_value: + formatted_value = 'Autosize' + # If the class attribute does not exist, yield None as flag to handle in parent process. + yield {'field': field_name, 'value': formatted_value} + if formatted_value: + # if a simple schedule is indicated by name, create it here. The schedule + # is stored to the class epjson attribute. + always_val_rgx = re.search(r'^HVACTemplate-Always([\d\.]+)', str(formatted_value)) + if always_val_rgx: + always_val = always_val_rgx.group(1) + self.build_compact_schedule( + structure_hierarchy=['Objects', 'Common', 'Objects', 'Schedule', 'Compact', 'ALWAYS_VAL'], + insert_values=[always_val, ] + ) + # Try to evaluate the string, in case it is a mathematical expression. + # If the value is 'None' then pass it along without evaluation so it stays as a string. + if str(formatted_value) != 'None': + # Catch bad attempts at numerical formatting + if re.match(r'Autosize.*or\s+Autosize', formatted_value): + formatted_value = 'Autosize' + try: + formatted_value = eval(formatted_value) + except (NameError, SyntaxError): + # Try to convert formatted value to correct type if it was not evaluated + num_rgx = re.match(r'^[-\d\.]+$', formatted_value) + if num_rgx: + if '.' in formatted_value: + formatted_value = float(formatted_value) + else: + formatted_value = int(formatted_value) + yield {"field": field_name, "value": formatted_value} + elif isinstance(input_value, dict): + # unpack the referenced object type and the lookup instructions + try: + (reference_object_type, lookup_instructions), = input_value.items() + except ValueError: + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) Complex input reference is invalid: {}' + .format(self.template_type, self.template_name, input_value)) + # If the input_value is instructing to use a 'BuildPathReference' then insert the object by build + # path location + if reference_object_type.lower() == 'buildpathreference': + if not build_path: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Build Path complex input was specified with no build" + " path available. field {}, input {}" + .format(self.template_type, self.template_name, field_name, input_value)) + try: + # Get the referenced node value + extracted_value = self._resolve_complex_input_from_build_path( + build_path=build_path, + lookup_instructions=lookup_instructions) + # Resolve the extracted value with this function. + try: + # safeguard in case Recursions exception misses infinite loop + if recursions > 5: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + complex_generator = self._resolve_complex_input( + epjson=epjson, + field_name=field_name, + input_value=extracted_value, + recursions=recursions + 1) + for cg in complex_generator: + yield cg + except RecursionError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + except (KeyError, PyExpandObjectsYamlStructureException): + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Object field could not be resolved: input {}, " + "field {}\nbuild path: {}" + .format(self.template_type, self.template_name, input_value, field_name, build_path)) + else: + # If the input_value is an object type reference then try to match it with the EnergyPlus objects in + # the super dictionary. + for object_type in epjson.keys(): + if re.match(reference_object_type, object_type): + # if 'self' is used as the reference node, return the energyplus object type + # if 'key' is used as the reference node, return the unique object name + # if the reference node is a dictionary, then it is a nested complex input and the function + # is reapplied recursively + # For anything else, process the reference node and return a value. + (object_name, _), = epjson[object_type].items() + try: + if lookup_instructions.lower() == 'self': + yield {"field": field_name, "value": object_type} + elif lookup_instructions.lower() == 'key': + yield {"field": field_name, "value": object_name} + elif isinstance(epjson[object_type][object_name][lookup_instructions], dict): + try: + # safeguard in case Recursions exception misses infinite loop + if recursions > 5: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + complex_generator = self._resolve_complex_input( + epjson=epjson, + field_name=field_name, + input_value=epjson[object_type][object_name][lookup_instructions], + recursions=recursions + 1) + for cg in complex_generator: + yield cg + except RecursionError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + else: + # attempt to format both the field and value to be returned. + if isinstance(field_name, str): + formatted_field_name = field_name.replace('{}', '{unique_name}').replace('{', '{0.').format(self) + else: + formatted_field_name = field_name + if isinstance(epjson[object_type][object_name][lookup_instructions], str): + raw_val = epjson[object_type][object_name][lookup_instructions] + formatted_value = raw_val.replace('{}', '{unique_name}').replace('{', '{0.').format(self) + else: + formatted_value = epjson[object_type][object_name][lookup_instructions] + yield {"field": formatted_field_name, + "value": formatted_value} + except KeyError: + raise InvalidTemplateException( + 'Error: In {} ({}) A complex input failed because a bad dictionary key was referenced ' + 'when trying to process the field {} with a value of {}' + .format(self.template_type, self.template_name, field_name, input_value)) + elif isinstance(input_value, list): + # When the input is a list, iterate and apply this function recursively to each object. + try: + # safeguard in case Recursions exception misses infinite loop + if recursions > 5: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + tmp_list = [] + for input_list_item in input_value: + tmp_d = {} + for input_list_field, input_list_value in input_list_item.items(): + # safeguard in case Recursions exception misses infinite loop + if recursions > 5: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + complex_generator = self._resolve_complex_input( + epjson=epjson, + field_name=input_list_field, + input_value=input_list_value, + recursions=recursions + 1) + for cg in complex_generator: + tmp_d[cg["field"]] = cg["value"] + tmp_list.append(tmp_d) + yield {"field": field_name, "value": tmp_list} + except RecursionError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Maximum Recursion limit exceeded when resolving {} for {}" + .format(self.template_type, self.template_name, input_value, field_name)) + return + + def resolve_objects(self, epjson, reference_epjson=None): + """ + Resolve complex inputs in epJSON formatted dictionary + + :param epjson: epJSON dictionary with complex inputs + :param reference_epjson: (optional) epJSON dictionary to be used as reference objects for complex lookups. If + None, then the input epjson will be used + :return: epJSON dictionary with values replacing complex inputs + """ + schedule_dictionary = None + if not reference_epjson: + reference_epjson = copy.deepcopy(epjson) + for object_type, object_structure in epjson.items(): + for object_name, object_fields in object_structure.items(): + # If a Schedule:Compact object is specified, and has special formatting, build it here. The object + # is saved to the class epjson attribute. + if object_type == 'Schedule:Compact' and \ + object_fields.get('structure') and object_fields.get('insert_values'): + structure = object_fields.pop('structure') + insert_values = object_fields.pop('insert_values') + schedule_dictionary = self.build_compact_schedule( + structure_hierarchy=structure.split(':'), + insert_values=insert_values) + else: + for field_name, field_value in copy.deepcopy(object_fields).items(): + input_generator = self._resolve_complex_input( + epjson=reference_epjson, + field_name=field_name, + input_value=field_value) + generated_output = False + for ig in input_generator: + generated_output = True + # if None was returned as the value, pop the key out of the dictionary and skip it. + # use the zero comparison to specifically pass that number. The 'is not None' clause is + # not used here as this is more strict. + if isinstance(ig['value'], dict): + raise PyExpandObjectsYamlStructureException( + 'complex input was not processed for object {}. Complex input: {}, output value' + ' {}'.format(object_name, field_name, field_value)) + try: + test_zero = float(ig['value']) + except (TypeError, ValueError): + test_zero = ig['value'] + if test_zero == 0 or ig['value']: + # drop any None or empty returned values if a list is returned + if isinstance(ig['value'], list): + ig['value'] = [i for i in ig['value'] if i] + object_fields[ig['field']] = ig['value'] + else: + object_fields.pop(ig['field']) + # The second half of the if statement is mainly for testing cases that have + # object type Mock and no complex input information. Otherwise, all mock tests + # that hit this section fail with this exception. + if not generated_output and isinstance(field_value, (dict, list)): + raise PyExpandObjectsYamlStructureException( + "Error: in {} ({}) The complex input ({}) was not resolved for " + "the field {} in the {} object" + .format(self.template_type, self.template_name, field_value, field_name, object_type)) + # if a schedule dictionary was created, add it to the class epjson + if schedule_dictionary: + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=schedule_dictionary, + unique_name_override=True) + return epjson + + def _create_objects(self, epjson=None): + """ + Create a set of EnergyPlus objects for a given template + + :param epjson: epJSON object to use for merge and reference. + :return: epJSON dictionary of newly created objects. The input epJSON dictionary is also modified to include + the newly created objects + """ + # if epJSON dictionary not passed, use the class attribute + epjson = epjson or self.epjson + # Get the yaml structure from the template type + structure_hierarchy = self.template_type.split(':') + epjson_from_option_tree = self._get_option_tree_objects(structure_hierarchy=structure_hierarchy) + # Remove any dummy objects created during process + epjson_from_option_tree.pop('DummyObject', None) + # Always use merge_epjson to store objects in self.epjson in case objects have already been stored to + # that dictionary during processing + # For this processing, a temporary dictinoary needs to be made that merges the base epjson and the epjson + # created from the option tree. This is necessary such that a complex reference can find any epjson object that + # was created. + tmp_epjson = copy.deepcopy(epjson) + self.merge_epjson( + super_dictionary=tmp_epjson, + object_dictionary=copy.deepcopy(epjson_from_option_tree) + ) + resolved_inputs = self.resolve_objects(epjson_from_option_tree, reference_epjson=tmp_epjson) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=resolved_inputs) + return resolved_inputs + + def _parse_build_path(self, object_list, epjson=None): + """ + Iterate over build path and check if each object is a super object. If not, commit the object to the input + epJSON. Return a build path of only super objects. + + :param object_list: BuildPath list of objects which may contain mixed combination of regular objects and super objects + :param epjson: input epJSON dictionary + :return: build path of only super objects + """ + # Look over each object in the object_list. If it is not a super object, then process it and save to + # class epjson object. Use the current object_list as the reference epJSON to resolve the objects. + # If a larger scope of reference for the epJSON is needed, the object should be placed in BaseObjects or + # TemplateObjects sections of the yaml file. + if not epjson: + epjson = self.epjson + if object_list: + # make a temporary object list since non-super objects will be removed from the list + tmp_object_list = [] + for o in object_list: + (object_type, object_structure), = o.items() + if not object_structure.get('Fields') and not object_structure.get('Connectors'): + epjson_object = self.yaml_list_to_epjson_dictionaries([o, ]) + epjson_objects = self.yaml_list_to_epjson_dictionaries(object_list) + epjson_resolved_object = self.resolve_objects(epjson=epjson_object, reference_epjson=epjson_objects) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=epjson_resolved_object + ) + else: + tmp_object_list.append(o) + # set the object list to only contain super objects + object_list = tmp_object_list + return object_list + + def _apply_build_path_action(self, build_path, action_instructions): + """ + Mutate a build path list based on a set of action instructions + + :param build_path: Input build path list + :param action_instructions: Formatted instructions to apply an action. Valid actions are 'Insert', 'Remove', + and 'Replace' (case insensitive). + :return: mutated dictionary with action applied. + """ + # get the indicated occurrence that the regex will match. First match is default. + occurrence = action_instructions.pop('Occurrence', 1) + # Format check inputs for occurrence + if not isinstance(occurrence, int) or (isinstance(occurrence, int) and occurrence < 0): + raise PyExpandObjectsYamlStructureException('Error: In {} ({}) Occurrence must be a non-negative integer: {}' + .format(self.template_type, self.template_name, occurrence)) + # backup copy for output + backup_copy = copy.deepcopy(action_instructions) + try: + # Format check inputs for action_type and location + action_type = action_instructions.pop('ActionType').lower() + if action_type not in ('insert', 'remove', 'replace'): + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) Invalid action type requested: {}' + .format(self.template_type, self.template_name, action_instructions)) + # check 'Location' format and ensure it is the right type and value. + # if location is an integer then object_reference is not needed because the action will be + # performed on that index and no object lookup will be required. + if action_instructions.get('Location') is None and (action_type == 'remove' or action_type == 'replace'): + location = None + object_reference = action_instructions.pop('ObjectReference') + elif isinstance(action_instructions['Location'], str) and \ + action_instructions['Location'].lower() in ('before', 'after'): + location = action_instructions.pop('Location').lower() + object_reference = action_instructions.pop('ObjectReference') + elif isinstance(action_instructions['Location'], int): + location = action_instructions.pop('Location') + object_reference = None + else: + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) Build path action insert reference value is not "Before", "After" ' + 'or an integer: {}' + .format(self.template_type, self.template_name, backup_copy)) + except KeyError: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Build Path action is missing required instructions {}." + .format(self.template_type, self.template_name, backup_copy)) + # Get the option tree leaf for an action. + # Remove does not require this step since it just removes objects from the original build path + if action_type != 'remove': + option_tree_leaf = self._get_option_tree_leaf( + option_tree=action_instructions, + leaf_path=[]) + # Apply transitions to the leaf to create an object list. + object_list = self._apply_transitions(option_tree_leaf=option_tree_leaf) + else: + object_list = None + object_list = self._parse_build_path(object_list=object_list) + # Create new build path dictionary since the input dictionary will be mutated + output_build_path = copy.deepcopy(build_path) + # if the location is an integer, just perform the action on that index, otherwise, iterate over super objects + # keeping count of the index + if isinstance(location, int): + if action_type == 'insert': + # if location is negative, then get the positive list index by subtraction + if location < 0: + location = len(build_path) + location + 1 + output_build_path.insert(location, object_list) + elif action_type == 'remove': + output_build_path.pop(location) + elif action_type == 'replace': + output_build_path[location] = object_list + else: + # Iterate over the objects finding the appropriate location for the action. + # Keep a count of number of times object has been matched. This is for the 'Occurrence' key to + # perform an action on the nth occurrence of a match. + match_count = 0 + for idx, super_object in enumerate(build_path): + # if there is a match to the object type, and the occurrence is correct, then perform the action + for super_object_type, super_object_structure in super_object.items(): + if object_reference and re.match(object_reference, super_object_type): + match_count += 1 + if match_count == occurrence: + if action_type == 'insert' and isinstance(location, str): + # The location variable is now either 'before' or 'after', + # so mutate the variable to be an integer value for offset + location = 0 if location == 'before' else 1 + output_build_path.insert(idx + location, object_list) + elif action_type == 'remove': + output_build_path.pop(idx) + elif action_type == 'replace': + output_build_path[idx] = object_list + else: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Build Path action could not be performed due to a bad action" + "statement: build path {}, action: {}" + .format(self.template_type, self.template_name, build_path, action_instructions)) + # check if the number of matches actually met the occurrence threshold + if not match_count >= occurrence: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) The number of occurrence matches in a build path was never reached for " + "an action. build path: {}, action: {}" + .format(self.template_type, self.template_name, build_path, action_instructions)) + # flatten build path list before output + output_build_path = self._flatten_list(output_build_path) + return output_build_path + + def _connect_and_convert_build_path_to_object_list(self, build_path=None, loop_type='AirLoop'): + """ + Connect nodes in build path and convert to list of epJSON formatted objects + + :param build_path: build path of EnergyPlus super objects + :param loop_type: fluid flow path (only AirLoop available) + :return: object list of modified super objects. The build path is also saved as a class attribute for + future reference + """ + build_path = build_path or getattr(self, 'build_path', None) + if not build_path: + raise PyExpandObjectsException( + "Error: In {} ({}) Build path was not provided nor was it available as a class attribute " + "when connecting and converting objects" + .format(self.template_type, self.template_name)) + # cleanse build path to only contain super objects. Non super objects are saved to epJSON file + parsed_build_path = self._parse_build_path(object_list=copy.deepcopy(build_path)) + object_list = [] + formatted_build_path = [] + out_node = None + for idx, super_object in enumerate(parsed_build_path): + (super_object_type, super_object_structure), = super_object.items() + connectors = super_object_structure.get('Connectors') + if not connectors: + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Referenced super object is missing Connectors key: {}" + .format(self.template_type, self.template_name, super_object)) + try: + # if a super object is specified but the Loop Connectors is identified as False + # (i.e. {Connectors: {AirLoop: False}}), then just + # append it to the build path but don't make a connection. An example of this is the heat + # exchanger which connects to the OA node, not the inlet node of the OutdoorAir:Mixer, which is + # the return node + if connectors[loop_type]: + # The first object only sets the outlet node variable and remains unchanged + if not out_node: + out_node = super_object_structure['Fields'][connectors[loop_type]['Outlet']] + else: + # After the first object, the inlet node name is changed to the previous object's outlet node + # name. Then the outlet node variable is reset. + if connectors[loop_type]['Inlet']: + super_object_structure['Fields'][connectors[loop_type]['Inlet']] = out_node + out_node = super_object_structure['Fields'][connectors[loop_type]['Outlet']] + object_list.append({super_object_type: super_object_structure['Fields']}) + formatted_build_path.append({super_object_type: super_object_structure}) + except (AttributeError, KeyError): + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) There is a Field/Connector mismatch.\nObject: {}\nconnectors: {}" + .format(self.template_type, self.template_name, super_object_structure, connectors)) + # Save build path to class attribute for later reference. + self.build_path = formatted_build_path + return object_list + + def _create_availability_manager_assignment_list(self, epjson: dict = None) -> dict: + """ + Create AvailabilityManagerAssignmentList object from epJSON dictionary + This list object is separated from the OptionTree build operations because it will vary based on the + presence of AvailabilityManager:.* objects in the epJSON dictionary. + Therefore, the list objects must be built afterwards in order to retrieve the referenced objects. + + :param epjson: system epJSON formatted dictionary + :return: epJSON formatted AirLoopHVAC:ControllerList objects. These objects are also stored back to the + input epJSON object. + """ + # if build_path and/or epjson are not passed to function, get the class attributes + epjson = epjson or self.epjson + availability_managers = {i: j for i, j in epjson.items() if re.match(r'^AvailabilityManager:.*', i)} + # loop over availability managers and add them to the list. + availability_manager_list_object = \ + self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'AvailabilityManagerAssignmentList', 'Base']) + availability_manager_list_object['managers'] = [] + try: + for object_type, object_structure in availability_managers.items(): + for object_name, object_fields in object_structure.items(): + availability_manager_list_object['managers'].append({ + 'availability_manager_name': object_name, + 'availability_manager_object_type': object_type}) + except AttributeError: + raise PyExpandObjectsTypeError( + "Error: In {} ({}) AvailabilityManager object not properly formatted: {}" + .format(self.template_type, self.template_name, availability_managers)) + availability_manager_assignment_list_object = self.yaml_list_to_epjson_dictionaries([ + {'AvailabilityManagerAssignmentList': availability_manager_list_object}, ]) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=self.resolve_objects(epjson=availability_manager_assignment_list_object)) + return self.resolve_objects(epjson=availability_manager_assignment_list_object) + + def _process_build_path(self, option_tree): + """ + Create a connected group of objects from the BuildPath branch in the OptionTree. A build path is a list of + 'super objects' which have an extra layer of structure. These keys are 'Fields' and 'Connectors'. The Fields + are regular EnergyPlus field name-value pairs. The connectors are structured dictionaries that provide + information on how one object should connect the previous/next object in the build path list. A branch of + connected objects is also produced. + + :param option_tree: OptionTree to use for build instructions + :return: list of EnergyPlus super objects. Additional EnergyPlus objects (Branch, Branchlist) that require + the build path for their creation. + """ + # Get the base objects from the build path dictionary and apply transitions to obtain a list of dictionary + # objects that have been formatted. + build_path_leaf = self._get_option_tree_leaf( + option_tree=option_tree, + leaf_path=['BaseObjects', ]) + build_path = self._apply_transitions(build_path_leaf) + # if the build path from base objects is empty, it comes back as a dictionary. Therefore, it needs to be + # explicity changed to a list + build_path = build_path if bool(build_path) else [] + # Get the list actions to perform on a build bath, based on template inputs, and process them in order + actions = option_tree.pop('Actions', None) + if actions: + # flatten action list due to yaml formatting + actions = self._flatten_list(actions) + for action in actions: + action_applied = None + template_field_processing = None + try: + for template_field, action_structure in action.items(): + template_field_processing = template_field + if getattr(self, template_field, 'None') == 'None': + action_applied = True + for template_value, action_instructions in action_structure.items(): + # check if the option tree template value matches a class template field. + # If the template value is 'None' in the yaml, then perform the operation if the class + # attribute is missing or None. + if (template_value == 'None' and getattr(self, template_field, 'None') == 'None') or \ + (getattr(self, template_field, None) and ( + template_value == str(getattr(self, template_field)) or ( + template_value == 'AnyValue' and re.match(r'\w+', str(getattr(self, template_field))) or ( + template_value == 'AnyNumber' and isinstance(getattr(self, template_field), (int, float)))))): + if action_instructions: + build_path = self._apply_build_path_action( + build_path=build_path, + action_instructions=action_instructions) + action_applied = True + except (AttributeError, KeyError): + raise PyExpandObjectsYamlStructureException( + "Error: In {} ({}) Build Path action is incorrectly formatted: {}" + .format(self.template_type, self.template_name, action)) + if not action_applied: + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) A build path action was not applied for template field {} ' + 'and option {}: {}'.format( + self.template_type, + self.template_name, + template_field_processing, + getattr(self, template_field_processing, None), + action)) + # Format the created build path + object_list = self._connect_and_convert_build_path_to_object_list(build_path) + return object_list + + def build_compact_schedule( + self, + structure_hierarchy: list, + insert_values: list, + name: str = None) -> dict: + """ + Build a Schedule:Compact schedule from inputs. Save epjJSON object to class dictionary and return + to calling function. + + :param structure_hierarchy: list indicating YAML structure hierarchy + :param insert_values: list of values to insert into object + :param name: (optional) name of object. + :return: epJSON object of compact schedule + """ + structure_object = self.get_structure(structure_hierarchy=structure_hierarchy) + if not isinstance(insert_values, list): + insert_values = [insert_values, ] + if not name: + name = structure_object.pop('name') + if '{}' in name: + name = name.format(insert_values[0]) + if not structure_object.get('schedule_type_limits_name', None): + structure_object['schedule_type_limits_name'] = 'Any Number' + # for each element in the schedule, convert to numeric if value replacement occurs + if insert_values: + formatted_data_lines = [ + {j: float(k.format(float(*insert_values)))} + if re.match(r'.*{}', k, re.IGNORECASE) else {j: k} + for i in structure_object['data'] for j, k in i.items()] + else: + formatted_data_lines = [{j: k} for i in structure_object for j, k in i.items()] + schedule_object = { + 'Schedule:Compact': { + name: { + 'schedule_type_limits_name': structure_object['schedule_type_limits_name'], + 'data': formatted_data_lines + } + } + } + # add objects to class epjson dictionary + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=schedule_object, + unique_name_override=True + ) + return schedule_object + + +class ExpandThermostat(ExpandObjects): + """ + Thermostat expansion operations + """ + + def __init__(self, template, logger_level='WARNING', logger_name='console_only_logger', epjson=None): + # fill/create class attributes values with template inputs + super().__init__(template=template, logger_level=logger_level, logger_name=logger_name) + self.unique_name = self.template_name + self.epjson = epjson or self.epjson + return + + def _create_and_set_schedules(self): + """ + Create, or use existing, schedules. Assign schedule names to class variable + + :return: Cooling and/or Heating schedule variables as class attributes + """ + for thermostat_type in ['heating', 'cooling']: + if not getattr(self, '{}_setpoint_schedule_name'.format(thermostat_type), None) \ + and getattr(self, 'constant_{}_setpoint'.format(thermostat_type), None): + thermostat_schedule = self.build_compact_schedule( + structure_hierarchy=['Objects', 'Common', 'Objects', 'Schedule', 'Compact', 'ALWAYS_VAL'], + insert_values=getattr(self, 'constant_{}_setpoint'.format(thermostat_type)), + ) + (thermostat_schedule_type, thermostat_schedule_structure), = thermostat_schedule.items() + (thermostat_schedule_name, _), = thermostat_schedule_structure.items() + setattr(self, '{}_setpoint_schedule_name'.format(thermostat_type), thermostat_schedule_name) + return + + def _create_thermostat_setpoints(self): + """ + Create ThermostatSetpoint objects based on class setpoint_schedule_name attributes + :return: Updated class epJSON dictionary with ThermostatSetpoint objects added. + """ + if hasattr(self, 'heating_setpoint_schedule_name') \ + and hasattr(self, 'cooling_setpoint_schedule_name'): + thermostat_setpoint_object = { + "ThermostatSetpoint:DualSetpoint": { + '{} SP Control'.format(self.unique_name): { + 'heating_setpoint_temperature_schedule_name': getattr(self, 'heating_setpoint_schedule_name'), + 'cooling_setpoint_temperature_schedule_name': getattr(self, 'cooling_setpoint_schedule_name') + } + } + } + elif hasattr(self, 'heating_setpoint_schedule_name'): + thermostat_setpoint_object = { + "ThermostatSetpoint:SingleHeating": { + '{} SP Control'.format(self.unique_name): { + 'setpoint_temperature_schedule_name': getattr(self, 'heating_setpoint_schedule_name') + } + } + } + elif hasattr(self, 'cooling_setpoint_schedule_name'): + thermostat_setpoint_object = { + "ThermostatSetpoint:SingleCooling": { + '{} SP Control'.format(self.unique_name): { + 'setpoint_temperature_schedule_name': getattr(self, 'cooling_setpoint_schedule_name') + } + } + } + else: + # todo_eo: Currently, if no condits are met, an error is produced, but a floating thermostat might be + # created. Testing needs to be performed to see what downstream processes are affected. + raise InvalidTemplateException( + 'Error: In {} ({}) No setpoints or schedules provided to object' + .format(self.template_type, self.template_name)) + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=thermostat_setpoint_object, + unique_name_override=False + ) + return + + def run(self): + """ + Perform all template expansion operations and return the class to the parent calling function. + :return: Class object with epJSON dictionary as class attribute + """ + self.logger.info('Processing Thermostat: {}'.format(self.unique_name)) + self._create_and_set_schedules() + self._create_thermostat_setpoints() + return self + + +class ZonevacEquipmentListObjectType: + """ + Set a class attribute to select the appropriate ZoneHVAC:EquipmentList from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._zone_hvac_equipmentlist_object_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # Check for doas reference + doas_equipment = True if template_fields.get('dedicated_outdoor_air_system_name', 'None') != 'None' else False + # Check for baseboard reference + # baseboard_equipment = None + baseboard_equipment = True if template_fields.get('baseboard_heating_type', 'None') != 'None' else False + if doas_equipment and baseboard_equipment: + if template_type == 'HVACTemplate:Zone:BaseboardHeat': + obj._zone_hvac_equipmentlist_object_type = 'BaseboardWithDOAS' + else: + obj._zone_hvac_equipmentlist_object_type = 'WithDOASAndBaseboard' + elif doas_equipment: + obj._zone_hvac_equipmentlist_object_type = 'WithDOAS' + elif baseboard_equipment: + if template_type == 'HVACTemplate:Zone:BaseboardHeat': + obj._zone_hvac_equipmentlist_object_type = 'Baseboard' + else: + obj._zone_hvac_equipmentlist_object_type = 'WithBaseboard' + else: + obj._zone_hvac_equipmentlist_object_type = 'Base' + return + + +class DesignSpecificationOutsideAirObjectStatus: + """ + Set a class attribute to select the appropriate DesignSpecification:OutdoorAir from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._design_specification_outdoor_air_object_status + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # Check for doas reference + outdoor_air_method = template_fields.get('outdoor_air_method') \ + if template_fields.get('outdoor_air_method', 'None') != 'None' else False + doas_equipment = True if template_fields.get('dedicated_outdoor_air_system_name', 'None') != 'None' else False + dsoa_object = template_fields.get('design_specification_outdoor_air_object_name') \ + if template_fields.get('design_specification_outdoor_air_object_name', 'None') != 'None' else False + # dual duct uses different naming, so try that if first attempt was not set. + if not dsoa_object: + dsoa_object = template_fields.get('design_specification_outdoor_air_object_name_for_sizing') \ + if template_fields.get('design_specification_outdoor_air_object_name_for_sizing', 'None') != 'None' else False + if template_type == 'HVACTemplate:Zone:BaseboardHeat': + if doas_equipment and outdoor_air_method != 'DetailedSpecification': + obj._design_specification_outdoor_air_object_status = 'IncludeDSOA' + else: + if outdoor_air_method != 'DetailedSpecification': + obj._design_specification_outdoor_air_object_status = 'IncludeDSOA' + # Remove an input DSOA object name if it's not going to be used + if getattr(obj, '_design_specification_outdoor_air_object_status', None) == 'IncludeDSOA' and dsoa_object \ + and hasattr(obj, 'design_specification_zone_air_distribution_object_name'): + delattr(obj, 'design_specification_zone_air_distribution_object_name') + return + + +class DesignSpecificationZoneAirDistributionObjectStatus: + """ + Set a class attribute to select the appropriate DesignSpecification:ZoneAirDistribution from TemplateObjects + in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._design_specification_zone_air_distribution_object_status + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # Check for doas reference + outdoor_air_method = template_fields.get('outdoor_air_method') \ + if template_fields.get('outdoor_air_method', 'None') != 'None' else False + doas_equipment = True if template_fields.get('dedicated_outdoor_air_system_name', 'None') != 'None' else False + dzad_object = template_fields.get('design_specification_zone_air_distribution_object_name') \ + if template_fields.get('design_specification_zone_air_distribution_object_name', 'None') != 'None' else False + # BaseboardHeat requires DOAS to be activated in addition to DetailedSpecification option selected + if template_type == 'HVACTemplate:Zone:BaseboardHeat': + if doas_equipment and outdoor_air_method != 'DetailedSpecification': + obj._design_specification_zone_air_distribution_object_status = 'IncludeDZAD' + else: + if outdoor_air_method != 'DetailedSpecification': + obj._design_specification_zone_air_distribution_object_status = 'IncludeDZAD' + # Remove an input DZAD object name if it's not going to be used + if getattr(obj, '_design_specification_zone_air_distribution_object_status', None) == 'IncludeDZAD' and dzad_object: + delattr(obj, 'design_specification_zone_air_distribution_object_name') + return + + +class HeatingDesignAirFlowMethod: + """ + Set a class attribute to set heating_design_air_flow_method for transitions in the YAML lookup. + If the supply_air_maximum_flow_rate has been set to a value, then the heating_design_air_flow_method + field in Sizing:Zone should be 'Flow/Zone' with this value as the flow rate. + """ + def __get__(self, obj, owner): + return obj._heating_design_air_flow_method + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # Check for doas reference + supply_air_maximum_flow_rate = template_fields.get('supply_air_maximum_flow_rate', 'None') + heating_supply_air_flow_rate = template_fields.get('heating_supply_air_flow_rate', 'None') + if isinstance(supply_air_maximum_flow_rate, (int, float)): + obj._heating_design_air_flow_method = 'Flow/Zone' + setattr(obj, 'heating_design_air_flow_rate', supply_air_maximum_flow_rate) + elif isinstance(heating_supply_air_flow_rate, (int, float)): + obj._heating_design_air_flow_method = 'Flow/Zone' + setattr(obj, 'heating_design_air_flow_rate', heating_supply_air_flow_rate) + return + + +class CoolingDesignAirFlowMethod: + """ + Set a class attribute to set cooling_design_air_flow_method for transitions in the YAML lookup. + If the supply_air_maximum_flow_rate has been set to a value, then the cooling_design_air_flow_method + field in Sizing:Zone should be 'Flow/Zone' with this value as the flow rate. + """ + def __get__(self, obj, owner): + return obj._cooling_design_air_flow_method + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # Check for doas reference + supply_air_maximum_flow_rate = template_fields.get('supply_air_maximum_flow_rate', 'None') + primary_supply_air_maximum_flow_rate = template_fields.get('primary_supply_air_maximum_flow_rate', 'None') + cooling_supply_air_flow_rate = template_fields.get('cooling_supply_air_flow_rate', 'None') + if isinstance(supply_air_maximum_flow_rate, (int, float)): + obj._cooling_design_air_flow_method = 'Flow/Zone' + setattr(obj, 'cooling_design_air_flow_rate', supply_air_maximum_flow_rate) + elif isinstance(primary_supply_air_maximum_flow_rate, (int, float)): + obj._cooling_design_air_flow_method = 'Flow/Zone' + setattr(obj, 'cooling_design_air_flow_rate', primary_supply_air_maximum_flow_rate) + elif isinstance(cooling_supply_air_flow_rate, (int, float)): + obj._cooling_design_air_flow_method = 'Flow/Zone' + setattr(obj, 'cooling_design_air_flow_rate', cooling_supply_air_flow_rate) + return + + +class HumidistatObjectType: + """ + Set a class attribute, humidistat_object_type, for TemplateObjects in the YAML lookup. + Also set the dehumidification and humidification values to a default if not provided + """ + def __get__(self, obj, owner): + return obj._humidistat_object_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + dehumidification_control_type = template_fields.get('dehumidification_control_type') if \ + template_fields.get('dehumidification_control_type', 'None') != 'None' else False + humidification_control_type = template_fields.get('humidification_control_type') if \ + template_fields.get('dehumidification_control_type', 'None') != 'None' else False + dehumidification_setpoint = template_fields.get('dehumidification_setpoint') if \ + template_fields.get('dehumidification_setpoint', 'None') != 'None' else False + humidification_setpoint = template_fields.get('humidification_setpoint') if \ + template_fields.get('humidification_setpoint', 'None') != 'None' else False + if dehumidification_control_type == 'Humidistat' or humidification_control_type == 'Humidistat': + obj._humidistat_object_type = 'IncludeHumidistat' + setattr(obj, 'dehumidification_setpoint', dehumidification_setpoint or 100) + setattr(obj, 'humidification_setpoint', humidification_setpoint or 0) + return + + +class FanPoweredReheatType: + """ + Create a new class attribute from reheat_coil_type, for TemplateObjects in the YAML lookup for FanPowered zone objects. + If the system flow_type is parallel then reheat_coil_type_parallel is set. For series, reheat_coil_type_series is set. + """ + def __get__(self, obj, owner): + return obj._fan_powered_reheat_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + if template_type == 'HVACTemplate:Zone:VAV:FanPowered': + if template_fields.get('flow_type') in ['Series', 'SeriesFromPlenum']: + obj._fan_powered_reheat_type = 'Series' + setattr(obj, 'reheat_coil_type_series', template_fields.get('reheat_coil_type')) + elif template_fields.get('flow_type') in ['Parallel', 'ParallelFromPlenum']: + obj._fan_powered_reheat_type = 'Parallel' + setattr(obj, 'reheat_coil_type_parallel', template_fields.get('reheat_coil_type')) + return + + +class VRFType: + """ + Create a new class attribute, vrf_type, for TemplateObjects in the YAML lookup for FanPowered zone objects. + """ + def __get__(self, obj, owner): + return obj._vrf_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + if template_type == 'HVACTemplate:Zone:VRF': + doas_equipment = True if template_fields.get('dedicated_outdoor_air_system_name', 'None') != 'None' else False + cooling_coil_type = template_fields.get('cooling_coil_type') if \ + template_fields.get('cooling_coil_type', 'None') != 'None' else False + heat_pump_heating_coil_type = template_fields.get('heat_pump_heating_coil_type') if \ + template_fields.get('heat_pump_heating_coil_type', 'None') != 'None' else False + if cooling_coil_type and heat_pump_heating_coil_type: + obj._vrf_type = 'HeatAndCool' + elif cooling_coil_type: + obj._vrf_type = 'CoolOnly' + elif heat_pump_heating_coil_type: + obj._vrf_type = 'HeatOnly' + if getattr(obj, '_vrf_type', None): + if doas_equipment: + obj._vrf_type = ''.join([obj._vrf_type, 'WithDOAS']) + return + + +class SystemTransitions: + """ + Set zone attributes based on system attributes + """ + def __get__(self, obj, owner): + return obj._system_transitions + + def __set__(self, obj, value): + """ + Set priority list of plant loops to attach the equipment. Apply defaults if no input is given. + """ + # set value and check at the end for error output + obj._system_transitions = {} + # If a string is passed, then use it as the entry + if isinstance(value, str): + obj._system_transitions = value + else: + # extract the template + # try/except not needed here because the template has already been validated from super class init + (template_type, template_structure), = value['template'].items() + (_, template_fields), = template_structure.items() + # make a tuple of fields that identify the system + system_identifiers = ( + 'template_constant_volume_system_name', + 'dedicated_outdoor_air_system_name', + 'template_dual_duct_system_name', + 'template_unitary_system_name', + 'template_vav_system_name', + 'template_vrf_system_name') + # retrieve system from zone template + reference_system_name = None + for si in system_identifiers: + reference_system_name = template_fields.get(si, None) + if reference_system_name: + break + if not reference_system_name: + return + obj._system_transitions.update({'system_name': reference_system_name}) + if not value.get('system_class_objects'): + return + reference_system = value['system_class_objects'][reference_system_name] + obj._system_transitions.update({'system_object': reference_system}) + # Apply system template attributes to zone template + if template_type == 'HVACTemplate:Zone:VAV:FanPowered' and\ + getattr(reference_system, 'system_availability_schedule_name', None): + setattr( + obj, + 'system_availability_schedule_name', + getattr(reference_system, 'system_availability_schedule_name')) + if getattr( + obj, + 'zone_cooling_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'cooling_design_supply_air_temperature', None) + if system_field: + setattr(obj, 'zone_cooling_design_supply_air_temperature', system_field) + setattr(obj, 'zone_cooling_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if getattr( + obj, + 'zone_heating_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'heating_design_supply_air_temperature', None) + if system_field: + setattr(obj, 'zone_heating_design_supply_air_temperature', system_field) + setattr(obj, 'zone_heating_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if getattr( + obj, + 'zone_cooling_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'cooling_coil_design_setpoint', None) + if system_field: + setattr(obj, 'zone_cooling_design_supply_air_temperature', system_field) + setattr(obj, 'zone_cooling_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if getattr( + obj, + 'zone_heating_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'heating_coil_design_setpoint', None) + if system_field: + setattr(obj, 'zone_heating_design_supply_air_temperature', system_field) + setattr(obj, 'zone_heating_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if getattr( + obj, + 'zone_cooling_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'cooling_coil_design_setpoint_temperature', None) + if system_field: + setattr(obj, 'zone_cooling_design_supply_air_temperature', system_field) + setattr(obj, 'zone_cooling_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if getattr( + obj, + 'zone_heating_design_supply_air_temperature_input_method', + None) == 'SystemSupplyAirTemperature': + system_field = getattr(reference_system, 'heating_coil_design_setpoint_temperature', None) + if system_field: + setattr(obj, 'zone_cooling_design_supply_air_temperature', system_field) + setattr(obj, 'zone_heating_design_supply_air_temperature_input_method', 'SupplyAirTemperature') + if template_type == 'HVACTemplate:Zone:DualDuct': + setattr( + obj, + 'system_configuration_type', + getattr(reference_system, 'system_configuration_type')) + return + + +class ExpandZone(ExpandObjects): + """ + Zone expansion operations + + Attributes from Descriptors: + + system_transitions + + zone_hvac_equipmentlist_object_type + + design_specification_outdoor_air_object_status + + design_specification_zone_air_distribution_object_status + + heating_design_air_flow_method + + cooling_design_air_flow_method + + humidistat_object_type + + fan_powered_reheat_type + """ + + system_transitions = SystemTransitions() + zone_hvac_equipmentlist_object_type = ZonevacEquipmentListObjectType() + design_specification_outdoor_air_object_status = DesignSpecificationOutsideAirObjectStatus() + design_specification_zone_air_distribution_object_status = DesignSpecificationZoneAirDistributionObjectStatus() + heating_design_air_flow_method = HeatingDesignAirFlowMethod() + cooling_design_air_flow_method = CoolingDesignAirFlowMethod() + humidistat_object_type = HumidistatObjectType() + fan_powered_reheat_type = FanPoweredReheatType() + vrf_type = VRFType() + + def __init__(self, template, logger_level='WARNING', logger_name='console_only_logger', + epjson=None, system_class_objects=None): + # fill/create class attributes values with template inputs + super().__init__(template=template, logger_level=logger_level, logger_name=logger_name) + try: + self.unique_name = getattr(self, 'zone_name') + if not self.unique_name: + raise InvalidTemplateException("Error: Zone name not provided in template: {}".format(template)) + except AttributeError: + raise InvalidTemplateException("Error: Zone name not provided in zone template: {}".format(template)) + system_class_objects = {'system_class_objects': system_class_objects} if system_class_objects else {} + self.system_transitions = {'template': template, **system_class_objects} + self.zone_hvac_equipmentlist_object_type = template + self.design_specification_outdoor_air_object_status = template + self.design_specification_zone_air_distribution_object_status = template + self.heating_design_air_flow_method = template + self.cooling_design_air_flow_method = template + self.humidistat_object_type = template + self.fan_powered_reheat_type = template + self.vrf_type = template + self.epjson = epjson or self.epjson + # Zone warnings + if self.template_type == 'HVACTemplate:Zone:WaterToAirHeatPump': + cooling_coil_gross_rated_total_capacity = \ + getattr(self, 'cooling_coil_gross_rated_total_capacity', 'Autosize') + cooling_coil_gross_rated_sensible_heat_ratio = \ + getattr(self, 'cooling_coil_gross_rated_sensible_heat_ratio', 'Autosize') + if str(cooling_coil_gross_rated_total_capacity).lower() == 'autosize' and \ + str(cooling_coil_gross_rated_sensible_heat_ratio).lower() != 'autosize': + self.logger.warning( + 'Warning: In {} ({})' + ' the Cooling Coil Rated Capacity is autosized, so the Cooling Coil Gross Rated Sensible Heat Ratio ' + ' will also be autosized. The specified value for Cooling Coil Gross Rated Sensible Heat Ratio' + ' will be ignored. Autosize both or specify values for both.' + .format(self.template_type, self.template_name)) + setattr(self, 'cooling_coil_gross_rated_sensible_heat_ratio', 'Autosize') + if str(cooling_coil_gross_rated_total_capacity).lower() != 'autosize' and \ + str(cooling_coil_gross_rated_sensible_heat_ratio).lower() == 'autosize': + self.logger.warning( + 'Warning: In {} ({})' + ' the Cooling Coil Rated Capacity will not be used when the Cooling Coil Gross Rated Sensible Heat Ratio' + ' is autosized. Autosize both or specify values for both.' + .format(self.template_type, self.template_name)) + setattr(self, 'cooling_coil_gross_rated_total_capacity', 'Autosize') + return + + def run(self): + """ + Process zone template + :return: Class object with epJSON dictionary as class attribute + """ + self.logger.info('Processing Zone: {}'.format(self.unique_name)) + self._create_objects() + return self + + +class AirLoopHVACUnitaryObjectType: + """ + Set a class attribute to select the appropriate unitary equipment type from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._airloop_hvac_unitary_object_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + cooling_coil_type = None if template_fields.get('cooling_coil_type', 'None') == 'None' else \ + template_fields.get('cooling_coil_type') + heating_coil_type = None if template_fields.get('heating_coil_type', 'None') == 'None' else \ + template_fields.get('heating_coil_type') + if not heating_coil_type: + heating_coil_type = None if template_fields.get('heat_pump_heating_coil_type') == 'None' else \ + template_fields.get('heat_pump_heating_coil_type') + supplemental_heating_type = None if template_fields.get('supplemental_heating_or_reheat_coil_type', 'None') == \ + 'None' else True + if template_type == 'HVACTemplate:System:Unitary' and cooling_coil_type and heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'Furnace:HeatCool' + elif template_type == 'HVACTemplate:System:Unitary' and heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'Furnace:HeatOnly' + elif template_type == 'HVACTemplate:System:UnitaryHeatPump:AirToAir': + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAirWithSupplemental' + elif template_type == 'HVACTemplate:System:UnitarySystem': + if cooling_coil_type == 'MultiSpeedDX' and heating_coil_type and not supplemental_heating_type: + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAirMultiSpeedDX' + elif cooling_coil_type and heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAir' + elif not cooling_coil_type and heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAirNoCool' + elif cooling_coil_type and not heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAirNoHeat' + elif not cooling_coil_type and not heating_coil_type: + obj._airloop_hvac_unitary_object_type = 'HeatPump:AirToAirNoCoolNoHeat' + if getattr(obj, '_airloop_hvac_unitary_object_type', None) and \ + supplemental_heating_type: + obj._airloop_hvac_unitary_object_type = \ + ''.join([obj._airloop_hvac_unitary_object_type, 'WithSupplemental']) + if template_type in ['HVACTemplate:System:Unitary', 'HVACTemplate:System:UnitaryHeatPump:AirToAir']: + if getattr(obj, '_airloop_hvac_unitary_object_type', None) and \ + template_fields.get('humidifier_type') == 'ElectricSteam': + obj._airloop_hvac_unitary_object_type = \ + ''.join([obj._airloop_hvac_unitary_object_type, 'WithHumidificationElectricSteam']) + if getattr(obj, '_airloop_hvac_unitary_object_type', None) and \ + template_fields.get('dehumidification_control_type') == 'CoolReheatHeatingCoil': + obj._airloop_hvac_unitary_object_type = \ + ''.join([obj._airloop_hvac_unitary_object_type, 'WithCoolReheatHeatingCoil']) + return + + +class AirLoopHVACUnitaryFanTypeAndPlacement: + """ + Set a class attribute to select the appropriate fan type and placement from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._airloop_hvac_unitary_fan_type_and_placement + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + supply_fan_placement = 'BlowThrough' if template_fields.get('supply_fan_placement', 'None') == 'None' else \ + template_fields.get('supply_fan_placement') + cooling_coil_type = 'Base' if template_fields.get('cooling_coil_type', 'None') == 'None' else \ + template_fields.get('cooling_coil_type') + if cooling_coil_type in ['TwoSpeedDX', 'MultiSpeedDX']: + supply_fan_type = 'VariableVolume' + else: + supply_fan_type = 'Base' + obj._airloop_hvac_unitary_fan_type_and_placement = ''.join([supply_fan_type, supply_fan_placement]) + return + + +class AirLoopHVACObjectType: + """ + Set a class attribute to select the appropriate AirLoopHVAC type from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._airloop_hvac_object_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + cooling_coil_type = True if 'chilledwater' in template_fields.get('cooling_coil_type', 'None').lower() else False + heating_coil_type = True if 'hotwater' in template_fields.get('heating_coil_type', 'None').lower() else False + if template_type == 'HVACTemplate:System:DualDuct': + if cooling_coil_type or heating_coil_type: + obj._airloop_hvac_object_type = 'WaterDualDuct' + else: + obj._airloop_hvac_object_type = 'DualDuct' + elif not re.match(r'HVACTemplate:System:Unitary.*', template_type) and (cooling_coil_type or heating_coil_type): + obj._airloop_hvac_object_type = 'Water' + else: + obj._airloop_hvac_object_type = 'Base' + return + + +class EconomizerTypeDetailed: + """ + set economizer_type_detailed based on other template attributes for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._economizer_type_detailed + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. Otherwise, modify it with + # the template + if isinstance(value, str): + obj._economizer_type_detailed = value + else: + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + economizer_type = None if template_fields.get('economizer_type', 'None') == 'None' else \ + template_fields.get('economizer_type') + if economizer_type: + if template_type in ['HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:Unitary']: + supply_fan_placement = template_fields.get('supply_fan_placement', 'BlowThrough') + else: + supply_fan_placement = template_fields.get('supply_fan_placement', 'DrawThrough') + obj._economizer_type_detailed = ''.join([economizer_type, supply_fan_placement]) + return + + +class MixedAirSetpointControlTypeDetailed: + """ + set mixed_air_setpoint_control_type_detailed based on other template attributes for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._mixed_air_setpoint_control_type_detailed + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. + # Otherwise, modify it with the template + if isinstance(value, str): + obj._mixed_air_setpoint_control_type_detailed = value + else: + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + cooling_coil_type = None if template_fields.get('cooling_coil_type', 'None') == 'None' else \ + template_fields.get('cooling_coil_type') + if template_type in ['HVACTemplate:System:ConstantVolume', 'HVACTemplate:System:DualDuct', + 'HVACTemplate:System:DedicatedOutdoorAir']: + cooling_setpoint = template_fields.get('cooling_coil_setpoint_control_type', 'FixedSetpoint') + elif template_type in ['HVACTemplate:System:VAV', 'HVACTemplate:System:PackagedVAV']: + cooling_setpoint = template_fields.get('cooling_coil_setpoint_reset_type', 'None') + else: + cooling_setpoint = '' + if template_type in ['HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:Unitary']: + supply_fan_placement = template_fields.get('supply_fan_placement', 'BlowThrough') + else: + supply_fan_placement = template_fields.get('supply_fan_placement', 'DrawThrough') + if template_type == 'HVACTemplate:System:ConstantVolume' and cooling_coil_type and \ + (supply_fan_placement == 'DrawThrough' or cooling_setpoint == 'FixedSetpoint'): + obj._mixed_air_setpoint_control_type_detailed = 'IncludeMixedAir' + return + + +class CoolingCoilSetpointControlTypeDetailed: + """ + set cooling_coil_setpoint_control_type_detailed based on other template attributes for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._cooling_coil_setpoint_control_type_detailed + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. Otherwise, modify it with + # the template + if isinstance(value, str): + obj._cooling_coil_setpoint_control_type_detailed = value + else: + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + if template_type in ['HVACTemplate:System:ConstantVolume', 'HVACTemplate:System:DualDuct', + 'HVACTemplate:System:DedicatedOutdoorAir']: + cooling_setpoint = template_fields.get('cooling_coil_setpoint_control_type', 'FixedSetpoint') + elif template_type in ['HVACTemplate:System:VAV', 'HVACTemplate:System:PackagedVAV']: + cooling_setpoint = template_fields.get('cooling_coil_setpoint_reset_type', 'None') + else: + cooling_setpoint = '' + if template_type in ['HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:Unitary']: + supply_fan_placement = template_fields.get('supply_fan_placement', 'BlowThrough') + elif template_type == 'HVACTemplate:System:DualDuct': + supply_fan_placement = template_fields.get('cold_duct_supply_fan_placement', 'BlowThrough') + else: + supply_fan_placement = template_fields.get('supply_fan_placement', 'DrawThrough') + cooling_coil_type = None if template_fields.get('cooling_coil_type', 'None') == 'None' else \ + template_fields.get('cooling_coil_type') + # decide when to set the command, which can vary between systems + if cooling_coil_type: + obj._cooling_coil_setpoint_control_type_detailed = ''.join([cooling_setpoint, supply_fan_placement]) + elif template_type == 'HVACTemplate:System:ConstantVolume' and \ + (supply_fan_placement != 'BlowThrough' or cooling_setpoint == 'FixedSetpoint'): + obj._cooling_coil_setpoint_control_type_detailed = ''.join([cooling_setpoint, supply_fan_placement]) + return + + +class HeatingCoilSetpointControlTypeDetailed: + """ + create attribute heating_coil_setpoint_control_type_detailed based on other template attributes for + YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._heating_coil_setpoint_control_type_detailed + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. Otherwise, modify it with + # the template + if isinstance(value, str): + obj._heating_coil_setpoint_control_type_detailed = value + else: + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + heating_coil_type = None if template_fields.get('heating_coil_type', 'None') == 'None' else \ + template_fields.get('heating_coil_type') + if not heating_coil_type: + heating_coil_type = None if template_fields.get('heat_pump_heating_coil_type') == 'None' else \ + template_fields.get('heat_pump_heating_coil_type') + if heating_coil_type: + if template_type in ['HVACTemplate:System:ConstantVolume', 'HVACTemplate:System:DualDuct', + 'HVACTemplate:System:DedicatedOutdoorAir']: + heating_setpoint = template_fields.get('heating_coil_setpoint_control_type', 'FixedSetpoint') + elif template_type in ['HVACTemplate:System:VAV', 'HVACTemplate:System:PackagedVAV']: + heating_setpoint = template_fields.get('heating_coil_setpoint_reset_type', 'None') + else: + heating_setpoint = '' + if template_type in ['HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:Unitary']: + supply_fan_placement = template_fields.get('supply_fan_placement', 'BlowThrough') + elif template_type in ['HVACTemplate:System:DualDuct']: + supply_fan_placement = template_fields.get('hot_duct_supply_fan_placement', 'BlowThrough') + else: + supply_fan_placement = template_fields.get('supply_fan_placement', 'DrawThrough') + obj._heating_coil_setpoint_control_type_detailed = ''.join([heating_setpoint, supply_fan_placement]) + else: + # Change heating design setpoint if no coil is present + if getattr(obj, 'preheat_coil_design_setpoint', None) and \ + getattr(obj, 'heating_coil_design_setpoint', None) and \ + getattr(obj, 'heating_coil_design_setpoint') > getattr(obj, 'preheat_coil_design_setpoint'): + obj.logger.warning( + 'Warning: In {} ({})' + ' the Heating Coil Design Setpoint is greater than the Preheat Coil Design Setpoint,' + ' but Heating Coil Type=None. Using Preheat Coil Design Setpoint for the Sizing:System' + ' Central Heating Design Supply Air Temperature.'.format(template_type, template_name)) + setattr(obj, 'heating_coil_design_setpoint', obj.preheat_coil_design_setpoint) + elif getattr(obj, 'preheat_coil_design_setpoint', None) and \ + getattr(obj, 'preheat_coil_type', 'None') == 'None': + obj.logger.warning( + 'Warning: In {} ({})' + ' there is no Heating Coil and no Preheat Coil.' + ' The Preheat Coil Design Setpoint will be used for the Sizing:System' + ' Central Heating Design Supply Air Temperature. This will be the inlet air temperature for' + ' sizing reheat coils.'.format(template_type, template_name)) + setattr(obj, 'heating_coil_design_setpoint', obj.preheat_coil_design_setpoint) + elif getattr(obj, 'preheat_coil_design_setpoint', None): + setattr(obj, 'heating_coil_design_setpoint', obj.preheat_coil_design_setpoint) + elif getattr(obj, 'heating_coil_design_setpoint', None): + pass + elif getattr(obj, 'cooling_coil_design_setpoint', None): + setattr(obj, 'heating_coil_design_setpoint', obj.cooling_coil_design_setpoint) + return + + +class HumidistatType: + """ + Create class attribute humidistat_type to select Humidistat type based on other template attributes + for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._humidistat_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + dehumidification = template_fields.get('dehumidification_control_type') if \ + template_fields.get('dehumidification_control_type', 'None') != 'None' else False + dehumidification_zone = template_fields.get('dehumidification_control_type') if \ + template_fields.get('dehumidification_control_zone_name', 'None') != 'None' else False + humidification = template_fields.get('humidifier_type') if \ + template_fields.get('humidifier_type', 'None') != 'None' else False + humidification_zone = template_fields.get('humidifier_type') if \ + template_fields.get('humidifier_control_zone_name', 'None') != 'None' else False + if dehumidification and humidification: + if dehumidification_zone == humidification_zone: + obj._humidistat_type = 'DehumidificationAndHumidification' + else: + obj._humidistat_type = 'Dehumidification' + setattr(obj, 'humidistat_type_2', 'Humidification') + elif dehumidification: + obj._humidistat_type = 'Dehumidification' + elif humidification: + obj._humidistat_type = 'Humidification' + return + + +class OutsideAirEquipmentType: + """ + Create class attribute to select OA objects for YAML BuildPath actions. + """ + def __get__(self, obj, owner): + return obj._outside_air_equipment_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + if template_type in ['HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:Unitary']: + supply_fan_placement = template_fields.get('supply_fan_placement', 'BlowThrough') + else: + supply_fan_placement = template_fields.get('supply_fan_placement', 'DrawThrough') + preheat_coil_type = ''.join([template_fields.get('preheat_coil_type'), 'Preheat']) if \ + template_fields.get('preheat_coil_type', 'None') != 'None' else '' + heat_recovery_type = ''.join([template_fields.get('heat_recovery_type'), 'HR']) if \ + template_fields.get('heat_recovery_type', 'None') != 'None' else '' + outside_air_equipment = ''.join([preheat_coil_type, heat_recovery_type]) + if len(outside_air_equipment) > 0: + obj._outside_air_equipment_type = outside_air_equipment + # set attribute for more specific definition + setattr(obj, 'outside_air_equipment_type_detailed', ''.join([outside_air_equipment, supply_fan_placement])) + return + + +class ModifyDehumidificationControlType: + """ + Modify dehumidification_control_type based on other template attributes for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._dehumidification_control_type + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. Otherwise, modify it with + # the template + if isinstance(value, str): + obj._dehumidification_control_type = value + else: + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + # modify for DOAS + if template_type == 'HVACTemplate:System:DedicatedOutdoorAir': + cooling_coil_type = template_fields.get('cooling_coil_type') if \ + template_fields.get('cooling_coil_type', 'None') != 'None' else False + dehumidification_control_type = template_fields.get('dehumidification_control_type') if \ + template_fields.get('dehumidification_control_type', 'None') != 'None' else False + if dehumidification_control_type == 'Multimode': + if cooling_coil_type not in ['TwoStageHumidityControlDX', 'HeatExchangerAssistedDX']: + obj.logger.warning( + 'Warning: In {} ({})' + ' the Dehumidification Control Type field={}' + ' is not applicable for Cooling Coil Type={}' + '. Dehumidification Control Type reset to None.' + .format(obj.template_type, obj.unique_name, dehumidification_control_type, cooling_coil_type)) + obj._dehumidification_control_type = 'None' + else: + obj._dehumidification_control_type = dehumidification_control_type + elif dehumidification_control_type == 'CoolReheatDesuperheater': + if cooling_coil_type not in ['TwoSpeedDX', 'TwoStageDX', 'TwoStageHumidityControlDX', 'HeatExchangerAssistedDX']: + obj.logger.warning( + 'Warning: In {} ({})' + ' the Dehumidification Control Type field={}' + ' is not applicable for Cooling Coil Type={}' + '. Dehumidification Control Type reset to None.' + .format(obj.template_type, obj.unique_name, dehumidification_control_type, cooling_coil_type)) + obj._dehumidification_control_type = 'None' + else: + obj._dehumidification_control_type = dehumidification_control_type + return + + +class DehumidificationControlTypeDetailed: + """ + Create attribute dehumidification_control_type_detailed based on other template attributes for + YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._dehumidification_control_type_detailed + + def __set__(self, obj, value): + # If the field is getting set on load with a string, then just return the string. Otherwise, modify it with + # the template + if isinstance(value, str): + obj._dehumidification_control_type_detailed = value + else: + (template_type, template_structure), = value.items() + (_, template_fields), = template_structure.items() + dehumidification_control_type = template_fields.get('dehumidification_control_type') if \ + template_fields.get('dehumidification_control_type', 'None') != 'None' else 'None' + if dehumidification_control_type == 'CoolReheatHeatingCoil': + heating_coil_type = None if template_fields.get('heating_coil_type', 'None') == 'None' else \ + template_fields.get('heating_coil_type') + if not heating_coil_type: + heating_coil_type = None if template_fields.get('heat_pump_heating_coil_type') == 'None' else \ + template_fields.get('heat_pump_heating_coil_type') + obj._dehumidification_control_type_detailed = \ + ''.join([dehumidification_control_type, heating_coil_type]) + else: + obj._dehumidification_control_type_detailed = dehumidification_control_type + return + + +class ExpandSystem(ExpandObjects): + """ + System expansion operations + + Attributes from Descriptors: + airloop_hvac_unitary_object_type + + airloop_hvac_object_type + + airloop_hvac_unitary_fan_type_and_placement + + economizer_type_detailed + + mixed_air_setpoint_control_type_detailed + + cooling_coil_setpoint_control_type_detailed + + heating_coil_setpoint_control_type_detailed + + setpoint_control_type: concatenated string of cooling_coil_setpoint_control_type and heating_coil_setpoint_control_type + + humidistat_type + + outside_air_equipment_type + + dehumidification_control_type + + dehumidification_control_type_detailed + """ + + airloop_hvac_unitary_object_type = AirLoopHVACUnitaryObjectType() + airloop_hvac_object_type = AirLoopHVACObjectType() + airloop_hvac_unitary_fan_type_and_placement = AirLoopHVACUnitaryFanTypeAndPlacement() + economizer_type_detailed = EconomizerTypeDetailed() + mixed_air_setpoint_control_type_detailed = MixedAirSetpointControlTypeDetailed() + cooling_coil_setpoint_control_type_detailed = CoolingCoilSetpointControlTypeDetailed() + heating_coil_setpoint_control_type_detailed = HeatingCoilSetpointControlTypeDetailed() + humidistat_type = HumidistatType() + outside_air_equipment_type = OutsideAirEquipmentType() + dehumidification_control_type = ModifyDehumidificationControlType() + dehumidification_control_type_detailed = DehumidificationControlTypeDetailed() + + def __init__(self, template, logger_level='WARNING', logger_name='console_only_logger', epjson=None): + super().__init__(template=template, logger_level=logger_level, logger_name=logger_name) + # map variable variants to common value and remove original + self.rename_attribute('cooling_coil_design_setpoint_temperature', 'cooling_coil_design_setpoint') + # These items are removed since they require little work to apply in yaml + # self.rename_attribute('economizer_upper_temperature_limit', 'economizer_maximum_limit_dry_bulb_temperature') + # self.rename_attribute('economizer_lower_temperature_limit', 'economizer_minimum_limit_dry_bulb_temperature') + # self.rename_attribute('economizer_upper_enthalpy_limit', 'economizer_maximum_limit_enthalpy') + self.unique_name = self.template_name + self.epjson = epjson or self.epjson + self.build_path = None + self.airloop_hvac_unitary_object_type = template + self.airloop_hvac_object_type = template + self.airloop_hvac_unitary_fan_type_and_placement = template + self.economizer_type_detailed = template + self.mixed_air_setpoint_control_type_detailed = template + self.cooling_coil_setpoint_control_type_detailed = template + self.heating_coil_setpoint_control_type_detailed = template + try: + self.setpoint_control_type_detailed = \ + ''.join(['Cooling', self.cooling_coil_setpoint_control_type_detailed, + 'Heating', self.heating_coil_setpoint_control_type_detailed])\ + .replace('BlowThrough', '', 1).replace('DrawThrough', '', 1) + except AttributeError: + self.setpoint_control_type_detailed = None + self.humidistat_type = template + self.outside_air_equipment_type = template + self.dehumidification_control_type = template + self.dehumidification_control_type_detailed = template + # System Warnings + if self.template_type in ['HVACTemplate:System:VAV', 'HVACTemplate:System:PackagedVAV', + 'HVACTemplate:System:ConstantVolume']: + cooling_coil_design_setpoint = getattr(self, 'cooling_coil_design_setpoint', None) + if not cooling_coil_design_setpoint: + getattr(self, 'cooling_coil_design_setpoint_temperature', None) + cooling_setpoint_schedule_name = getattr(self, 'cooling_coil_setpoint_schedule_name', 'None') + cooling_coil_setpoint_type = getattr(self, 'cooling_coil_setpoint_reset_type', 'None') + if cooling_coil_setpoint_type == 'None': + cooling_coil_setpoint_type = getattr(self, 'cooling_coil_setpoint_control_type', 'None') + heating_coil_type = getattr(self, 'heating_coil_type', 'None') + heating_coil_design_setpoint = getattr(self, 'heating_coil_design_setpoint', None) + heating_setpoint_schedule_name = getattr(self, 'heating_coil_setpoint_schedule_name', 'None') + heating_coil_setpoint_type = getattr(self, 'heating_coil_setpoint_reset_type', 'None') + if heating_coil_setpoint_type == 'None': + heating_coil_setpoint_type = getattr(self, 'heating_coil_setpoint_control_type', 'None') + preheat_coil_type = getattr(self, 'preheat_coil_type', 'None') + preheat_coil_setpoint_schedule_name = getattr(self, 'preheat_coil_setpoint_schedule_name', 'None') + preheat_coil_design_setpoint = getattr(self, 'preheat_coil_design_setpoint', None) + if cooling_coil_setpoint_type in ['FixedSetpoint', 'None'] and cooling_setpoint_schedule_name == 'None': + if heating_coil_type != 'None' and heating_coil_setpoint_type in ['FixedSetpoint', 'None'] and \ + heating_setpoint_schedule_name == 'None' and heating_coil_setpoint_type == 'None': + if not heating_coil_design_setpoint or not cooling_coil_design_setpoint: + self.logger.warning('Warning: Expected cooling and heating design setpoints to be set but ' + 'one or both are not.') + elif heating_coil_design_setpoint > cooling_coil_design_setpoint: + self.logger.warning( + 'Warning: In {} ({})' + ' the Heating Coil Design Setpoint is greater than the Cooling Coil Design Setpoint.' + ' This may cause the heating coil and cooling coil to operate simultaneously.' + ' Check results carefully and adjust controls if needed.' + .format(self.template_type, self.template_name)) + if preheat_coil_type != 'None' and preheat_coil_setpoint_schedule_name == 'None': + if not preheat_coil_design_setpoint or not cooling_coil_design_setpoint: + self.logger.warning('Warning: Expected cooling and preheat design setpoints to be set but ' + 'one or both are not.') + elif preheat_coil_design_setpoint > cooling_coil_design_setpoint: + self.logger.warning( + 'Warning: In {} ({})' + ' the Preheat Coil Design Setpoint is greater than the Cooling Coil Design Setpoint.' + ' This may cause the preheat coil and cooling coil to operate simultaneously.' + ' Check results carefully and adjust controls if needed.' + .format(self.template_type, self.template_name)) + if self.template_type in ['HVACTemplate:System:UnitarySystem', ]: + if str(getattr(self, 'dx_cooling_coil_gross_rated_total_capacity', 'Autosize')).lower() == 'autosize' and \ + str(getattr(self, 'dx_cooling_coil_gross_rated_sensible_heat_ratio', 'Autosize')).lower() != 'autosize': + self.logger.warning( + 'Warning: In {} ({})' + ' the Cooling Coil Rated Capacity is autosized, so the Cooling Coil Gross Rated Sensible Heat Ratio ' + ' will also be autosized. The specified value for Cooling Coil Gross Rated Sensible Heat Ratio' + ' will be ignored. Autosize both or specify values for both.' + .format(self.template_type, self.unique_name)) + setattr(self, 'dx_cooling_coil_gross_rated_sensible_heat_ratio', 'Autosize') + if str(getattr(self, 'dx_cooling_coil_gross_rated_total_capacity', 'Autosize')).lower() != 'autosize' and \ + str(getattr(self, 'dx_cooling_coil_gross_rated_sensible_heat_ratio', 'Autosize')).lower() == 'autosize': + self.logger.warning( + 'Warning: In {} ({})' + ' the Cooling Coil Rated Capacity will not be used when the Cooling Coil Gross Rated ' + 'Sensible Heat Ratio is autosized. Autosize both or specify values for both.' + .format(self.template_type, self.unique_name)) + setattr(self, 'dx_cooling_coil_gross_rated_total_capacity', 'Autosize') + if self.template_type in ['HVACTemplate:System:DedicatedOutdoorAir', ]: + dehumidification_control_type = getattr(self, 'dehumidification_control_type', 'None') + heating_coil_type = getattr(self, 'heating_coil_type', 'None') + heat_recovery_type = getattr(self, 'heat_recovery_type', 'None') + if dehumidification_control_type != 'None' and heating_coil_type == 'None': + self.logger.warning( + 'Warning: In {} ({})' + ' the Dehumidification Control Type field={}' + ' but there is no heating coil in this system to provide reheat. Cold supply temps may result.' + .format(self.template_type, self.unique_name, dehumidification_control_type)) + if heat_recovery_type != 'None' and heating_coil_type == 'None': + self.logger.warning( + 'Warning: In {} ({})' + ' there is heat recovery with no heating coil. The heat recovery heating mode will be' + ' controlled to not exceed the cooling setpoint.' + .format(self.template_type, self.unique_name)) + return + + def _create_controller_list_from_epjson( + self, + epjson: dict = None, + build_path: list = None, + controller_list: tuple = ('Controller:WaterCoil', 'Controller:OutdoorAir')) -> dict: + """ + Create AirLoopHVAC:ControllerList objects from epJSON dictionary + These list objects are separated from the OptionTree build operations because they will vary based on the + presence of Controller:WaterCoil and Controller:OutdoorAir objects in the epJSON dictionary. + Therefore, the list objects must be built afterwards in order to retrieve the referenced Controller:.* objects. + + :param epjson: system epJSON formatted dictionary + :param build_path: List of epJSON super objects in build path order + :param controller_list: List of controllers to be included in search + :return: epJSON formatted AirLoopHVAC:ControllerList objects. These objects are also stored back to the + input epJSON object. + """ + # if epjson/build_path not provided, use the class attribute: + epjson = epjson or self.epjson + build_path = build_path or self.build_path + # Create a list of actuators in stream order. This will be used to determine the controller list order. + actuator_list = [] + for bp in build_path: + # Get coil objects except for preheat + # todo_eo: Coils are referenced by name here. A more robust solution should be investigated. + (super_object_type, super_object_structure), = bp.items() + if re.match(r'Coil:(Cooling|Heating):Water.*', super_object_type): + epjson_object = self.yaml_list_to_epjson_dictionaries([bp]) + resovled_epjson_object = self.resolve_objects(epjson=epjson_object) + (object_name, object_fields), = resovled_epjson_object[super_object_type].items() + actuator_list.append(object_fields['water_inlet_node_name']) + elif super_object_type == 'HeatExchanger:AirToAir:SensibleAndLatent': + # if heat exchanger assisted cooling, then the cooling coil object is not in the build path and needs + # to be retrieved from the epjson object + cooling_coil_object = self.get_epjson_objects( + epjson=self.epjson, + object_type_regexp='Coil:Cooling:Water.*', + object_name_regexp='{} Cooling Coil'.format(self.unique_name)) + if cooling_coil_object: + (_, cooling_coil_object_structure), = cooling_coil_object.items() + (_, cooling_coil_object_fields), = cooling_coil_object_structure.items() + actuator_list.append(cooling_coil_object_fields['water_inlet_node_name']) + if getattr(self, 'preheat_coil_type', 'None') == 'HotWater': + # if preheat coil is specified, grabe the controller object + heating_coil_object = self.get_epjson_objects( + epjson=self.epjson, + object_type_regexp='Coil:Heating.*', + object_name_regexp='.*preheat.*') + (_, heating_coil_object_structure), = heating_coil_object.items() + (_, heating_coil_object_fields), = heating_coil_object_structure.items() + actuator_list.append(heating_coil_object_fields['water_inlet_node_name']) + object_list = [] + for controller_type in controller_list: + controller_objects = None + # preheat controller needs to go in OA list and be removed from watercoil list + if controller_type == 'Controller:WaterCoil': + controller_objects = copy.deepcopy(epjson).get(controller_type) + if controller_objects: + for c_name, _ in copy.deepcopy(controller_objects).items(): + if re.match(r'.*preheat.*', c_name, re.IGNORECASE): + controller_objects.pop(c_name) + elif controller_type == 'Controller:OutdoorAir': + controller_objects = copy.deepcopy(epjson).get(controller_type) + controller_preheat_check_objects = copy.deepcopy(epjson).get('Controller:WaterCoil') + if controller_preheat_check_objects: + for c_name, c_fields in copy.deepcopy(controller_preheat_check_objects).items(): + if re.match(r'.*preheat.*', c_name, re.IGNORECASE): + controller_objects.update({c_name: c_fields}) + if controller_objects: + airloop_hvac_controllerlist_object = \ + self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'AirLoopHVAC', 'ControllerList', + controller_type.split(':')[1], 'Base']) + try: + object_id = 0 + for object_name, object_structure in controller_objects.items(): + # For water coils, try to get the index of the actuator from the list and use that to set + # the order. Raise a ValueError if no match is found + # This does not work for dual duct systems, so the controllers are just taken in order because + # they are extended to a single list in that specific order. + if controller_type == 'Controller:WaterCoil' and self.template_type != 'HVACTemplate:System:DualDuct': + object_id = actuator_list.index(object_structure['actuator_node_name']) + 1 + else: + object_id += 1 + airloop_hvac_controllerlist_object['controller_{}_name'.format(object_id)] = \ + object_name + if controller_type == 'Controller:OutdoorAir' and re.match(r'.*preheat.*', object_name, re.IGNORECASE): + airloop_hvac_controllerlist_object['controller_{}_object_type'.format(object_id)] = \ + 'Controller:WaterCoil' + else: + airloop_hvac_controllerlist_object['controller_{}_object_type'.format(object_id)] = \ + controller_type + except ValueError: + raise PyExpandObjectsTypeError( + "Error: In {} ({}) Actuator node for water coil object does not match controller " + "object reference. build_path: {}, controllers: {}" + .format(self.template_type, self.template_name, build_path, controller_objects)) + except (AttributeError, KeyError): + raise PyExpandObjectsTypeError("Error: In {} ({}) Controller object not properly formatted: {}" + .format(self.template_type, self.template_name, controller_objects)) + object_list.append({'AirLoopHVAC:ControllerList': airloop_hvac_controllerlist_object}) + controller_epjson = self.yaml_list_to_epjson_dictionaries(object_list) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=self.resolve_objects(epjson=controller_epjson)) + return self.resolve_objects(epjson=controller_epjson) + + def _create_outdoor_air_equipment_list_from_build_path( + self, build_path: list = None, epjson: dict = None) -> dict: + """ + Create AirLoopHVAC:OutdoorAirSystem:EquipmentList objects from system build path + This object is separated from the OptionTree build operations because it varies based on the final build path. + Therefore, this object must be built afterwards in order to retrieve the referenced outdoor air equipment + objects. + + :param build_path: system build path + :param epjson: epJSON dictionary + :return: epJSON formatted AirLoopHVAC:OutdoorAirSystem:EquipmentList objects. These objects are also stored + back to the input epJSON object. + """ + # if build_path and/or epjson are not passed to function, get the class attributes + epjson = epjson or self.epjson + build_path = build_path or getattr(self, 'build_path', None) + if not build_path: + raise PyExpandObjectsException( + "Error: Build path was not provided nor was it available as a class attribute when creating an " + "AirLoopHVAC:OutdoorAirSystem:EquipmentList") + # set dictionary and loop variables + stop_loop = False + object_count = 1 + oa_equipment_list_dictionary = self.get_structure( + structure_hierarchy=['AutoCreated', 'System', 'AirLoopHVAC', 'OutdoorAirSystem', 'EquipmentList', 'Base']) + # iterate over build path returning every object up to the OutdoorAir:Mixer + # if return fan is specified skip the first object as long as it is a (return) fan + # Put in HR if specified + if getattr(self, 'heat_recovery_type', 'None') != 'None': + try: + heat_recovery_object = self.get_epjson_objects( + epjson=self.epjson, + object_type_regexp='HeatExchanger:AirToAir:SensibleAndLatent', + object_name_regexp=r'.*heat\s+recovery*') + (heat_recovery_object_type, heat_recovery_object_structure), = heat_recovery_object.items() + (heat_recovery_object_name, _), = heat_recovery_object_structure.items() + except (ValueError, KeyError, AttributeError): + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) Heat recovery was indicated but no object was created' + .format(self.template_type, self.template_name)) + oa_equipment_list_dictionary['component_{}_object_type'.format(object_count)] = \ + heat_recovery_object_type + oa_equipment_list_dictionary['component_{}_name'.format(object_count)] = \ + heat_recovery_object_name + object_count += 1 + # Put in preheat if it is specified + if getattr(self, 'preheat_coil_type', 'None') != 'None': + preheat_coil_object = self.get_epjson_objects( + epjson=self.epjson, + object_type_regexp='Coil:Heating.*', + object_name_regexp='.*preheat.*') + (preheat_coil_object_type, preheat_coil_object_structure), = preheat_coil_object.items() + (preheat_coil_object_name, _), = preheat_coil_object_structure.items() + oa_equipment_list_dictionary['component_{}_object_type'.format(object_count)] = \ + preheat_coil_object_type + oa_equipment_list_dictionary['component_{}_name'.format(object_count)] = \ + preheat_coil_object_name + object_count += 1 + for idx, super_object in enumerate(build_path): + for super_object_type, super_object_constructor in super_object.items(): + if getattr(self, 'return_fan', None) == 'Yes' and idx == 0: + if not re.match(r'Fan:.*', super_object_type): + raise PyExpandObjectsException( + 'Error: Return fan specified in template but is not the first object in ' + 'build path: {}'.format(build_path)) + else: + continue + if stop_loop: + break + oa_equipment_list_dictionary['component_{}_object_type'.format(object_count)] = \ + super_object_type + oa_equipment_list_dictionary['component_{}_name'.format(object_count)] = \ + super_object_constructor['Fields']['name'] + if super_object_type == 'OutdoorAir:Mixer': + stop_loop = True + object_count += 1 + outdoor_air_equipment_list_object = self.yaml_list_to_epjson_dictionaries([ + {'AirLoopHVAC:OutdoorAirSystem:EquipmentList': oa_equipment_list_dictionary}, ]) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=self.resolve_objects(epjson=outdoor_air_equipment_list_object)) + return self.resolve_objects(epjson=outdoor_air_equipment_list_object) + + def _create_outdoor_air_system(self, epjson: dict = None) -> dict: + """ + Create AirLoopHVAC:OutdoorAirSystem object from epJSON dictionary + This list object is separated from the OptionTree build operations because it must seek out the correct + ControllerList containing the OutdoorAir:Mixer object. + + :param epjson: system epJSON formatted dictionary + :return: epJSON formatted AirLoopHVAC:OutdoorAirSystem objects. These objects are also stored back to the + input epJSON object. + """ + epjson = epjson or self.epjson + # find oa controllerlist by looking for the Controller:OutdoorAir + oa_controller_list_name = None + controller_list_objects = epjson.get('AirLoopHVAC:ControllerList') + if controller_list_objects: + for object_name, object_structure in controller_list_objects.items(): + for field, value in object_structure.items(): + if re.match(r'controller_\d+_object_type', field) and value == 'Controller:OutdoorAir': + oa_controller_list_name = object_name + break + if not oa_controller_list_name: + self.logger.info("No outdoor air AirLoopHVAC:ControllerList present in the {} system " + "build process, possibly because no Controller:OutdooAir object present " + "in template creation process either.".format(self.unique_name)) + # get outdoor air system equipment list + try: + oa_system_equipment_list_object = epjson.get('AirLoopHVAC:OutdoorAirSystem:EquipmentList') + (oa_system_equipment_name, _), = oa_system_equipment_list_object.items() + except (ValueError, AttributeError): + raise PyExpandObjectsException('Error: Only one AirLoopHVAC:OutdoorAirSystem:EquipmentList object ' + 'is allowed in {} template build process'.format(self.unique_name)) + # get availability manager list + try: + availability_manager_list_object = epjson.get('AvailabilityManagerAssignmentList') + (availability_manager_name, _), = availability_manager_list_object.items() + except (ValueError, AttributeError): + raise PyExpandObjectsException('Error: Only one AvailabilityManagerAssignmentList object is allowed in ' + '{} template build process'.format(self.unique_name)) + outdoor_air_system_yaml_object = \ + self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'AirLoopHVAC', 'OutdoorAirSystem', 'Base']) + outdoor_air_system_yaml_object['availability_manager_list_name'] = availability_manager_name + if oa_controller_list_name: + outdoor_air_system_yaml_object['controller_list_name'] = oa_controller_list_name + outdoor_air_system_yaml_object['outdoor_air_equipment_list_name'] = oa_system_equipment_name + outdoor_air_system_list_object = self.yaml_list_to_epjson_dictionaries([ + {'AirLoopHVAC:OutdoorAirSystem': outdoor_air_system_yaml_object}, ]) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=self.resolve_objects(epjson=outdoor_air_system_list_object)) + return self.resolve_objects(epjson=outdoor_air_system_list_object) + + def _modify_build_path_for_outside_air_system( + self, loop_type: str = 'AirLoop', epjson: dict = None, build_path: list = None) -> list: + """ + Modify input build path to use AirLoopHVAC:OutdoorAirSystem as the first component, rather than individual + outside air system components + + :param build_path: list of EnergyPlus Super objects + :return: build path + """ + # if build_path is not passed to function, get the class attributes + epjson = epjson or self.epjson + build_path = build_path or getattr(self, 'build_path', None) + if not build_path: + raise PyExpandObjectsException( + "Error: Build path was not provided nor was it available as a class attribute when creating " + "AirLoopHVAC:OutdoorAirSystem") + # The first object in the branch must be the AirLoopHVAC:OutdoorAirSystem that must be present in the epjson + # from previous steps. + outdoor_air_system = epjson.get('AirLoopHVAC:OutdoorAirSystem') + if not outdoor_air_system: + raise PyExpandObjectsException("Error: No AirLoopHVAC:OutdoorAirSystem detected in {} build process" + .format(self.unique_name)) + # iterate backwards over build_path and insert each object until the OutdoorAir:Mixer is hit. + # Do first append with OutdoorAirSystem object + parsed_build_path = [] + for super_object in copy.deepcopy(build_path)[::-1]: + (super_object_type, super_object_structure), = super_object.items() + if not super_object_type == 'OutdoorAir:Mixer': + parsed_build_path.insert(0, super_object) + else: + # insert AirLoopHVAC:OutdoorAirSystem at the beginning. + (outdoor_air_system_name, _), = outdoor_air_system.items() + try: + parsed_build_path.insert(0, { + 'AirLoopHVAC:OutdoorAirSystem': { + 'Fields': { + 'name': outdoor_air_system_name, + 'inlet_node_name': super_object_structure['Fields']['return_air_stream_node_name'], + 'outlet_node_name': super_object_structure['Fields']['mixed_air_node_name'] + }, + 'Connectors': { + loop_type: { + 'Inlet': 'inlet_node_name', + 'Outlet': 'outlet_node_name' + } + } + } + }) + break + except (AttributeError, KeyError, ValueError): + raise PyExpandObjectsYamlStructureException( + "Error: Failed to insert AirLoopHVAC:OutdoorairSystem into build path for system {}: {}" + .format(self.unique_name, build_path)) + # check that the outdoor air system was applied to the build path + if 'AirLoopHVAC:OutdoorAirSystem' not in [list(i.keys())[0] for i in parsed_build_path]: + raise PyExpandObjectsException( + "Error: AirLoopHVAC:OutdoorAirSystem failed to be applied in {} build path {}" + .format(self.unique_name, build_path)) + # check if a return fan is specified in the template. If so, then copy the first object, which should be a fan + # and also should have been skipped by the above process. Insert the object into the list at the end of the + # process at position 0 + if getattr(self, 'return_fan', None) == 'Yes': + (return_fan_type, return_fan_structure), = build_path[0].items() + if not re.match(r'Fan:.*', return_fan_type): + raise PyExpandObjectsException( + 'Error: Return fan was specified in HVACTemplate:System, however, a fan was not ' + 'the first object specified in the build path: {}'.format(build_path)) + else: + parsed_build_path.insert(0, copy.deepcopy(build_path[0])) + return parsed_build_path + + def _modify_build_path_for_equipment( + self, loop_type: str = 'AirLoop', build_path: list = None) -> list: + """ + Modify input build path to use special equipment objects in the build path, rather than individual components. + This function loads a structured tuple that contains a list of instructions: + + 0 - HVACTemplate:System for which the instructions are applied + 1 - Regular expression match of the super object to be manipulated. This object has a special format to + prevent it from being connected in earlier steps {Fields: ..., Connectors: {AirLoop: False}} + 2 - Connectors to be applied to the object + 3 - Tuple of objects to be removed from build path. + + :param build_path: list of EnergyPlus Super objects + :return: build path + """ + # The regex lookup is general so something like Coil:Heating:.* will remove the heating coil and + # supplemental heating coil, which might be an issue in some cases/ + equipment_lookup = ( + ( + ['HVACTemplate:System:Unitary', ], + 'AirLoopHVAC:Unitary:Furnace:HeatCool', + {'Inlet': 'furnace_air_inlet_node_name', + 'Outlet': 'furnace_air_outlet_node_name'}, + ( + ('Coil:Cooling.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), + ('Coil:Heating.*', None if getattr(self, 'heating_coil_type', 'None') == 'None' else True), + ('Fan:.*', True)), + []), + ( + ['HVACTemplate:System:Unitary', ], + 'AirLoopHVAC:Unitary:Furnace:HeatOnly', + {'Inlet': 'furnace_air_inlet_node_name', + 'Outlet': 'furnace_air_outlet_node_name'}, + ( + ('Coil:Heating.*', None if getattr(self, 'heating_coil_type', 'None') == 'None' else True), + ('Fan:.*', True)), + []), + ( + ['HVACTemplate:System:UnitarySystem', ], + 'AirLoopHVAC:UnitarySystem', + {'Inlet': 'air_inlet_node_name', + 'Outlet': 'air_outlet_node_name'}, + ( + ('HeatExchanger:AirToAir:SensibleAndLatent', + None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), + ('CoilSystem.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), + ('Coil:Heating.*', None if getattr(self, 'heating_coil_type', 'None') == 'None' else True), + ('Fan:.*', True)), + ['HeatExchangerAssistedDX', 'HeatExchangerAssistedChilledWater']), + ( + ['HVACTemplate:System:UnitarySystem', ], + 'AirLoopHVAC:UnitarySystem', + {'Inlet': 'air_inlet_node_name', + 'Outlet': 'air_outlet_node_name'}, + ( + ('Coil:Cooling.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), + ('Coil:Heating.*', + None if getattr(self, 'heating_coil_type', 'None') == 'None' and getattr( + self, 'supplemental_heating_or_reheat_coil_type', 'None') == 'None' else True), + ('Fan:.*', True)), + []), + ( + ['HVACTemplate:System:UnitaryHeatPump:AirToAir', ], + 'AirLoopHVAC:UnitaryHeatPump.*', + {'Inlet': 'air_inlet_node_name', + 'Outlet': 'air_outlet_node_name'}, + ( + ('Coil:Cooling.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), + ('Coil:Heating.*', None if getattr(self, 'heat_pump_heating_coil_type', 'None') == 'None' else True), + ('Fan:.*', True)), + []), + ( + ['HVACTemplate:System:PackagedVAV'], + 'CoilSystem:Cooling:DX.*', + {'Inlet': 'dx_cooling_coil_system_inlet_node_name', + 'Outlet': 'dx_cooling_coil_system_outlet_node_name'}, + ( + ('Coil:Cooling.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), ), + []), + ( + ['HVACTemplate:System:DedicatedOutdoorAir'], + 'CoilSystem:Cooling:DX.*', + {'Inlet': 'dx_cooling_coil_system_inlet_node_name', + 'Outlet': 'dx_cooling_coil_system_outlet_node_name'}, + ( + ('Coil:Cooling.*', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), ), + ['TwoSpeedDX', 'TwoStageDX', 'TwoStageHumidityControlDX']), + ( + ['HVACTemplate:System:DedicatedOutdoorAir', ], + 'CoilSystem:Cooling:DX.*', + {'Inlet': 'dx_cooling_coil_system_inlet_node_name', + 'Outlet': 'dx_cooling_coil_system_outlet_node_name'}, + ( + ('HeatExchanger:AirToAir:SensibleAndLatent', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), ), + ['HeatExchangerAssistedDX']), + ( + ['HVACTemplate:System:ConstantVolume', 'HVACTemplate:System:DedicatedOutdoorAir'], + 'CoilSystem:Cooling:Water.*', + {'Inlet': 'air_inlet_node_name', + 'Outlet': 'air_outlet_node_name'}, + ( + ('HeatExchanger:AirToAir:SensibleAndLatent', None if getattr(self, 'cooling_coil_type', 'None') == 'None' else True), ), + [])) + # if build_path is not passed to function, get the class attributes + build_path = build_path or getattr(self, 'build_path', None) + if not build_path: + raise PyExpandObjectsException( + "Error: Build path was not provided nor was it available as a class attribute when modifying build path" + " for equipment types") + equipment_object = None + for el in equipment_lookup: + if self.template_type in el[0]: + equipment_regex = el[1] + equipment_connectors = el[2] + # check for template indicators of objects to remove + object_check_list = el[3] + cooling_coil_type_check = el[4] + # The unitary equipment must be present, and extracted from, the build path + for idx, super_object in enumerate(build_path): + (super_object_type, _), = super_object.items() + if re.match(equipment_regex, super_object_type) and \ + (not cooling_coil_type_check or getattr(self, 'cooling_coil_type', 'None') in cooling_coil_type_check): + equipment_object = build_path.pop(idx) + # set connectors now that it will be included in the build path. + # This is not included in the YAML object to keep the object from connecting to its neighbors + # before this point. + equipment_object[super_object_type]['Connectors'][loop_type] = equipment_connectors + # if equipment is a CoilSystem:Cooling:Water then the air node fields need to be added just for + # the build path. A better solution should be made in the future rather than hard-coding the + # names to the object. + if self.template_type in ['HVACTemplate:System:DedicatedOutdoorAir', + 'HVACTemplate:System:ConstantVolume']: + if equipment_regex == 'CoilSystem:Cooling:Water.*': + if getattr(self, 'supply_fan_placement', None) == 'BlowThrough': + equipment_object[super_object_type]['Fields']['air_inlet_node_name'] = \ + '{} Supply Fan Outlet'.format(self.unique_name) + else: + equipment_object[super_object_type]['Fields']['air_inlet_node_name'] = \ + '{} Mixed Air Outlet'.format(self.unique_name) + equipment_object[super_object_type]['Fields']['air_outlet_node_name'] = \ + '{} Cooling Coil HX Unit Outlet'.format(self.unique_name) + # make check if equipment object was found. If not, return original build path + if equipment_object: + try: + (_, equipment_object_keys), = equipment_object.items() + # check that the super object is valid + if {'Fields', 'Connectors'} != set(equipment_object_keys.keys()) or \ + not equipment_object_keys['Connectors'][loop_type]: + raise ValueError + except ValueError: + raise PyExpandObjectsException( + "Error: Equipment is improperly formatted, must be a super object. system: {} object: {}" + .format(self.unique_name, equipment_object)) + # Iterate through list and remove objects that match the check list as well as dummy objects + parsed_build_path = [] + removed_items = 0 + for idx, super_object in enumerate(copy.deepcopy(build_path)): + (super_object_type, super_object_structure), = super_object.items() + keep_object = True + # if a return fan is specified for unitary systems, then keep it for the + # branchlist object. Otherwise, it will get removed via the removal regex expressions. + if self.template_type in \ + ['HVACTemplate:System:Unitary', + 'HVACTemplate:System:UnitaryHeatPump:AirToAir', + 'HVACTemplate:System:UnitarySystem'] and \ + getattr(self, 'return_fan', 'None') == 'Yes' and idx == 0 and \ + re.match(r'Fan:.*', super_object_type): + pass + else: + for object_reference, object_presence in object_check_list: + if re.match(object_reference, super_object_type) and object_presence or \ + super_object_type == 'DummyObject': + keep_object = None + if super_object_type != 'DummyObject': + removed_items += 1 + if keep_object: + parsed_build_path.append(super_object) + # if object_check_list is empty, it's done. Pass the equipment then proceed. Add one to the + # removed_items so it isn't called again + if removed_items == sum(1 for i, j in object_check_list if j): + parsed_build_path.append(equipment_object) + removed_items += 1 + if removed_items < sum(1 for i, j in object_check_list if j): + raise PyExpandObjectsException( + "Error: Equipment modification process failed to remove all objects " + "for system {}".format(self.unique_name)) + return parsed_build_path + # if no matches are made, return original build_path + return build_path + + def _create_branch_and_branchlist_from_build_path( + self, + build_path: list = None, + loop_type: str = 'AirLoop', + epjson: dict = None, + include_branchlist: bool = True, + modify_build_path: bool = True): + """ + Create Branch and BranchList objects from system build path + These objects are separated from the OptionTree build operations because they vary based on the final build + path. Also, the Branch object must reference an AirLoopHVAC:OutdoorAirSystem object that is also built after + the OptionTree build operations. + + :param build_path: system build path + :param loop_type: string descriptor of the loop type, AirLoop by default + :param epjson: epJSON dictionary + :param include_branchlist: boolean flag to create branchlist or not + :param modify_build_path: boolean flag to modify build path for outdoor air system + :return: epJSON formatted Branch and BranchList objects. These objects are also stored back to the + input epJSON object. + """ + # if build_path and/or epjson are not passed to function, get the class attributes + epjson = epjson or self.epjson + build_path = build_path or getattr(self, 'build_path', None) + if not build_path: + raise PyExpandObjectsException( + "Error: Build path was not provided nor was it available as a class attribute during branch and " + "branchlist creation") + # Edit build path for AirLoopHVAC:OutdoorAirSystem + if modify_build_path: + build_path = self._modify_build_path_for_outside_air_system( + epjson=epjson, + build_path=copy.deepcopy(build_path)) + # Edit build path for special equipment + build_path = self._modify_build_path_for_equipment( + build_path=copy.deepcopy(build_path)) + components = [] + for super_object in copy.deepcopy(build_path): + component = {} + (super_object_type, super_object_structure), = super_object.items() + try: + connectors = super_object_structure.pop('Connectors') + except KeyError: + raise PyExpandObjectsYamlStructureException( + "Error: Super object is missing Connectors key: {}".format(super_object)) + try: + component['component_inlet_node_name'] = \ + super_object_structure['Fields'][connectors[loop_type]['Inlet']] + component['component_outlet_node_name'] = \ + super_object_structure['Fields'][connectors[loop_type]['Outlet']] + component['component_object_type'] = super_object_type + component['component_name'] = super_object_structure['Fields']['name'] + components.append(component) + except (AttributeError, KeyError, TypeError): + raise PyExpandObjectsYamlStructureException( + "Error: Field/Connector mismatch or name not in Fields. Object: {}, connectors: {}" + .format(super_object_structure, connectors)) + branch_fields = self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'Branch', 'Base']) + branch_fields['components'] = components + branch = { + "Branch": branch_fields + } + if include_branchlist: + if self.template_type == 'HVACTemplate:System:DualDuct': + branchlist_fields = self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'BranchList', 'DualDuct']) + else: + branchlist_fields = self.get_structure(structure_hierarchy=['AutoCreated', 'System', 'BranchList', 'Base']) + branchlist = { + "BranchList": branchlist_fields + } + branch_and_branchlist_objects = self.yaml_list_to_epjson_dictionaries([branch, branchlist]) + else: + branch_and_branchlist_objects = self.yaml_list_to_epjson_dictionaries([branch, ]) + self.merge_epjson( + super_dictionary=epjson, + object_dictionary=self.resolve_objects(epjson=branch_and_branchlist_objects)) + return self.resolve_objects(epjson=branch_and_branchlist_objects) + + def _dual_duct_custom_edits(self): + """ + Perform customized edits to typical ExpandSystem process for HVACTemplate:DualDuct + :return: None. class attributes modified + """ + # a temporary build path needs to be made which is a concatenation of the hot and cold build paths. + # This object is used to create the WaterCoil controllers since they need to reference all coils in a single + # build path to create a single object. + tmp_build_path = [] + tmp_out_node_list = [] + # Run ExpandSystem._create_objects() for each duct type as well as some additional modifiers + for duct_type, duct_field_name in ( + ('HotDuct', 'hot_duct'), + ('ColdDuct', 'cold_duct')): + # Make a copy of the class object and split to cold/hot class objects. + # Clear epjson and build_path from inherited class + duct_system_class_object = copy.deepcopy(self) + duct_system_class_object.epjson = {} + duct_system_class_object.build_path = [] + duct_system_class_object.template_type = ':'.join(['HVACTemplate:System:DualDuct', duct_type]) + duct_system_class_object.unique_name_main = duct_system_class_object.unique_name + duct_system_class_object.unique_name = ' '.join([duct_system_class_object.unique_name, duct_type]) + # rename hot/cold duct to typical names now that their type is identified by the class + for attribute in [i for i in vars(duct_system_class_object).keys() if i.startswith(duct_field_name)]: + setattr( + duct_system_class_object, + attribute.replace(''.join([duct_field_name, '_']), ''), + getattr(duct_system_class_object, attribute)) + # Change hot and cold template variables based on system configuration type + configuration_modifier = None + fan_modifier = None + if 'Single' in getattr(self, 'system_configuration_type', 'None'): + setattr(duct_system_class_object, 'supply_fan_placement_detailed', 'NoFan') + configuration_modifier = 'Single' + else: + configuration_modifier = 'Dual' + if 'Variable' in getattr(self, 'system_configuration_type', 'None'): + fan_modifier = 'Variable' + else: + fan_modifier = 'Constant' + setattr( + duct_system_class_object, + 'system_configuration_type_detailed', + ''.join([ + getattr(self, 'system_configuration_type', 'None'), + getattr(self, 'cold_duct_supply_fan_placement', 'DrawThrough')])) + setattr( + duct_system_class_object, + 'cooling_coil_setpoint_control_type_detailed', + ''.join([ + configuration_modifier, + getattr(duct_system_class_object, 'cooling_coil_setpoint_control_type_detailed', 'None')])) + if configuration_modifier == 'Dual' and fan_modifier: + setattr( + duct_system_class_object, + 'supply_fan_placement_detailed', + ''.join([fan_modifier, getattr(duct_system_class_object, 'supply_fan_placement', 'DrawThrough')])) + if fan_modifier: + setattr( + self, + 'return_fan_detailed', + ''.join([fan_modifier, getattr(self, 'return_fan', 'No')])) + duct_system_class_object._create_objects() + tmp_build_path.extend(duct_system_class_object.build_path) + duct_system_class_object._create_branch_and_branchlist_from_build_path( + include_branchlist=False, + modify_build_path=False) + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=duct_system_class_object.epjson) + # get last out node from build path + last_build_path_object = duct_system_class_object.build_path[-1] + (_, super_object), = last_build_path_object.items() + tmp_out_node_list.append( + super_object['Fields'][super_object['Connectors']['AirLoop']['Outlet']].format( + duct_system_class_object.unique_name)) + # Create supply side outlet nodelist + supply_side_nodelist = self.get_structure( + structure_hierarchy=['AutoCreated', 'System', 'NodeList', 'SupplySideOutlet']) + supply_side_nodelist['nodes'] = [{"node_name": out_node} for out_node in tmp_out_node_list] + supply_side_nodelist_object = self.yaml_list_to_epjson_dictionaries([{'NodeList': supply_side_nodelist}, ]) + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=supply_side_nodelist_object) + # Create ControllerList for just the Controller:WaterCoil objects, which are in the hot/cold class objects of + # a dual duct system. + # drop preheat attribute while controller list operations are performed, then add it back on afterwards + # This just affects the hot/cold duct subsystems, and the preheat_coil_type will be processed later on + # with the main system. + if hasattr(self, 'preheat_coil_type'): + tmp_preheat = getattr(self, 'preheat_coil_type') + delattr(self, 'preheat_coil_type') + else: + tmp_preheat = None + self._create_controller_list_from_epjson( + controller_list=('Controller:WaterCoil', ), + build_path=tmp_build_path, + epjson=self.epjson) + if tmp_preheat: + setattr(self, 'preheat_coil_type', tmp_preheat) + # rename main branch for regular processing + for attribute in [i for i in vars(self).keys() if i.startswith('main_supply_fan')]: + setattr(self, attribute.replace('main_supply_fan', 'supply_fan'), getattr(self, attribute)) + return + + def run(self): + """ + Process system template + :return: class object with epJSON dictionary as class attribute + """ + self.logger.info('Processing System: {}'.format(self.unique_name)) + if self.template_type == 'HVACTemplate:System:DualDuct': + self._dual_duct_custom_edits() + self._create_objects() + if self.template_type != 'HVACTemplate:System:VRF': + self._create_outdoor_air_equipment_list_from_build_path() + self._create_availability_manager_assignment_list() + # If a build path is not created, then no additional objects need to be created as well. + if self.build_path: + if self.template_type == 'HVACTemplate:System:DualDuct': + self._create_controller_list_from_epjson(controller_list=('Controller:OutdoorAir', )) + else: + self._create_controller_list_from_epjson() + self._create_outdoor_air_system() + self._create_branch_and_branchlist_from_build_path() + return self + + +class PrimaryPumpFlowAndType: + """ + Create class attribute, primary_pump_flow_and_type to select the pump flow type, and configuration + type for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._primary_pump_flow_and_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + flow_type = None + configuration_type = None + flow_rgx_match = None + if template_type == 'HVACTemplate:Plant:ChilledWaterLoop': + flow_type = template_fields.get('chilled_water_pump_configuration', 'ConstantPrimaryNoSecondary') + flow_rgx_match = re.match(r'(^.*)Primary', flow_type) + configuration_type = template_fields.get('chilled_water_primary_pump_type', 'SinglePump') + elif template_type == 'HVACTemplate:Plant:CondenserWaterLoop': + flow_type = 'VariablePrimary' + flow_rgx_match = re.match(r'(^.*)Primary', flow_type) + configuration_type = template_fields.get('condenser_water_pump_type', 'SinglePump') + elif template_type == 'HVACTemplate:Plant:HotWaterLoop': + flow_type = template_fields.get('hot_water_pump_configuration', 'ConstantFlow') + flow_rgx_match = re.match(r'(^.*)Flow', flow_type) + configuration_type = template_fields.get('hot_water_pump_type', 'SinglePump') + elif template_type == 'HVACTemplate:Plant:MixedWaterLoop': + flow_type = template_fields.get('water_pump_configuration', 'ConstantFlow') + flow_rgx_match = re.match(r'(^.*)Flow', flow_type) + configuration_type = template_fields.get('water_pump_type', 'SinglePump') + if flow_rgx_match and configuration_type: + flow_type = flow_rgx_match.group(1) + obj._primary_pump_flow_and_type = ''.join([flow_type, configuration_type]) + else: + raise InvalidTemplateException( + 'In {} ({}) The primary pump configuration value is improperly formatted' + .format(template_type, template_name)) + return + + +class SecondaryPumpFlowAndType: + """ + Create class attribute, secondary_pump_flow_and_type to select the pump flow type, and configuration + type for YAML TemplateObjects lookup. + """ + def __get__(self, obj, owner): + return obj._secondary_pump_flow_and_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + if template_type == 'HVACTemplate:Plant:ChilledWaterLoop': + flow_type = template_fields.get('chilled_water_pump_configuration', 'ConstantPrimaryNoSecondary') + flow_rgx_match = re.match(r'^.*Primary(.*)Secondary', flow_type) + if flow_rgx_match: + flow_type = flow_rgx_match.group(1) + else: + raise InvalidTemplateException( + 'In {} ({}) The chilled_water_pump_configuration value is improperly formatted' + .format(template_type, template_name)) + if flow_type != 'No': + configuration_type = template_fields.get('chilled_water_secondary_pump_type', 'SinglePump') + obj._secondary_pump_flow_and_type = ''.join([flow_type, configuration_type]) + return + + +class ExpandPlantLoop(ExpandObjects): + """ + Plant loop expansion operations + + Attributes from Descriptors: + primary_pump_flow_and_type + + secondary_pump_flow_and_type + """ + + primary_pump_flow_and_type = PrimaryPumpFlowAndType() + secondary_pump_flow_and_type = SecondaryPumpFlowAndType() + + def __init__(self, template, logger_level='WARNING', logger_name='console_only_logger', epjson=None): + super().__init__(template=template, logger_level=logger_level, logger_name=logger_name) + self.unique_name = self.template_name + self.primary_pump_flow_and_type = template + self.secondary_pump_flow_and_type = template + self.epjson = epjson or self.epjson + return + + def run(self): + """ + Process plant loop template + :return: class object with epJSON dictionary as class attribute + """ + self.logger.info('Processing PlantLoop: {}'.format(self.unique_name)) + self._create_objects() + self._create_availability_manager_assignment_list() + return self + + +class RetrievePlantEquipmentLoop: + """ + Get and set the a priority list of plant loops for the equipment to serve. + """ + def __get__(self, obj, owner): + return obj._template_plant_loop_type + + def __set__(self, obj, value): + """ + Set priority list of plant loops to attach the equipment. Apply defaults if no input is given. + """ + # set value and check at the end for error output + obj._template_plant_loop_type = None + # create hash of object references and default loop types + default_loops = { + '^HVACTemplate:Plant:Tower.*': ['ChilledWaterLoop', 'MixedWaterLoop'], + '^HVACTemplate:Plant:Chiller.*': ['ChilledWaterLoop', ], + '^HVACTemplate:Plant:Boiler.*': ['HotWaterLoop', 'MixedWaterLoop'], + } + # If a string is passed, then use it as the entry + if isinstance(value, str): + obj._template_plant_loop_type = value if value.endswith('Loop') else ''.join([value, 'Loop']) + else: + # extract the template plant loop type + # try/except not needed here because the template has already been validated from super class init + (_, template_structure), = value['template'].items() + (_, template_fields), = template_structure.items() + template_plant_loop_type_list = [] + if template_fields.get('template_plant_loop_type'): + template_plant_loop_type_list = [''.join([template_fields['template_plant_loop_type'], 'Loop']), ] + else: + # if loop reference was not made, set default based on template type + (template_type, _), = value['template'].items() + for object_reference, default_list in default_loops.items(): + default_rgx = re.match(object_reference, template_type) + if default_rgx: + template_plant_loop_type_list = default_loops[object_reference] + break + # Check the loop type priority list against the expanded loops and return the first match. + plant_loops = [i.template_type.split(":")[-1] for i in value.get('plant_loop_class_objects', {}).values()] + # Check that plant_loops has only unique entries and that it isn't empty + if not plant_loops or len(list(set(plant_loops))) != len(list(plant_loops)): + raise InvalidTemplateException( + "Error: An invalid number of plant loops were created, either None or there" + " are duplicates present: {}".format(plant_loops)) + for pl in template_plant_loop_type_list: + if pl in plant_loops: + # Special handling for Tower object + (template_type, _), = value['template'].items() + if template_type in ['HVACTemplate:Plant:Tower', 'HVACTemplate:Plant:Tower:ObjectReference'] \ + and pl == 'ChilledWaterLoop': + obj._template_plant_loop_type = 'CondenserWaterLoop' + else: + obj._template_plant_loop_type = pl + break + # verify the field was set to a value + if not obj._template_plant_loop_type: + raise InvalidTemplateException( + "Error: Plant equipment loop type did not have a corresponding loop to " + "reference. Priority list {}, Plant loops {}" + .format(template_plant_loop_type_list, plant_loops)) + return + + +class PumpConfigurationType: + """ + Set a class attribute pump_configuration_type that reflects the loop attribute of the same name to use in + TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._pump_configuration_type + + def __set__(self, obj, value): + (template_type, template_structure), = value['template'].items() + (template_name, _), = template_structure.items() + # Check the loop type priority list against the expanded loops and return the first match. + pump_configuration = [] + if template_type == 'HVACTemplate:Plant:Chiller': + # This should return only one instance + pump_configuration = [ + getattr(class_object_structure, 'chilled_water_pump_configuration', None) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:ChilledWaterLoop'] + elif template_type == 'HVACTemplate:Plant:Boiler': + # This should return only one instance + if getattr(obj, 'template_plant_loop_type', None) == 'HotWaterLoop': + pump_configuration = [ + getattr(class_object_structure, 'hot_water_pump_configuration', None) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:HotWaterLoop'] + elif getattr(obj, 'template_plant_loop_type', None) == 'MixedWaterLoop': + pump_configuration = [ + getattr(class_object_structure, 'water_pump_configuration', None) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:MixedWaterLoop'] + if len(pump_configuration) > 1: + obj.logger.warning( + 'In {} ({}) More than one pump configuration was found. Applying first instance {}' + .format(template_type, template_name, pump_configuration[0])) + if pump_configuration: + obj._pump_configuration_type = pump_configuration[0] + return + + +class PrimaryPumpType: + """ + Set a class attribute pump_type that reflects the loop attribute primary_pump_type to use in + TemplateObjects in the YAML lookup. This descriptor will only either be None, or 'PumpPerEquipment', since those + are the only configurations needed to inform the equipment + """ + def __get__(self, obj, owner): + return obj._primary_pump_type + + def __set__(self, obj, value): + (template_type, template_structure), = value['template'].items() + (template_name, template_fields), = template_structure.items() + # Check the loop type priority list against the expanded loops and return the first match. + primary_pump_type = [] + flow_rgx_value = '' + equipment_type = 'Equipment' + if template_type == 'HVACTemplate:Plant:Chiller': + # set variables and regex matches for output format + flow_rgx_value = r'(^.*)Primary' + # This should return only one instance + # 0th item is the pump type, 1th is the configuration, and 2nd is the pump head to be transferred + primary_pump_type = [ + ( + getattr(class_object_structure, 'chilled_water_primary_pump_type'), + getattr(class_object_structure, 'chilled_water_pump_configuration', 'ConstantPrimaryNoSecondary'), + getattr(class_object_structure, 'primary_chilled_water_pump_rated_head')) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:ChilledWaterLoop' and getattr( + class_object_structure, 'chilled_water_primary_pump_type', None)] + elif template_type == 'HVACTemplate:Plant:Tower' and obj.template_plant_loop_type == 'CondenserWaterLoop': + flow_rgx_value = r'(^.*)Primary' + # call HVACTemplate:Plant:ChilledWaterLoop since CondenserWaterLoop isn't in the list of expanded plant + # loops + primary_pump_type = [ + ( + getattr(class_object_structure, 'condenser_water_pump_type'), + 'VariablePrimary', + getattr(class_object_structure, 'condenser_water_pump_rated_head')) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:ChilledWaterLoop' and getattr( + class_object_structure, 'condenser_water_pump_type', None)] + elif template_type == 'HVACTemplate:Plant:Boiler': + if template_fields.get('boiler_type') == 'DistrictHotWater': + equipment_type = 'DistrictHotWater' + flow_rgx_value = r'(^.*)Flow' + # This should return only one instance + if getattr(obj, 'template_plant_loop_type', None) == 'HotWaterLoop': + primary_pump_type = [ + ( + getattr(class_object_structure, 'hot_water_pump_type'), + getattr(class_object_structure, 'hot_water_pump_configuration', 'ConstantFlow'), + getattr(class_object_structure, 'hot_water_pump_rated_head')) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:HotWaterLoop' and getattr( + class_object_structure, 'hot_water_pump_type', None)] + elif getattr(obj, 'template_plant_loop_type', None) == 'MixedWaterLoop': + primary_pump_type = [ + ( + getattr(class_object_structure, 'water_pump_type'), + getattr(class_object_structure, 'water_pump_configuration', 'ConstantFlow'), + getattr(class_object_structure, 'water_pump_rated_head')) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:MixedWaterLoop' and getattr( + class_object_structure, 'water_pump_type', None)] + elif template_type == 'HVACTemplate:Plant:Tower': + flow_rgx_value = r'(^.*)Flow' + # This should return only one instance + if getattr(obj, 'template_plant_loop_type', None) == 'MixedWaterLoop': + primary_pump_type = [ + ( + getattr(class_object_structure, 'water_pump_type'), + getattr(class_object_structure, 'water_pump_configuration', 'ConstantFlow'), + getattr(class_object_structure, 'water_pump_rated_head')) + for class_object_name, class_object_structure in value.get('plant_loop_class_objects', {}).items() + if class_object_structure.template_type == 'HVACTemplate:Plant:MixedWaterLoop' and getattr( + class_object_structure, 'water_pump_type', None)] + if len(primary_pump_type) > 1: + obj.logger.warning( + 'In {} ({}) More than one pump type was found. Applying first instance {}' + .format(template_type, template_name, primary_pump_type[0])) + # If no water pump type is specified, then set it to 'other' so a combined template can be used. + if primary_pump_type: + flow_rgx_match = re.match(flow_rgx_value, primary_pump_type[0][1]) + if flow_rgx_match: + flow_type = flow_rgx_match.group(1) + else: + raise InvalidTemplateException( + 'In {} ({}) The pump configuration value found in loop class object is ' + 'improperly formatted'.format(template_type, template_name)) + # replace object type (e.g. chiller, boiler) with 'Equipment' to make less template object options + primary_pump_type_value = \ + ''.join(['PumpPer', equipment_type]) \ + if re.match('^PumpPer.*', primary_pump_type[0][0]) \ + else None + if flow_type and primary_pump_type_value: + obj._primary_pump_type = ''.join([flow_type, primary_pump_type_value]) + # set pump rated head as a class attribute + setattr(obj, 'water_pump_rated_head', primary_pump_type[0][2]) + else: + obj._primary_pump_type = ''.join(['Other', equipment_type]) + else: + obj._primary_pump_type = ''.join(['Other', equipment_type]) + return + + +class ChillerAndCondenserType: + """ + Set a class attribute to select the appropriate fan type and placement from TemplateObjects in the YAML lookup. + """ + def __get__(self, obj, owner): + return obj._chiller_and_condenser_type + + def __set__(self, obj, value): + (template_type, template_structure), = value.items() + (template_name, template_fields), = template_structure.items() + if template_type == 'HVACTemplate:Plant:Chiller': + chiller_type = template_fields.get('chiller_type', 'None') + condenser_type = 'WaterCooled' if template_fields.get('condenser_type', 'None') == 'None' else \ + template_fields.get('condenser_type') + obj._chiller_and_condenser_type = ''.join([chiller_type, condenser_type]) + return + + +class ExpandPlantEquipment(ExpandObjects): + """ + Plant Equipment operations + + Attributes from Descriptors: + template_plant_loop_type + + pump_configuration_type + + chiller_and_condenser_type + + primary_pump_type + + """ + + template_plant_loop_type = RetrievePlantEquipmentLoop() + pump_configuration_type = PumpConfigurationType() + chiller_and_condenser_type = ChillerAndCondenserType() + primary_pump_type = PrimaryPumpType() + + def __init__(self, template, logger_level='WARNING', logger_name='console_only_logger', + plant_loop_class_objects=None, epjson=None): + """ + Initialize class + + :param template: HVACTemplate:Plant:(Chiller|Tower|Boiler) objects + :param plant_loop_class_objects: dictionary of ExpandPlantLoop objects + """ + super().__init__(template=template, logger_level=logger_level, logger_name=logger_name) + self.unique_name = self.template_name + plant_loops = {'plant_loop_class_objects': plant_loop_class_objects} if plant_loop_class_objects else {} + self.template_plant_loop_type = {'template': template, **plant_loops} + self.pump_configuration_type = {'template': template, **plant_loops} + self.primary_pump_type = {'template': template, **plant_loops} + if self.template_plant_loop_type == 'ChilledWaterLoop': + self.plant_loop_type_short = 'CHW' + elif self.template_plant_loop_type == 'MixedWaterLoop': + self.plant_loop_type_short = 'MW' + elif self.template_plant_loop_type == 'HotWaterLoop': + self.plant_loop_type_short = 'HW' + self.chiller_and_condenser_type = template + self.epjson = epjson or self.epjson + return + + def run(self): + """ + Process plant loop template + :return: class object with epJSON dictionary as class attribute + """ + self.logger.info('Processing Plant Equipment: {}'.format(self.unique_name)) + self._create_objects() + return self diff --git a/src/pyExpandObjects/src/hvac_template.py b/src/pyExpandObjects/src/hvac_template.py new file mode 100644 index 00000000000..1a545ab91bd --- /dev/null +++ b/src/pyExpandObjects/src/hvac_template.py @@ -0,0 +1,1818 @@ +import re +import copy +from epjson_handler import EPJSON +from expand_objects import ExpandObjects, ExpandThermostat, ExpandZone, ExpandSystem, ExpandPlantLoop, \ + ExpandPlantEquipment +from custom_exceptions import InvalidTemplateException, InvalidEpJSONException, PyExpandObjectsYamlStructureException + + +class HVACTemplate(EPJSON): + """ + Handle HVACTemplate conversion process and connect created objects together. + + Attributes: + templates: HVACTemplate objects from epJSON file + + base_objects: Non-HVACTemplate objects from epJSON file + + templates_zones: HVACTemplate:Zone: objects + + templates_systems: HVACTemplate:System: objects + + templates_plant_equipment: HVACTemplate:Plant equipment objects + + templates_plant_loops: HVACTemplate:Plant: loop objects + + expanded_*: List of class objects for each template type + + epjson: epJSON used to store connection objects + """ + + def __init__( + self, + no_schema=False, + logger_level='WARNING', + logger_name='console_only_logger', + reset_stream=True): + """ + :param no_schema: Boolean flag for skipping schema validation + """ + super().__init__(no_schema=no_schema, logger_level=logger_level, logger_name=logger_name, + reset_stream=reset_stream) + self.logger_level = logger_level + self.logger_name = logger_name + self.templates = {} + self.base_objects = {} + self.templates_systems = {} + self.templates_zones = {} + self.templates_plant_equipment = {} + self.templates_plant_loops = {} + self.templates_thermostats = {} + self.expanded_thermostats = {} + self.expanded_zones = {} + self.expanded_systems = {} + self.expanded_plant_loops = {} + self.expanded_plant_equipment = {} + self.epjson = {} + return + + def _hvac_template_preprocess(self, epjson): + """ + Organize epJSON and assign template objects to specific class attributes + + :param epjson: Input epJSON object + :return: organized epJSON template objects into templates, and templates_* as class attributes + """ + self.logger.info('##### HVACTemplate #####') + for object_type, object_structure in epjson.items(): + if re.match('^HVACTemplate:*', object_type): + if re.match('^HVACTemplate:Thermostat$', object_type): + self.merge_epjson( + super_dictionary=self.templates_thermostats, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + elif re.match('^HVACTemplate:Zone:(' + 'ConstantVolume|BaseboardHeat|FanCoil|IdealLoadsAirSystem|PTAC|PTHP|WaterToAirHeatPump|' + 'VRF|Unitary|VAV|VAV:FanPowered|VAV:HeatAndCool|DualDuct)$', + object_type): + zone_default_map = { + 'HVACTemplate:Zone:BaseboardHeat': { + 'baseboard_heating_type': 'HotWater', + 'outdoor_air_method': 'Flow/Person' + }, + 'HVACTemplate:Zone:ConstantVolume': { + 'outdoor_air_method': 'Flow/Person', + 'zone_cooling_design_supply_air_temperature_input_method': 'SystemSupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 12.8, + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:FanCoil': { + 'cooling_coil_type': 'ChilledWater', + 'heating_coil_type': 'HotWater', + 'outdoor_air_method': 'Flow/Person', + 'supply_fan_delta_pressure': 75, + 'cooling_coil_design_setpoint': 14.0, + 'heating_coil_design_setpoint': 50.0, + 'zone_cooling_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:PTAC': { + 'outdoor_air_method': 'Flow/Person', + 'supply_fan_placement': 'DrawThrough', + 'cooling_coil_type': 'SingleSpeedDX', + 'supply_fan_total_efficiency': 0.7, + 'cooling_coil_gross_rated_cooling_cop': 3.0, + 'heating_coil_type': 'Electric', + 'zone_cooling_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 14.0, + 'zone_cooling_design_supply_air_temperature_difference': 11.0, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:PTHP': { + 'outdoor_air_method': 'Flow/Person', + 'supply_fan_placement': 'DrawThrough', + 'cooling_coil_type': 'SingleSpeedDX', + 'cooling_coil_gross_rated_cop': 3.0, + 'supply_fan_total_efficiency': 0.7, + 'heat_pump_heating_coil_type': 'SingleSpeedDXHeatPump', + 'heat_pump_heating_coil_gross_rated_cop': 2.75, + 'heat_pump_heating_minimum_outdoor_dry_bulb_temperature': -8.0, + 'heat_pump_defrost_maximum_outdoor_dry_bulb_temperature': 5.0, + 'heat_pump_defrost_strategy': 'ReverseCycle', + 'heat_pump_defrost_control': 'Timed', + 'supplemental_heating_coil_type': 'Electric', + 'supplemental_heating_coil_maximum_outdoor_dry_bulb_temperature': 21.0, + 'zone_cooling_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 14.0, + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:Unitary': { + 'outdoor_air_method': 'Flow/Person', + 'zone_cooling_design_supply_air_temperature_input_method': 'SystemSupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 12.8, + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SystemSupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:VRF': { + 'outdoor_air_method': 'Flow/Person', + 'supply_air_fan_placement': 'BlowThrough', + 'cooling_coil_type': 'VariableRefrigerantFlowDX', + 'supply_fan_total_efficiency': 0.7, + 'heating_coil_type': 'VariableRefrigerantFlowDX', + 'zone_cooling_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 14.0, + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0 + }, + 'HVACTemplate:Zone:WaterToAirHeatPump': { + 'outdoor_air_method': 'Flow/Person', + 'supply_fan_placement': 'DrawThrough', + 'cooling_coil_type': 'Coil:Cooling:WaterToAirHeatPump:EquationFit', + 'cooling_coil_gross_rated_cop': 3.5, + # todo_eo: The template and ZoneHVAC:WaterToAirHeatPump defaults are mismatched for this + # field. This is not default efficiency for Fan:OnOff + 'supply_fan_total_efficiency': 0.7, + 'heat_pump_heating_coil_type': 'Coil:Heating:WaterToAirHeatPump:EquationFit', + 'heat_pump_heating_coil_gross_rated_cop': 4.2, + 'maximum_cycling_rate': 2.5, + 'supplemental_heating_coil_type': 'Electric', + 'zone_cooling_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_cooling_design_supply_air_temperature': 14.0, + 'zone_cooling_design_supply_air_temperature_difference': 11.11, + 'zone_heating_design_supply_air_temperature_input_method': 'SupplyAirTemperature', + 'zone_heating_design_supply_air_temperature': 50.0, + 'zone_heating_design_supply_air_temperature_difference': 30.0, + 'heat_pump_coil_water_flow_mode': 'Cycling' + } + } + for object_name, object_fields in object_structure.items(): + # set defaults + selected_default_map = zone_default_map.get(object_type) + if selected_default_map: + for field, default_value in selected_default_map.items(): + if not object_fields.get(field): + object_fields[field] = default_value + # set a mapping of zone template type to look up parent system + zone_template_map = { + ('HVACTemplate:Zone:ConstantVolume', ): + ( + 'template_constant_volume_system_name', + ['HVACTemplate:System:ConstantVolume', ]), + ('HVACTemplate:Zone:BaseboardHeat', 'HVACTemplate:Zone:FanCoil', 'HVACTemplate:Zone:PTAC', + 'HVACTemplate:Zone:PTHP', 'HVACTemplate:Zone:WaterToAirHeatPump', 'HVACTemplate:Zone:VRF', ): + ( + 'dedicated_outdoor_air_system_name', + ['HVACTemplate:System:DedicatedOutdoorAir', ]), + ('HVACTemplate:Zone:Unitary', ): + ( + 'template_unitary_system_name', + ['HVACTemplate:System:Unitary', 'HVACTemplate:System:UnitaryHeatPump', + 'HVACTemplate:System:UnitaryHeatPump:AirToAir', 'HVACTemplate:System:UnitarySystem']), + ('HVACTemplate:Zone:VAV', 'HVACTemplate:Zone:VAVFanPowered'): + ( + 'template_vav_system_name', + ['HVACTemplate:System:VAV', 'HVACTemplate:System:PackagedVAV']), + ('HVACTemplate:Zone:DualDuct', ): + ( + 'template_dual_duct_system_name', + ['HVACTemplate:System:DualDuct', ]), + ('HVACTemplate:Zone:vrf', ): + ( + 'template_vrf_system_name', + ['HVACTemplate:System:VRF', ])} + # Check the referenced system against the epjson and issue a warning if it isn't found + system_check_list = [v for k, v in zone_template_map.items() if object_type in k] + if system_check_list: + system_check_list = system_check_list[0] + for object_name, object_fields in object_structure.items(): + system_name = object_fields.get(system_check_list[0]) + if not system_name and system_check_list[0] == 'dedicated_outdoor_air_system_name': + continue + else: + template_system_name = None + for system_type in system_check_list[1]: + system_group = epjson.get(system_type) + if system_group: + template_system_name = True if system_name in system_group else False + if template_system_name: + break + if not template_system_name: + raise InvalidTemplateException( + 'Error: In {} ({}) Could not find air handler name referenced ({})' + .format(object_type, object_name, system_name)) + # check fields + for object_name, object_fields in object_structure.items(): + # check for required info + if not object_fields.get('template_thermostat_name', None): + self.logger.info( + 'In {} ({}) template thermostat name not provided' + .format(object_type, object_name)) + # check baseboard settings + if object_fields.get('baseboard_heating_type', None) == 'HotWater' and ( + not epjson.get('HVACTemplate:Plant:HotWaterLoop') or not + epjson.get('HVACTemplate:Plant:Boiler')): + self.logger.warning( + 'Warning: Both a HVACTemplate:Plant:HotWaterLoop and a HVACTemplate:Plant:Boiler are ' + 'needed when using hot water baseboards. Template name: {}'.format(object_name)) + # fan coil capacity control with doas + if object_type == 'HVACTemplate:Zone:FanCoil': + if object_fields.get('capacity_control_method') == 'ConstantFanVariableFlow' and \ + object_fields.get('dedicated_outdoor_air_system_name', '') != '': + self.logger.warning( + 'Warning: In {} ({})' + ' the Capacity Control Method is {}' + ' and the zone is served by a dedicated outdoor air system.' + .format(object_type, object_name, object_fields.get('capacity_control_method'))) + # IdealLoads input check + if object_type == 'HVACTemplate:Zone:IdealLoadsAirSystem': + heating_limit = object_fields.get('heating_limit') + maximum_heating_air_flow_rate = object_fields.get('maximum_heating_air_flow_rate', '') + maximum_sensible_heating_capacity = \ + object_fields.get('maximum_sensible_heating_capacity', '') + cooling_limit = object_fields.get('cooling_limit') + maximum_cooling_air_flow_rate = object_fields.get('maximum_cooling_air_flow_rate', '') + maximum_total_cooling_capacity = \ + object_fields.get('maximum_total_cooling_capacity', '') + if heating_limit == 'LimitFlowRate' and maximum_heating_air_flow_rate == '': + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Heating Limit field is {} but the Maximum Heating Air Flow Rate field is ' + 'blank. Enter a value or autosize in this field.' + .format(object_type, object_name, object_fields.get('heating_limit'))) + elif heating_limit == 'LimitCapacity' and maximum_sensible_heating_capacity == '': + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Heating Limit field is {} but the Maximum Sensible Heating Capacity field is ' + 'blank. Enter a value or autosize in this field.' + .format(object_type, object_name, object_fields.get('heating_limit'))) + elif heating_limit == 'LimitFlowRateAndCapacity' and ( + maximum_heating_air_flow_rate == '' or maximum_sensible_heating_capacity == ''): + msg = [] + if maximum_heating_air_flow_rate == '': + msg.append('the Maximum Heating Air Flow Rate field is blank') + if maximum_sensible_heating_capacity == '': + msg.append('the Maximum Sensible Heating Capacity field is blank') + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Heating Limit field is {} but {}. Enter a value or autosize in this field.' + .format( + object_type, + object_name, + object_fields.get('heating_limit'), + ' and '.join(msg))) + if cooling_limit == 'LimitFlowRate' and maximum_cooling_air_flow_rate == '': + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Heating Limit field is {} but the Maximum Cooling Air Flow Rate field is ' + 'blank. Enter a value or autosize in this field.' + .format(object_type, object_name, object_fields.get('cooling_limit'))) + elif cooling_limit == 'LimitCapacity' and maximum_total_cooling_capacity == '': + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Cooling Limit field is {} but the Maximum Total Cooling Capacity field is ' + 'blank. Enter a value or autosize in this field.' + .format(object_type, object_name, object_fields.get('cooling_limit'))) + elif cooling_limit == 'LimitFlowRateAndCapacity' and ( + maximum_cooling_air_flow_rate == '' or maximum_total_cooling_capacity == ''): + msg = [] + if maximum_cooling_air_flow_rate == '': + msg.append('the Maximum Cooling Air Flow Rate field is blank') + if maximum_total_cooling_capacity == '': + msg.append('the Maximum Total Cooling Capacity field is blank') + raise InvalidTemplateException( + 'Error: In {} ({})' + ' the Cooling Limit field is {} but {}. Enter a value or autosize in this field.' + .format( + object_type, + object_name, + object_fields.get('cooling_limit'), + ' and '.join(msg))) + self.merge_epjson( + super_dictionary=self.templates_zones, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + elif re.match('^HVACTemplate:System:(' + 'VRF|Unitary|UnitaryHeatPump:AirToAir|UnitarySystem|VAV|PackagedVAV|' + 'ConstantVolume|DualDuct|DedicatedOutdoorAir' + ')$', object_type): + # check for individual template issues + system_default_map = { + 'HVACTemplate:System:ConstantVolume': { + 'cooling_coil_type': 'ChilledWater', + 'cooling_coil_design_setpoint_temperature': 12.8, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_reset_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_high': 12.8, + 'cooling_coil_reset_outdoor_dry_bulb_high': 23.3, + 'economizer_type': 'NoEconomizer', + 'heating_coil_type': 'HotWater', + 'heating_coil_design_setpoint': 10, + 'heating_coil_setpoint_at_outdoor_dry_bulb_low': 15.0, + 'heating_coil_reset_outdoor_dry_bulb_low': 7.8, + 'heating_coil_setpoint_at_outdoor_dry_bulb_high': 12.2, + 'heating_coil_reset_outdoor_dry_bulb_high': 12.2 + }, + 'HVACTemplate:System:DedicatedOutdoorAir': { + 'air_outlet_type': 'DirectIntoZone', + 'cooling_coil_type': 'ChilledWater', + 'cooling_coil_design_setpoint_temperature': 12.8, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_reset_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_high': 12.8, + 'cooling_coil_reset_outdoor_dry_bulb_high': 23.3, + 'dx_cooling_coil_gross_rated_cop': 3.0, + 'heating_coil_type': 'HotWater', + 'heating_coil_design_setpoint': 12.2, + 'heating_coil_setpoint_at_outdoor_dry_bulb_low': 15.0, + 'heating_coil_reset_outdoor_dry_bulb_low': 7.8, + 'heating_coil_setpoint_at_outdoor_dry_bulb_high': 12.2, + 'heating_coil_reset_outdoor_dry_bulb_high': 12.2, + 'humidifier_rated_capacity': 1e-06, + 'humidifier_constant_setpoint': 0.003 + }, + 'HVACTemplate:System:DualDuct': { + 'system_configuration_type': 'SingleFanConstantVolume', + 'main_supply_fan_minimum_flow_fraction': 0.2, + 'cold_duct_supply_fan_minimum_flow_fraction': 0.2, + 'cold_duct_supply_fan_placement': 'DrawThrough', + 'hot_duct_supply_fan_minimum_flow_fraction': 0.2, + 'hot_duct_supply_fan_placement': 'DrawThrough', + 'cooling_coil_type': 'ChilledWater', + 'cooling_coil_setpoint_control_type': 'FixedSetpoint', + 'cooling_coil_design_setpoint_temperature': 12.8, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_reset_outdoor_dry_bulb_low': 15.6, + 'cooling_coil_setpoint_at_outdoor_dry_bulb_high': 12.8, + 'cooling_coil_reset_outdoor_dry_bulb_high': 23.3, + 'heating_coil_type': 'HotWater', + 'heating_coil_setpoint_control_type': 'FixedSetpoint', + 'heating_coil_design_setpoint': 50, + 'heating_coil_setpoint_at_outdoor_dry_bulb_low': 50, + 'heating_coil_reset_outdoor_dry_bulb_low': 7.8, + 'heating_coil_setpoint_at_outdoor_dry_bulb_high': 26, + 'heating_coil_reset_outdoor_dry_bulb_high': 12.2, + 'preheat_coil_design_setpoint': 7.2 + }, + 'HVACTemplate:System:PackagedVAV': { + 'cooling_coil_type': 'TwoSpeedDX', + 'cooling_coil_design_setpoint': 12.8, + 'cooling_coil_gross_rated_cop': 3.0, + 'heating_coil_design_setpoint': 10 + }, + 'HVACTemplate:System:Unitary': { + 'cooling_coil_type': 'SingleSpeedDX', + 'cooling_design_supply_air_temperature': 12.8, + 'cooling_coil_gross_rated_cop': 3.0, + 'heating_design_supply_air_temperature': 50.0, + 'economizer_type': 'NoEconomizer', + 'economizer_lockout': 'NoLockout', + 'supply_fan_placement': 'BlowThrough', + 'dehumidification_setpoint': 60.0, + 'humidifier_rated_capacity': 1e-06, + 'humidifier_setpoint': 30.0 + }, + 'HVACTemplate:System:UnitarySystem': { + 'control_type': 'Load', + 'supply_fan_placement': 'BlowThrough', + 'cooling_coil_type': 'SingleSpeedDX', + 'number_of_speeds_for_cooling': 1, + 'dx_cooling_coil_gross_rated_cop': 3.0, + 'heating_coil_type': 'Gas', + 'number_of_speeds_or_stages_for_heating': 1, + 'heat_pump_heating_coil_gross_rated_cop': 2.75, + 'heat_pump_heating_minimum_outdoor_dry_bulb_temperature': -8.0, + 'heat_pump_defrost_maximum_outdoor_dry_bulb_temperature': 5.0, + 'heat_pump_defrost_strategy': 'ReverseCycle', + 'heat_pump_defrost_control': 'Timed', + 'supplemental_heating_or_reheat_coil_type': 'None', + 'supplemental_heating_or_reheat_coil_maximum_outdoor_dry_bulb_temperature': 21.0, + 'economizer_type': 'NoEconomizer', + 'economizer_lockout': 'NoLockout', + 'heat_recovery_frost_control_type': 'None', + 'dehumidification_control_type': 'None', + 'dehumidification_relative_humidity_setpoint': 60.0, + 'humidifier_type': 'None', + 'humidifier_rated_capacity': 1e-06, + 'humidifier_relative_humidity_setpoint': 30.0, + 'sizing_option': 'NonCoincident', + 'return_fan': 'No' + }, + 'HVACTemplate:System:VAV': { + 'cooling_coil_type': 'ChilledWater', + 'cooling_coil_design_setpoint': 12.8, + 'heating_coil_type': 'None', + 'heating_coil_design_setpoint': 10, + 'preheat_coil_design_setpoint': 7.2, + 'humidifier_rated_capacity': 1e-06 + } + } + for object_name, object_fields in object_structure.items(): + # set defaults + selected_default_map = system_default_map.get(object_type) + if selected_default_map: + for field, default_value in selected_default_map.items(): + if not object_fields.get(field): + object_fields[field] = default_value + try: + zone_system_field = self._get_zone_template_field_from_system_type(object_type) + except InvalidTemplateException: + continue + system_names = [ + zone_fields.get(zone_system_field) for zone_type, zone_structure in epjson.items() + if re.match(r'HVACTemplate:Zone:.*', zone_type) + for zone_template_name, zone_fields in zone_structure.items()] + if object_name not in system_names: + raise InvalidTemplateException( + 'Error: In {} ({}) Did not find any HVACTemplate:Zone objects connected to system.' + 'There must be at least one zone object which specifies ' + 'this system as the Template Unitary System Name.' + .format(object_type, object_name)) + if object_fields.get('night_cycle_control', 'None') == 'CycleOnControlZone' and \ + object_fields.get('night_cycle_control_zone_name', 'None') == 'None': + self.logger.warning('Warning: A zone name must be specified when Night Cycle Control is ' + 'set to Cycle on Control Zone for {} with unique name {}' + .format(object_type, object_name)) + # check for control zones + if object_type in ['HVACTemplate:System:Unitary', + 'HVACTemplate:System:ConstantVolume', + 'HVACTemplate:System:UnitarySystem']: + for object_name, object_fields in object_structure.items(): + try: + zone_system_field = self._get_zone_template_field_from_system_type(object_type) + except InvalidTemplateException: + continue + try: + zones_served = [ + zone_fields.get('zone_name') for zone_type, zone_structure in epjson.items() + if re.match(r'HVACTemplate:Zone:.*', zone_type) + for zone_template_name, zone_fields in zone_structure.items() + if zone_fields.get(zone_system_field) == object_name] + except AttributeError: + raise InvalidTemplateException( + 'Error: In {} ({}) No HVACTemplate:Zone template objects reference' + ' the system object' + .format(object_type, object_name)) + if object_type in ['HVACTemplate:System:Unitary', 'HVACTemplate:System:UnitarySystem'] and \ + object_fields.get('control_zone_or_thermostat_location_name') and \ + object_fields.get('control_zone_or_thermostat_location_name') not in zones_served: + raise InvalidTemplateException( + 'Error: In {} ({}) for the field control_zone_or_thermostat_location_name could ' + 'not find a matching HVACTemplate:Zone:Unitary named {}' + .format( + object_type, + object_name, + object_fields.get('control_zone_or_thermostat_location_name'))) + elif object_type in ['HVACTemplate:System:Unitary', + 'HVACTemplate:System:UnitarySystem'] and \ + not object_fields.get('control_zone_or_thermostat_location_name'): + raise InvalidTemplateException( + 'Error: control_zone_or_thermostat_location_name must ' + 'be specified for {} which is a {}'.format(object_name, object_type)) + elif object_type == 'HVACTemplate:System:ConstantVolume' and \ + object_fields.get('cooling_coil_control_zone_name') and \ + object_fields.get('cooling_coil_control_zone_name') not in zones_served: + raise InvalidTemplateException( + 'Error: In {} named {} for the field cooling_coil_control_zone_name could ' + 'not find a matching HVACTemplate:Zone:Unitary named {}' + .format( + object_type, + object_name, + object_fields.get('cooling_coil_control_zone_name'))) + elif object_type == 'HVACTemplate:System:ConstantVolume' and \ + object_fields.get('heating_coil_control_zone_name') and \ + object_fields.get('heating_coil_control_zone_name') not in zones_served: + raise InvalidTemplateException( + 'Error: In {} named {} for the field heating_coil_control_zone_name could ' + 'not find a matching HVACTemplate:Zone:Unitary named {}' + .format( + object_type, + object_name, + object_fields.get('heating_coil_control_zone_name'))) + # check vrf master thermostat referenced zone + if object_type in ['HVACTemplate:System:VRF', ]: + for object_name, object_fields in object_structure.items(): + try: + zone_system_field = self._get_zone_template_field_from_system_type(object_type) + except InvalidTemplateException: + continue + try: + zones_served = [ + zone_fields.get('zone_name') for zone_type, zone_structure in epjson.items() + if re.match(r'HVACTemplate:Zone:.*', zone_type) + for zone_template_name, zone_fields in zone_structure.items() + if zone_fields.get(zone_system_field) == object_name] + except AttributeError: + raise InvalidTemplateException('Error: No HVACTemplate:Zone:Unitary template objects reference' + ' the {} object'.format(object_type)) + if object_fields.get('master_thermostat_priority_control_type') == \ + 'MasterThermostatPriority' and \ + object_fields.get('zone_name_for_master_thermostat_location') not in zones_served: + raise InvalidTemplateException( + 'Error: In {} ({}) for the field Zone Name for ' + 'Master Thermostat Location could not find a matching ' + 'HVACTemplate:Zone:VRF named: {}' + .format( + object_type, + object_name, + object_fields.get('zone_name_for_master_thermostat_location'))) + if object_fields.get('master_thermostat_priority_control_type') == 'Scheduled' and \ + not object_fields.get('thermostat_priority_schedule_name'): + raise InvalidTemplateException( + 'Error: In {} ({}) the Master Thermostat ' + 'Priority Control Type = Scheduled, but the Thermostat Priority Schedule Name ' + 'is blank.'.format(object_type, object_name)) + self.merge_epjson( + super_dictionary=self.templates_systems, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + elif re.match('^HVACTemplate:Plant:(ChilledWater|HotWater|MixedWater)Loop$', object_type): + if len(object_structure.keys()) > 1: + self.logger.warning('Warning: Only one {} allowed per file.'.format(object_type)) + plant_loop_default_map = { + 'HVACTemplate:Plant:ChilledWaterLoop': { + 'chilled_water_design_setpoint': 7.22, + 'condenser_water_design_setpoint': 29.4, + 'chilled_water_pump_configuration': 'ConstantPrimaryNoSecondary', + 'chilled_water_setpoint_at_outdoor_dry_bulb_low': 12.2, + 'chilled_water_reset_outdoor_dry_bulb_low': 15.6, + 'chilled_water_setpoint_at_outdoor_dry_bulb_high': 6.7, + 'chilled_water_reset_outdoor_dry_bulb_high': 26.7 + }, + 'HVACTemplate:Plant:HotWaterLoop': { + 'hot_water_design_setpoint': 82, + 'hot_water_pump_configuration': 'ConstantFlow', + 'hot_water_setpoint_at_outdoor_dry_bulb_low': 82.2, + 'hot_water_reset_outdoor_dry_bulb_low': -6.7, + 'hot_water_setpoint_at_outdoor_dry_bulb_high': 65.6, + 'hot_water_reset_outdoor_dry_bulb_high': 10 + }, + 'HVACTemplate:Plant:MixedWaterLoop': { + 'high_temperature_design_setpoint': 33, + 'low_temperature_design_setpoint': 20, + 'water_pump_configuration': 'ConstantFlow' + } + } + for object_name, object_fields in object_structure.items(): + # set defaults + selected_default_map = plant_loop_default_map.get(object_type) + if selected_default_map: + for field, default_value in selected_default_map.items(): + if not object_fields.get(field): + object_fields[field] = default_value + if object_type == 'HVACTemplate:Plant:HotWaterLoop': + loop_system_list = [ + 'HVACTemplate:System:VAV', 'HVACTemplate:Zone:FanCoil', 'HVACTemplate:Zone:Unitary', + 'HVACTemplate:Zone:PTAC', 'HVACTemplate:Zone:PTHP', 'HVACTemplate:Zone:WaterToAirHeatPump', + 'HVACTemplate:System:UnitaryHeatPump:AirToAir', 'HVACTemplate:System:PackagedVAV', + 'HVACTemplate:System:DedicatedOutdoorAir', 'HVACTemplate:System:ConstantVolume', + 'HVACTemplate:System:DualDuct', 'HVACTemplate:Zone:BaseboardHeat', + 'HVACTemplate:System:UnitarySystem', 'HVACTemplate:System:VRF'] + if not any(hwlst in loop_system_list for hwlst in epjson.keys()): + self.logger.warning( + 'Warning: You must specify at least one {} ' + 'if a HVACTemplate:Plant:HotWaterLoop is defined.' + .format(' or '.join(loop_system_list))) + if object_type == 'HVACTemplate:Plant:ChilledWaterLoop': + loop_system_list = [ + 'HVACTemplate:System:VAV', 'HVACTemplate:Zone:FanCoil', + 'HVACTemplate:System:DedicatedOutdoorAir', 'HVACTemplate:System:ConstantVolume', + 'HVACTemplate:System:DualDuct', 'HVACTemplate:System:UnitarySystem'] + if not any(hwlst in loop_system_list for hwlst in epjson.keys()): + self.logger.warning( + 'Warning: You must specify at least one {} ' + 'if a HVACTemplate:Plant:ChilledWaterLoop is defined.' + .format(' or '.join(loop_system_list))) + if object_type == 'HVACTemplate:Plant:MixedWaterLoop': + loop_system_list = [ + 'HVACTemplate:Zone:WaterToAirHeatPump', 'HVACTemplate:System:VRF', + 'HVACTemplate:System:UnitarySystem'] + if not any(hwlst in loop_system_list for hwlst in epjson.keys()): + self.logger.warning( + 'Warning: You must specify at least one {} ' + 'if a HVACTemplate:Plant:MixedWaterLoop is defined.' + .format(' or '.join(loop_system_list))) + if 'HVACTemplate:Plant:HotWaterLoop' in epjson.keys(): + self.logger.warning( + 'Warning: In {}' + ' an HVACTemplate:Plant:HotWaterLoop is also present. All boilers with blank Template ' + 'Loop Type field will be connected to the Hot Water Loop.' + .format(object_type)) + self.merge_epjson( + super_dictionary=self.templates_plant_loops, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + elif re.match('^HVACTemplate:Plant:(Chiller|Tower|Boiler)(:ObjectReference)*$', object_type): + boiler_default_map = { + 'HVACTemplate:Plant:Boiler': { + 'fuel_type': 'NaturalGas', + 'priority': '1', + 'efficiency': 0.8, + 'water_outlet_upper_temperature_limit': 100.0 + }, + 'HVACTemplate:Plant:Boiler:ObjectReference': { + 'boiler_object_type': 'Boiler:HotWater', + 'priority': '1' + }, + 'HVACTemplate:Plant:Chiller': { + 'condenser_type': 'WaterCooled' + }, + 'HVACTemplate:Plant:Chiller:ObjectReference': { + 'chiller_object_type': 'Chiller:Electric:EIR', + 'priority': '1' + }, + 'HVACTemplate:Plant:Tower:ObjectReference': { + 'cooling_tower_object_type': 'CoolingTower:SingleSpeed' + }, + } + for object_name, object_fields in object_structure.items(): + # set defaults + selected_default_map = boiler_default_map.get(object_type) + if selected_default_map: + for field, default_value in selected_default_map.items(): + if not object_fields.get(field): + object_fields[field] = default_value + # Check boiler inputs + if object_type == 'HVACTemplate:Plant:Boiler': + for object_name, object_fields in object_structure.items(): + if not object_fields.get('fuel_type') and \ + object_fields.get('boiler_type') != 'DistrictHotWater': + raise InvalidTemplateException( + 'Error: In {} ({}) fuel_type must be specified when boiler_type is not ' + 'DistrictHotWater'.format(object_type, object_name)) + # Check tower inputs + if object_type == 'HVACTemplate:Plant:Tower': + for object_name, object_fields in object_structure.items(): + high_speed_nominal_capacity = object_fields.get('high_speed_nominal_capacity', 'Autosize') + free_convection_capacity = object_fields.get('free_convection_capacity', 'Autosize') + if (str(high_speed_nominal_capacity).lower() == 'autosize' and str( + free_convection_capacity).lower() != 'autosize') or \ + (str(high_speed_nominal_capacity).lower() != 'autosize' and str( + free_convection_capacity).lower() == 'autosize'): + raise InvalidTemplateException( + 'Error: In {} ({}) For a {} tower the high speed capacity and free ' + 'convection capacity both need to be specified or set to autosize.' + .format(object_type, object_name, object_fields.get('tower_type'))) + # for plant equipment object references, add the referenced object to epjson for complex input resolution + # later on. For chiller objects, also identify condenser type and make it a template attribute. + elif object_type == 'HVACTemplate:Plant:Boiler:ObjectReference': + for object_name, object_fields in object_structure.items(): + reference_object_structure = epjson.get(object_fields['boiler_object_type']) + if not reference_object_structure: + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced boiler not found: {}' + .format(object_type, object_name, object_fields)) + for reference_object_name, reference_object_fields in reference_object_structure.items(): + if reference_object_name == object_fields['boiler_name']: + if reference_object_fields.get('boiler_water_inlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank Inlet Node Name found in referenced boiler: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('boiler_water_outlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank Outlet Node Name found in referenced boiler: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('boiler_water_inlet_node_name') == \ + reference_object_fields.get('boiler_water_outlet_node_name'): + raise InvalidTemplateException( + 'Error: in {} ({}) Duplicate hot water node name found in ' + 'referenced boiler. All boiler inlet and outlet node names ' + 'must be unique' + .format(object_type, object_name)) + object_structure[object_name]['epjson'] = \ + {object_fields['boiler_object_type']: {reference_object_name: reference_object_fields}} + break + if not object_structure[object_name].get('epjson'): + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced boiler not found: {}' + .format(object_type, object_name, object_fields)) + elif object_type == 'HVACTemplate:Plant:Chiller:ObjectReference': + for object_name, object_fields in object_structure.items(): + reference_object_structure = epjson.get(object_fields['chiller_object_type']) + if not reference_object_structure: + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced chiller not found: {}' + .format(object_type, object_name, object_fields)) + for reference_object_name, reference_object_fields in reference_object_structure.items(): + if reference_object_name == object_fields['chiller_name']: + if reference_object_fields.get('chilled_water_inlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank chilled water Inlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('chilled_water_outlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank chilled water Outlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('chilled_water_inlet_node_name') == \ + reference_object_fields.get('chilled_water_outlet_node_name'): + raise InvalidTemplateException( + 'Error: in {} ({}) Duplicate chilled water node name found in ' + 'referenced chiller. All chiller inlet and outlet node names ' + 'must be unique' + .format(object_type, object_name)) + try: + object_structure[object_name]['condenser_type'] = reference_object_fields['condenser_type'] + except (KeyError, AttributeError): + object_structure[object_name]['condenser_type'] = 'WaterCooled' + if object_structure[object_name]['condenser_type'] == 'WaterCooled': + if reference_object_fields.get('condenser_inlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank condenser water Inlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('condenser_outlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank condenser water Outlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('condenser_inlet_node_name') == \ + reference_object_fields.get('condenser_outlet_node_name'): + raise InvalidTemplateException( + 'Error: in {} ({}) Duplicate condenser water node name found in ' + 'referenced chiller. All chiller inlet and outlet node names ' + 'must be unique' + .format(object_type, object_name)) + object_structure[object_name]['epjson'] = \ + {object_fields['chiller_object_type']: {reference_object_name: reference_object_fields}} + break + if not object_structure[object_name].get('epjson'): + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced chiller not found: {}' + .format(object_type, object_name, object_fields)) + elif object_type == 'HVACTemplate:Plant:Tower:ObjectReference': + for object_name, object_fields in object_structure.items(): + reference_object_structure = epjson.get(object_fields['cooling_tower_object_type']) + if not reference_object_structure: + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced tower not found: {}' + .format(object_type, object_name, object_fields)) + for reference_object_name, reference_object_fields in reference_object_structure.items(): + if reference_object_name == object_fields['cooling_tower_name']: + if reference_object_fields.get('water_inlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank Inlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('water_outlet_node_name', '') in ['', 'None']: + raise InvalidTemplateException( + 'Error: In {} ({}) Blank Outlet Node Name found in ' + 'referenced chiller: {}' + .format(object_type, object_name, object_fields)) + if reference_object_fields.get('water_inlet_node_name') == \ + reference_object_fields.get('water_outlet_node_name'): + raise InvalidTemplateException( + 'Error: in {} ({}) Duplicate node name found in referenced tower. ' + 'All tower inlet and outlet node names must be unique' + .format(object_type, object_name)) + object_structure[object_name]['epjson'] = \ + {object_fields['cooling_tower_object_type']: {reference_object_name: reference_object_fields}} + break + if not object_structure[object_name].get('epjson'): + raise InvalidTemplateException( + 'Error: In {} ({}) Referenced tower not found: {}' + .format(object_type, object_name, object_fields)) + self.merge_epjson( + super_dictionary=self.templates_plant_equipment, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + else: + raise InvalidTemplateException( + 'Error: Template object type {} was not recognized'.format(object_type)) + # store original templates into dictionary + self.merge_epjson( + super_dictionary=self.templates, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + else: + # store all non-template objects into a base epjson object. + self.merge_epjson( + super_dictionary=self.base_objects, + object_dictionary={object_type: object_structure}, + unique_name_override=False) + return + + def _expand_templates(self, templates, expand_class, **kwargs): + """ + Run Expand operations on multiple templates + :param templates: dictionary of HVACTemplate:.* objects + :param expand_class: ExpandObjects child class to operate on template (e.g. ExpandZone). + :return: dictionary of expanded objects with unique name as key + """ + expanded_template_dictionary = {} + templates = self.epjson_genexp(templates) + for template in templates: + (_, template_structure), = template.items() + (template_name, template_fields), = template_structure.items() + external_epjson_objects = template_fields.pop('epjson', None) + expanded_template = expand_class( + template=template, + epjson=external_epjson_objects, + logger_level=self.logger_level, + logger_name=self.logger_name, + **kwargs).run() + expanded_template_dictionary[template_name] = expanded_template + return expanded_template_dictionary + + def _create_zonecontrol_thermostat(self, zone_class_object): + """ + Create ZoneControl:Thermostat objects. This operations is performed outside of ExpandObjects because it + requires cross-referencing between HVACTemplate:Zone and HVACTemplate:Thermostat objects + + :param zone_class_object: ExpandZone object + :return: Updated class epJSON dictionary with ThermostatSetpoint objects added. Objects are also added + to the class self.epsjon dictionary. + """ + # Retreive the thermostat object + try: + thermostat_template_name = getattr(zone_class_object, 'template_thermostat_name') + except AttributeError: + self.logger.info( + 'In {} ({}) Zone object does not reference a thermostat class object' + .format(zone_class_object.template_type, zone_class_object.unique_name)) + return + except ValueError: + raise InvalidTemplateException('Error: Zone template ({}) is improperly formatted.' + .format(zone_class_object.unique_name)) + try: + thermostat_object = self.expanded_thermostats[thermostat_template_name] + except (ValueError, KeyError): + raise InvalidTemplateException('Error: Thermostat object does not exist ({}) but is reference by ' + 'zone template {}' + .format(thermostat_template_name, zone_class_object.unique_name)) + # Evaluate the thermostat type in the thermostat object and format the output object accordingly + try: + zone_name = getattr(zone_class_object, 'zone_name') + thermostat_epjson = {t_type: t_struct for t_type, t_struct + in thermostat_object.epjson.items() + if re.match(r'^ThermostatSetpoint.*', t_type)} + (thermostat_type, thermostat_structure), = thermostat_epjson.items() + (thermostat_name, _), = thermostat_structure.items() + # create control schedule based on thermostat type + if thermostat_type == "ThermostatSetpoint:SingleHeating": + control_schedule = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name)\ + .build_compact_schedule( + structure_hierarchy=['Objects', 'Common', 'Objects', 'Schedule', 'Compact', 'ALWAYS_VAL'], + insert_values=[1, ]) + elif thermostat_type == "ThermostatSetpoint:SingleCooling": + control_schedule = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name)\ + .build_compact_schedule( + structure_hierarchy=['Objects', 'Common', 'Objects', 'Schedule', 'Compact', 'ALWAYS_VAL'], + insert_values=[2, ]) + elif thermostat_type == "ThermostatSetpoint:DualSetpoint": + control_schedule = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name)\ + .build_compact_schedule( + structure_hierarchy=['Objects', 'Common', 'Objects', 'Schedule', 'Compact', 'ALWAYS_VAL'], + insert_values=[4, ]) + else: + raise InvalidTemplateException("Error: {} ({}) Invalid thermostat type set in ExpandThermostat" + .format(thermostat_type, thermostat_object.unique_name)) + # create zonecontrol object + (_, schedule_structure), = control_schedule.items() + (schedule_name, _), = schedule_structure.items() + zonecontrol_thermostat = { + "ZoneControl:Thermostat": { + "{} Thermostat".format(zone_name): { + "control_1_name": thermostat_name, + "control_1_object_type": thermostat_type, + "control_type_schedule_name": schedule_name, + "zone_or_zonelist_name": "{}".format(zone_name) + } + } + } + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=dict(control_schedule, **zonecontrol_thermostat), + unique_name_override=True + ) + return dict(control_schedule, **zonecontrol_thermostat) + except (ValueError, AttributeError, KeyError): + raise InvalidTemplateException( + "Error: HVACTemplate failed to build ZoneControl:Thermostat from zone template " + "{}".format(zone_class_object.unique_name)) # pragma: no cover - catchall + + @staticmethod + def _get_zone_template_field_from_system_type(template_type): + """ + Retrieve the corresponding zone field name for a system template type + :param template_type: HVACTemplate:System object type + :return: zone field name + """ + # get the zone field_name that will identify the system template name + if re.match(r'HVACTemplate:System:ConstantVolume', template_type): + zone_system_template_field_name = 'template_constant_volume_system_name' + elif re.match(r'HVACTemplate:System:DedicatedOutdoorAir', template_type): + zone_system_template_field_name = 'dedicated_outdoor_air_system_name' + elif re.match(r'HVACTemplate:System:DualDuct', template_type): + zone_system_template_field_name = 'template_dual_duct_system_name' + elif re.match(r'HVACTemplate:System:Unitary.*', template_type): + zone_system_template_field_name = 'template_unitary_system_name' + elif re.match(r'HVACTemplate:System:.*VAV$', template_type): + zone_system_template_field_name = 'template_vav_system_name' + elif re.match(r'HVACTemplate:System:VRF', template_type): + zone_system_template_field_name = 'template_vrf_system_name' + else: + raise InvalidTemplateException( + "Error: Invalid system type passed to supply path creation function: {}".format(template_type)) + return zone_system_template_field_name + + def _create_system_path_connection_objects(self, system_class_object, expanded_zones): + """ + Create objects connecting system supply air to zone objects. An AirLoopHVAC:SupplyPath object is created with + either an AirLoopHVAC:SupplyPlenum or an AirLoopHVAC:ZoneSplitter object. The same is true for + AirLoopHVAC:ReturnPath and AirLoopHVAC:ReturnPlenum/AirLoopHVAC:ZoneMixer. + + :param system_class_object: Expanded HVACTemplate:System:.* class object + :param expanded_zones: dictionary of ExpandZone objects + :return: system supply air connection objects. AirLoopHVAC:SupplyPath object and either + AirLoopHVAC:SupplyPlenum or AirLoopHVAC:ZoneSplitter object as well ass AirLoopHVAC:ReturnPath and either + AirLoopHVAC:ReturnPlenum or AirLoopHVAC:ZoneMixer. + """ + zone_system_template_field_name = \ + self._get_zone_template_field_from_system_type(template_type=system_class_object.template_type) + # iterate over inlet node name types. For DualDuct, this is two entries (hot/cold). For all other systems, + # this is a single value + if system_class_object.template_type == 'HVACTemplate:System:DualDuct': + inlet_nodes = ['cold_air_inlet_node_name', 'hot_air_inlet_node_name'] + else: + inlet_nodes = ['air_inlet_node_name', ] + # create ExpandObjects class object to use some yaml and epjson functions + eo = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name) + eo.unique_name = getattr(system_class_object, 'template_name') + # iterate over expanded zones and if the system reference field exists, and is for the referenced system, + # append them in the splitter and mixer lists + zone_return_plenums = [] + zone_induced_air_nodes = [] + for node_idx, inlet_node in enumerate(inlet_nodes): + zone_splitters = [] + zone_mixers = [] + zone_supply_plenums = [] + for _, ez in expanded_zones.items(): + if getattr(ez, zone_system_template_field_name, None) == system_class_object.template_name: + if getattr(ez, 'flow_type', None) in ['SeriesFromPlenum', 'ParallelFromPlenum']: + zone_induced_air_node = ez.unique_name + else: + zone_induced_air_node = None + if getattr(ez, 'supply_plenum_name', None) or ( + getattr(ez, 'cold_supply_plenum_name', None) and inlet_node == 'cold_air_inlet_node_name') or ( + getattr(ez, 'hot_supply_plenum_name', None) and inlet_node == 'hot_air_inlet_node_name'): + try: + zone_supply_equipment = {'AirLoopHVAC:SupplyPlenum': ez.epjson['AirLoopHVAC:SupplyPlenum']} + except (KeyError, AttributeError): + raise InvalidTemplateException( + 'Error: supply_plenum_name indicated for zone template {} but ' + 'AirLoopHVAC:SupplyPlenum was not created'.format(ez.unique_name)) + else: + zone_supply_equipment = self.get_epjson_objects( + epjson=ez.epjson, + object_type_regexp=r'^AirTerminal:.*') + try: + (zone_supply_equipment_type, zone_supply_equipment_structure), = zone_supply_equipment.items() + (zone_supply_equipment_name, zone_supply_equipment_fields), = zone_supply_equipment_structure.items() + + if zone_supply_equipment_type == 'AirLoopHVAC:SupplyPlenum': + outlet_node_name = zone_supply_equipment_fields['inlet_node_name'] + zone_supply_plenums.append({ + 'component_name': zone_supply_equipment_name, + 'component_object_type': zone_supply_equipment_type + }) + elif zone_supply_equipment_type in ['AirTerminal:SingleDuct:SeriesPIU:Reheat', + 'AirTerminal:SingleDuct:ParallelPIU:Reheat']: + # Raise error if inlet node name is overridden for multi-inlet node systems (DualDuct) + if len(inlet_nodes) > 1: + raise InvalidTemplateException( + 'Error: Series or Parallel PIU is being referenced ' + 'by an invalid system {}'.format(system_class_object.template_type)) + outlet_node_name = zone_supply_equipment_fields['supply_air_inlet_node_name'] + else: + outlet_node_name = zone_supply_equipment_fields[inlet_node] + except (KeyError, AttributeError, ValueError): + raise InvalidTemplateException( + 'Error: Search for zone equipment from Supply Path creation failed for ' + 'outlet node. system {}, zone {}, zone equipment {}' + .format(system_class_object.template_name, ez.unique_name, zone_supply_equipment)) + if getattr(ez, 'return_plenum_name', None): + try: + zone_return_equipment = {'AirLoopHVAC:ReturnPlenum': ez.epjson['AirLoopHVAC:ReturnPlenum']} + except (KeyError, AttributeError): + raise InvalidTemplateException( + 'Error: return_plenum_name indicated for zone template {} but ' + 'AirLoopHVAC:ReturnPlenum was not created'.format(ez.unique_name)) + else: + try: + zone_return_equipment = {'ZoneHVAC:EquipmentConnections': ez.epjson['ZoneHVAC:EquipmentConnections']} + except (KeyError, AttributeError, ValueError): + raise InvalidTemplateException( + 'Error: Search for ZoneHVAC:EquipmentConnections object from Supply ' + 'Path creation failed for inlet node. system {}, zone {}' + .format(system_class_object.template_name, ez.unique_name)) + try: + (zone_return_equipment_type, zone_return_equipment_structure), = zone_return_equipment.items() + (zone_return_equipment_name, zone_return_equipment_fields), = zone_return_equipment_structure.items() + if zone_return_equipment_type == 'AirLoopHVAC:ReturnPlenum': + inlet_node_name = zone_return_equipment_fields['outlet_node_name'] + # use node_idx to prevent multiple zone_return_plenum objects from being created in dualduct zones + if node_idx == 0: + zone_return_plenums.append({ + 'component_name': zone_return_equipment_name, + 'component_object_type': zone_return_equipment_type + }) + else: + inlet_node_name = zone_return_equipment_fields['zone_return_air_node_or_nodelist_name'] + except (KeyError, AttributeError, ValueError): + raise InvalidTemplateException( + 'Error: Search for zone equipment from Return Path creation failed for ' + 'inlet node. system {}, zone {}, zone equipment {}' + .format(system_class_object.template_name, ez.unique_name, zone_return_equipment)) + zone_splitters.append( + { + "outlet_node_name": outlet_node_name + } + ) + zone_mixers.append( + { + "inlet_node_name": inlet_node_name + } + ) + if zone_induced_air_node: + # This is for PIU objects that use SeriesFromPlenum or ParallelFromPlenum + zone_induced_air_nodes.append( + { + "node_name": '{} Return'.format(zone_induced_air_node) + } + ) + # create plenums or spliters/mixers, depending on template inputs + supply_object = None + supply_plenum_name = getattr(system_class_object, 'supply_plenum_name', None) + cold_supply_plenum_name = getattr(system_class_object, 'cold_supply_plenum_name', None) + hot_supply_plenum_name = getattr(system_class_object, 'hot_supply_plenum_name', None) + if system_class_object.template_type == 'HVACTemplate:System:DualDuct' and \ + cold_supply_plenum_name and inlet_node.startswith('cold_air'): + eo.cold_supply_plenum_name = cold_supply_plenum_name + cold_supply_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'SupplyPlenum', 'DualDuct', 'Cold']) + cold_supply_object['nodes'] = zone_splitters + supply_object = {'AirLoopHVAC:SupplyPlenum': cold_supply_object} + elif system_class_object.template_type == 'HVACTemplate:System:DualDuct' and \ + hot_supply_plenum_name and inlet_node.startswith('hot_air'): + eo.hot_supply_plenum_name = hot_supply_plenum_name + hot_supply_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'SupplyPlenum', 'DualDuct', 'Hot']) + hot_supply_object['nodes'] = zone_splitters + supply_object = {'AirLoopHVAC:SupplyPlenum': hot_supply_object} + elif supply_plenum_name: + # set return plenum name attribute for transition and mapping processing + eo.supply_plenum_name = supply_plenum_name + supply_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'SupplyPlenum', 'Base']) + supply_object['nodes'] = zone_splitters + supply_object = {'AirLoopHVAC:SupplyPlenum': supply_object} + else: + supply_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'ZoneSplitter', 'Base']) + supply_object['nodes'] = zone_splitters + supply_object = {'AirLoopHVAC:ZoneSplitter': supply_object} + # Add Path objects + supply_path_object = {'AirLoopHVAC:SupplyPath': + eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'SupplyPath', 'Base'])} + # add zone supply plenums if they were created + if zone_supply_plenums: + (_, supply_path_object_fields), = supply_path_object.items() + supply_path_object_fields['components'].extend(zone_supply_plenums) + # Rename objects if multi-inlet node system is used + if system_class_object.template_type == 'HVACTemplate:System:DualDuct': + (_, supply_object_fields), = supply_object.items() + (_, supply_path_object_fields), = supply_path_object.items() + if inlet_node.startswith('cold_air'): + supply_object_fields['name'] = supply_object_fields['name'].replace('{}', '{} Cold') + supply_object_fields['inlet_node_name'] = supply_object_fields['inlet_node_name'].replace('{}', '{} Cold') + supply_path_object_fields['name'] = supply_path_object_fields['name'].replace('{}', '{} Cold') + if inlet_node.startswith('hot_air'): + supply_object_fields['name'] = supply_object_fields['name'].replace('{}', '{} Hot') + supply_object_fields['inlet_node_name'] = supply_object_fields['inlet_node_name'].replace('{}', '{} Hot') + supply_path_object_fields['name'] = supply_path_object_fields['name'].replace('{}', '{} Hot') + path_dictionary = eo.yaml_list_to_epjson_dictionaries( + yaml_list=[supply_object, supply_path_object]) + resolved_path_dictionary = eo.resolve_objects(epjson=path_dictionary) + # save output to class epsjon + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=resolved_path_dictionary) + # Create return objects + return_plenum_name = getattr(system_class_object, 'return_plenum_name', None) + return_nodelist = {} + if return_plenum_name: + # set return plenum name attribute for transition and mapping processing + eo.return_plenum_name = return_plenum_name + return_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'ReturnPlenum', 'Base']) + return_object['nodes'] = zone_mixers + return_object = {'AirLoopHVAC:ReturnPlenum': return_object} + if zone_induced_air_nodes: + return_object['AirLoopHVAC:ReturnPlenum']['induced_air_outlet_node_or_nodelist_name'] = \ + '{} Induced Air Nodes'.format(system_class_object.template_name) + return_nodelist = { + 'NodeList': { + 'name': '{} Induced Air Nodes'.format(system_class_object.template_name), + "nodes": zone_induced_air_nodes + } + } + else: + return_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'ZoneMixer', 'Base']) + return_object['nodes'] = zone_mixers + return_object = {'AirLoopHVAC:ZoneMixer': return_object} + # Add Path objects + return_path_object = { + 'AirLoopHVAC:ReturnPath': + eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'AirLoopHVAC', 'ReturnPath', 'Base'])} + # add zone return plenums if they were created + if zone_return_plenums: + (_, return_path_object_fields), = return_path_object.items() + # only take the first item, subsequent items are only duplicates from dualduct zone templates + return_path_object_fields['components'] = zone_return_plenums + return_path_object_fields['components'] + path_dictionary = eo.yaml_list_to_epjson_dictionaries( + yaml_list=[return_object, return_path_object, return_nodelist]) + resolved_path_dictionary = eo.resolve_objects(epjson=path_dictionary) + # save output to class epsjon + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=resolved_path_dictionary) + return resolved_path_dictionary + + def _create_system_vrf_path_connection_objects(self, system_class_object, expanded_zones): + """ + Create objects connecting VRF system to zone objects. + + :param system_class_object: Expanded HVACTemplate:System:.* class object + :param expanded_zones: dictionary of ExpandZone objects + :return: system supply air connection objects. AirLoopHVAC:SupplyPath object and either + AirLoopHVAC:SupplyPlenum or AirLoopHVAC:ZoneSplitter object as well ass AirLoopHVAC:ReturnPath and either + AirLoopHVAC:ReturnPlenum or AirLoopHVAC:ZoneMixer. + """ + # create ExpandObjects class object to use some yaml and epjson functions + eo = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name) + eo.unique_name = getattr(system_class_object, 'template_name') + vrf_object_name_list = [] + zone_system_template_field_name = \ + self._get_zone_template_field_from_system_type(template_type=system_class_object.template_type) + for _, ez in expanded_zones.items(): + if getattr(ez, zone_system_template_field_name, None) == system_class_object.template_name: + try: + vrf_object = ez.epjson['ZoneHVAC:TerminalUnit:VariableRefrigerantFlow'] + (vrf_object_name, _), = vrf_object.items() + except (KeyError, AttributeError): + raise InvalidTemplateException( + "Error: VRF zone template {} expanded with no " + "ZoneHVAC:TerminalUnit:VariableRefrigerantFlow object".format(ez.unique_name)) + except ValueError: + raise InvalidTemplateException( + 'ZoneHVAC:TerminalUnit:VariableRefrigerantFlow object incorrectly formatted: {}' + .format(ez.epjson.get('ZoneHVAC:TerminalUnit:VariableRefrigerantFlow', 'None'))) + vrf_object_name_list.append({'zone_terminal_unit_name': vrf_object_name}) + if vrf_object_name_list: + vrf_terminal_object = eo.get_structure(structure_hierarchy=[ + 'AutoCreated', 'System', 'ZoneTerminalUnitList', 'Base']) + vrf_terminal_object['terminal_units'] = vrf_object_name_list + path_dictionary = eo.yaml_list_to_epjson_dictionaries( + yaml_list=[{'ZoneTerminalUnitList': vrf_terminal_object}, ]) + resolved_path_dictionary = eo.resolve_objects(epjson=path_dictionary) + # save output to class epsjon + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=resolved_path_dictionary) + else: + raise InvalidTemplateException( + 'Error: Failed to create VRF terminal unit list for {}'.format(system_class_object.template_name)) + return + + def _create_templates_from_plant_equipment(self, plant_equipment_class_object, expanded_plant_loops): + """ + Create plant and platn equipment loop templates from ExpandPlantEquipment object attributes. + These outputs will be used as inputs to the initialize new ExpandPlantLoop and ExpandPlantLoopEquipment classes. + This process must be performed because ExpandPlantLoop must be + run before ExpandPlantEquipment. However, certain equipment inputs can cause for new loops to be created. + + :param plant_equipment_class_object: ExpandPlantEquipment class object + :param expanded_plant_loops: ExpandPlantLoop objects + :return: Array of Dictionary of HVAC:Template:Plant template objects to create an ExpandPlantLoop object + """ + # create dictionary to store plant loops + plant_loop_dictionary = {} + plant_equipment_dictionary = {} + # get each loop type specified in the existing plant loop class objects + plant_loops = [getattr(pl, 'template_type').lower() for pl in expanded_plant_loops.values()] + # create condenser water loop for water cooled condensers + if getattr(plant_equipment_class_object, 'template_type', None).lower() in \ + ['hvactemplate:plant:chiller', 'hvactemplate:plant:chiller:objectreference'] \ + and getattr(plant_equipment_class_object, 'condenser_type', 'WaterCooled').lower() == 'watercooled' \ + and 'hvactemplate:plant:condenserwaterloop' not in plant_loops \ + and getattr(plant_equipment_class_object, 'chiller_type', None) != 'DistrictChilledWater': + # try to get the chilled water loop attributes to transition to condenser water + chw_loop = [ + pl for pl + in expanded_plant_loops.values() + if getattr(pl, 'template_type').lower() == 'hvactemplate:plant:chilledwaterloop'] + cndw_attributes = {} + # transfer ChilledWaterLoop attributes to CondenserWaterLoop + if chw_loop: + for cndw_attribute, chw_attribute in zip( + ['condenser_water_pump_rated_head', 'condenser_water_design_setpoint', + 'condenser_plant_operation_scheme_type', 'condenser_equipment_operation_schemes_name', + 'condenser_water_temperature_control_type', 'condenser_water_setpoint_schedule_name', + 'pump_schedule_name', 'pump_control_type', 'condenser_water_pump_type', + 'condenser_water_supply_side_bypass_pipe', 'condenser_water_demand_side_bypass_pipe', + 'condenser_water_load_distribution_scheme'], + ['condenser_water_pump_rated_head', 'condenser_water_design_setpoint', + 'condenser_plant_operation_scheme_type', 'condenser_equipment_operation_schemes_name', + 'condenser_water_temperature_control_type', 'condenser_water_setpoint_schedule_name', + 'pump_schedule_name', 'pump_control_type', 'condenser_water_pump_type', + 'condenser_water_supply_side_bypass_pipe', 'condenser_water_demand_side_bypass_pipe', + 'condenser_water_load_distribution_scheme']): + try: + cndw_attributes[cndw_attribute] = getattr(chw_loop[0], chw_attribute) + except AttributeError: + self.logger.debug('Chilled water attribute {} not set by user, using default for ' + 'condenser water'.format(chw_attribute)) + cndw_attributes['template_plant_loop_type'] = 'CondenserWaterLoop' + self.merge_epjson( + super_dictionary=plant_loop_dictionary, + object_dictionary={ + 'HVACTemplate:Plant:CondenserWaterLoop': { + 'Condenser Water Loop': cndw_attributes + } + }) + # append plant loop to list to prevent another one being added. + plant_loops.append('hvactemplate:plant:condenserwaterloop') + return plant_loop_dictionary, plant_equipment_dictionary + + def _create_additional_plant_loops_and_equipment_from_equipment( + self, + expanded_plant_equipment, + expanded_plant_loops): + """ + Create additional HVACTemplate:Plant:.*Loops based on HVACTemplate:Plant:(Chiller|Tower|Boiler) inputs + + :param expanded_plant_equipment: ExpandPlantEquipment objects + :param expanded_plant_loops: ExpandPlantLoop objects + :return: Additional plant loop and equipment templates and objects added to expanded classes attributes + """ + # create deepcopy to iterate over because the expanded_plant_equipment object may change size during iteration + epe = copy.deepcopy(expanded_plant_equipment) + for epl_name, epl in epe.items(): + plant_loop_template, plant_equipment_template = self._create_templates_from_plant_equipment( + plant_equipment_class_object=epl, + expanded_plant_loops=expanded_plant_loops) + # If a plant loop was created, reprocess it here. + if plant_loop_template: + # add new plant loop to the templates + for tmpl in [self.templates, self.templates_plant_loops]: + self.merge_epjson( + super_dictionary=tmpl, + object_dictionary=plant_loop_template + ) + # Expand new plant loop and add to the class objects + additional_plant_loops = self._expand_templates( + templates=plant_loop_template, + expand_class=ExpandPlantLoop + ) + try: + for expanded_name, expanded_object in additional_plant_loops.items(): + if expanded_name not in expanded_plant_loops.keys(): + expanded_plant_loops[expanded_name] = expanded_object + except (AttributeError, ValueError): + InvalidTemplateException( + 'Error: A Plant loop was specified to be created from a plant equipment object ' + '{}, but the process failed to attach the created objects'.format(epl_name)) + # if a plant equipment template was created, process it here + if plant_equipment_template: + # add new plant equipment to the templates + for tmpl in [self.templates, self.templates_plant_equipment]: + self.merge_epjson( + super_dictionary=tmpl, + object_dictionary=plant_equipment_template + ) + # Expand new plant equipment and add to the class objects + # pass updated expanded_plant_loops to the class initialization as well. + additional_plant_equipment = self._expand_templates( + templates=plant_equipment_template, + expand_class=ExpandPlantEquipment, + plant_loop_class_objects=expanded_plant_loops + ) + try: + for expanded_name, expanded_object in additional_plant_equipment.items(): + if expanded_name not in expanded_plant_loops.keys(): + expanded_plant_equipment[expanded_name] = expanded_object + except (AttributeError, ValueError): + raise InvalidTemplateException( + 'Error: A Plant equipment was specified to be created from a plant ' + 'equipment object {}, but the process failed to attach the create objects'.format(epl_name)) + return + + @staticmethod + def _get_plant_equipment_waterloop_branches_by_loop_type( + plant_loop_class_object, + expanded_plant_equipment): + """ + Extract plant equipment branches by loop type and store in epJSON formatted dictionary + + :param plant_loop_class_object: ExpandPlantLoop object + :param expanded_plant_equipment: dictionary of ExpandPlantEquipment objects + :return: epJSON formatted dictionary of branch objects for loop connections + """ + branch_dictionary = {} + for pe in expanded_plant_equipment.values(): + branch_objects = copy.deepcopy(pe.epjson.get('Branch', {})) + for branch_name, branch_structure in branch_objects.items(): + components = branch_structure.get('components') + if not components: + raise InvalidTemplateException( + 'Error: In {} ({}) A branch object failed to create component fields {}' + .format(pe.template_type, pe.template_name, branch_name)) + # Special handling for chillers with condenser water and chilled water branches + # todo_eo: Currently the chilled and condenser water branches are separated by parsing the names. A more + # robust solution should be investigated. + if pe.template_type in ['HVACTemplate:Plant:Chiller', 'HVACTemplate:Plant:Chiller:ObjectReference'] \ + and getattr(pe, 'condenser_type', 'WaterCooled') == 'WaterCooled': + for branch_name, branch_structure in branch_objects.items(): + if 'chilledwater' in plant_loop_class_object.template_type.lower() and 'chw' in branch_name.lower(): + branch_dictionary.update({branch_name: branch_objects[branch_name]}) + if 'condenserwater' in plant_loop_class_object.template_type.lower() and 'cnd' in branch_name.lower(): + branch_dictionary.update({branch_name: branch_objects[branch_name]}) + # typical handling when all plant equipment branches belong in one loop + elif pe.template_plant_loop_type in plant_loop_class_object.template_type: + branch_dictionary.update(branch_objects) + if branch_dictionary: + return {'Branch': branch_dictionary} + else: + return None + + @staticmethod + def _get_zone_system_waterloop_branches_by_loop_type( + plant_loop_class_object, + expanded_zones, + expanded_systems): + """ + Extract zone and system branch objects by loop type and store in epJSON formatted dictionary + + :param plant_loop_class_object: ExpandPlantLoop class object + :param expanded_zones: ExpandZone objects + :param expanded_systems: ExpandSystem objects + :return: epJSON formatted dictionary of branch objects + """ + # create list of regex matches for the given loop + if 'chilledwater' in plant_loop_class_object.template_type.lower(): + branch_rgx = ['^Coil:Cooling:Water($|:DetailedGeometry)+', ] + elif 'hotwater' in plant_loop_class_object.template_type.lower(): + branch_rgx = ['^Coil:Heating:Water($|:DetailedGeometry)+', '^ZoneHVAC:Baseboard.*Water'] + elif 'mixedwater' in plant_loop_class_object.template_type.lower(): + branch_rgx = ['^Coil:.*HeatPump.*', '^AirConditioner:VariableRefrigerantFlow$'] + elif 'condenserwater' in plant_loop_class_object.template_type.lower(): + return None + else: + InvalidTemplateException('an invalid loop type was specified when creating plant loop connections: {}' + .format(plant_loop_class_object.template_type)) + branch_dictionary = {} + object_list = [expanded_zones or {}, expanded_systems or {}] + for class_object in object_list: + for co in class_object.values(): + branch_objects = copy.deepcopy(co.epjson.get('Branch', {})) + for branch_name, branch_structure in branch_objects.items(): + # the regex check for 'main branch' is to avoid DualDuct main branches from accidentally being + # included since they have coil objects in them as well. They typical main branch is never accidentally + # caught because the coil objects are never in the 0th position. + for br in branch_rgx: + if re.match(br, branch_structure['components'][0]['component_object_type']) and not \ + re.match('.*main branch$', branch_name.lower()): + branch_dictionary.update({branch_name: branch_objects[branch_name]}) + if branch_dictionary: + return {'Branch': branch_dictionary} + else: + return None + + def _split_supply_and_demand_side_branches( + self, + plant_loop_class_object, + expanded_plant_equipment, + expanded_systems, + expanded_zones): + """ + Separate plant equipment, zone, and system branches into supply and demand sides for a given ExpandPlantLoop + object. + + :param plant_loop_class_object: ExpandPlantLoop class object + :param expanded_plant_equipment: expanded dictionary of ExpandPlantEquipment objects + :param expanded_systems: expanded dictionary of ExpandSystem objects + :param expanded_zones: expanded dictionary of ExpandZone objects + :return: tuple of demand and supply side branches for processing + """ + # Get plant equipment, zone, and system branches + plant_equipment_branch_dictionary = self._get_plant_equipment_waterloop_branches_by_loop_type( + plant_loop_class_object=plant_loop_class_object, + expanded_plant_equipment=expanded_plant_equipment + ) + zone_system_branch_dictionary = self._get_zone_system_waterloop_branches_by_loop_type( + plant_loop_class_object=plant_loop_class_object, + expanded_zones=expanded_zones, + expanded_systems=expanded_systems + ) + # get branches in the loop + demand_branches = {} + # Special handling for condenser water loop where the chiller objects are the demand side. + if 'condenserwater' in plant_loop_class_object.template_type.lower(): + pebd = copy.deepcopy(plant_equipment_branch_dictionary) + for object_name, object_structure in plant_equipment_branch_dictionary['Branch'].items(): + try: + if re.match(r'Chiller:.*', object_structure['components'][0]['component_object_type']): + demand_branches.update({object_name: pebd['Branch'].pop(object_name)}) + except (AttributeError, KeyError): + raise InvalidTemplateException( + 'Error: Branch object is incorrectly formatted: {}'.format(plant_equipment_branch_dictionary)) + supply_branches = pebd['Branch'] + else: + demand_branches = zone_system_branch_dictionary.get('Branch') if zone_system_branch_dictionary else None + supply_branches = plant_equipment_branch_dictionary.get('Branch') \ + if plant_equipment_branch_dictionary else None + return demand_branches, supply_branches + + def _create_water_loop_connectors_and_nodelist( + self, + plant_loop_class_object, + expanded_plant_equipment, + expanded_zones=None, + expanded_systems=None): + """ + Create Branchlist, Connector, ConnectorList, and supply NodeLists objects that connect the PlantLoop to supply + and demand water objects. This operation is performed outside of ExpandObjects because it requires outputs + from ExpandPlantEquipment, ExpandZone, and ExpandSystem objects. + + :param plant_loop_class_object: ExpandPlantLoop class object + :param expanded_plant_equipment: expanded dictionary of ExpandPlantEquipment objects + :param expanded_systems: expanded dictionary of ExpandSystem objects + :param expanded_zones: expanded dictionary of ExpandZone objects + :return: Updated class epjson attribute with Branchlist, Connector, and ConnectorList objects. + """ + # Get plant equipment, zone, and system branches. Split them into demand and supply sides + demand_branches, supply_branches = self._split_supply_and_demand_side_branches( + plant_loop_class_object=plant_loop_class_object, + expanded_plant_equipment=expanded_plant_equipment, + expanded_systems=expanded_systems, + expanded_zones=expanded_zones + ) + # check to make sure loops aren't empty + if demand_branches: + if plant_loop_class_object.template_type == 'HVACTemplate:Plant:ChilledWaterLoop': + try: + equipment_types = [ + (component[-1]['component_name'], component[-1]['component_object_type']) for + object_name, object_structure in supply_branches.items() + for component in object_structure.values()] + except AttributeError: + raise PyExpandObjectsYamlStructureException( + 'Error: In {} ({}) No supply branches found plant loop object' + .format(plant_loop_class_object.template_type, plant_loop_class_object.unique_name)) + + chillers = [i for i in equipment_types if re.match(r'Chiller:.*', i[1])] + towers = [i for i in equipment_types if re.match(r'CoolingTower:.*', i[1])] + # For water-cooled chillers, the tower is in the condenserloop so that needs to be checked instead of + # the chilledwaterloop + if 'CondenserWaterLoop' in [ + ep_structure.template_plant_loop_type for ep_name, ep_structure in expanded_plant_equipment.items() + if ep_structure.template_type in ['HVACTemplate:Plant:Tower', + 'HVACTemplate:Plant:Tower:ObjectReference']]: + towers = True + if chillers and not towers and 'CondenserWaterLoop' in [ + ep_structure.template_plant_loop_type + for ep_name, ep_structure in expanded_plant_equipment.items()]: + raise InvalidTemplateException( + 'Error: In {} ({})' + ' there is one or more water cooled chiller(s) but there are no towers serving this loop.' + .format(plant_loop_class_object.template_type, plant_loop_class_object.unique_name)) + if not demand_branches or not supply_branches: + msg = [] + if not demand_branches: + msg.append('There is no demand-side equipment connected to this loop.') + if not supply_branches: + msg.append('There is no supply-side equipment serving this loop.') + raise InvalidTemplateException( + 'Error: in {} ({}). {}' + .format(plant_loop_class_object.template_type, plant_loop_class_object.unique_name, + ' '.join(msg))) + # Use ExpandObjects class for helper functions + eo = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name) + eo.unique_name = getattr(plant_loop_class_object, 'template_name') + # create connector objects based on template attributes + if (plant_loop_class_object.template_type == 'HVACTemplate:Plant:ChilledWaterLoop' and getattr( + plant_loop_class_object, 'chilled_water_supply_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:CondenserWaterLoop' and getattr( + plant_loop_class_object, 'condenser_water_supply_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:HotWaterLoop' and getattr( + plant_loop_class_object, 'supply_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:MixedWaterLoop' and getattr( + plant_loop_class_object, 'supply_side_bypass_pipe', 'Yes') == 'No'): + supply_branchlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'BranchList', 'SupplyNoBypass']) + connector_supply_mixer = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Mixer', 'SupplyNoBypass']) + connector_supply_splitter = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Splitter', 'SupplyNoBypass']) + # set the 'branches' value type to list if it's none + if not connector_supply_mixer['branches']: + connector_supply_splitter['branches'] = [] + if not connector_supply_splitter['branches']: + connector_supply_mixer['branches'] = [] + else: + supply_branchlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'BranchList', 'Supply']) + connector_supply_mixer = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Mixer', 'Supply']) + connector_supply_splitter = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Splitter', 'Supply']) + if (plant_loop_class_object.template_type == 'HVACTemplate:Plant:ChilledWaterLoop' and getattr( + plant_loop_class_object, 'chilled_water_demand_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:CondenserWaterLoop' and getattr( + plant_loop_class_object, 'condenser_water_demand_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:HotWaterLoop' and getattr( + plant_loop_class_object, 'demand_side_bypass_pipe', 'Yes') == 'No') or \ + (plant_loop_class_object.template_type == 'HVACTemplate:Plant:MixedWaterLoop' and getattr( + plant_loop_class_object, 'demand_side_bypass_pipe', 'Yes') == 'No'): + demand_branchlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'BranchList', 'DemandNoBypass']) + connector_demand_splitter = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Splitter', 'DemandNoBypass']) + connector_demand_mixer = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Mixer', 'DemandNoBypass']) + # set the 'branches' value type to list if it's none + if not connector_demand_mixer['branches']: + connector_demand_splitter['branches'] = [] + if not connector_demand_splitter['branches']: + connector_demand_mixer['branches'] = [] + else: + demand_branchlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'BranchList', 'Demand']) + connector_demand_splitter = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Splitter', 'Demand']) + connector_demand_mixer = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'Connector', 'Mixer', 'Demand']) + # create supply nodelist + supply_nodelist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'NodeList', 'Supply']) + # apply branches + try: + for branch in demand_branches: + demand_branchlist['branches'].insert(1, {'branch_name': branch}) + connector_demand_splitter['branches'].append({'outlet_branch_name': branch}) + connector_demand_mixer['branches'].append({'inlet_branch_name': branch}) + for branch in supply_branches: + supply_branchlist['branches'].insert(1, {'branch_name': branch}) + connector_supply_splitter['branches'].insert(-1, {'outlet_branch_name': branch}) + connector_supply_mixer['branches'].insert(-1, {'inlet_branch_name': branch}) + supply_nodelist['nodes'].insert( + 0, + {'node_name': supply_branches[branch]['components'][-1]['component_outlet_node_name']}) + except (KeyError, AttributeError): + raise PyExpandObjectsYamlStructureException( + 'Error: In {} AutoCreated PlantLoop Connector YAML object was ' + 'improperly formatted'.format(plant_loop_class_object.template_type)) + # add connector list + demand_connectorlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'ConnectorList', 'Demand'] + ) + supply_connectorlist = eo.get_structure( + structure_hierarchy=['AutoCreated', 'PlantLoop', 'ConnectorList', 'Supply'] + ) + # format yaml objects into epJSON dictionaries, resolve, and output + connector_dictionary = eo.yaml_list_to_epjson_dictionaries( + yaml_list=[ + {'BranchList': demand_branchlist}, + {'BranchList': supply_branchlist}, + {'Connector:Splitter': connector_demand_splitter}, + {'Connector:Splitter': connector_supply_splitter}, + {'Connector:Mixer': connector_demand_mixer}, + {'Connector:Mixer': connector_supply_mixer}, + {'ConnectorList': demand_connectorlist}, + {'ConnectorList': supply_connectorlist}, + {'NodeList': supply_nodelist} + ]) + resolved_path_dictionary = eo.resolve_objects(epjson=connector_dictionary) + # save output to class epsjon + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=resolved_path_dictionary + ) + return + + def _create_plant_equipment_lists( + self, + plant_loop_class_object, + expanded_plant_equipment): + """ + Create PlantEquipmentList and CondenserEquipmentList for a given ExpandPlantLoop class object. + This operation is performed outside of ExpandObjects because it requires outputs from + ExpandPlantEquipment objects. + + :param plant_loop_class_object: ExpandPlantLoop class object + :param expanded_plant_equipment: expanded dictionary of ExpandPlantEquipment objects + :return: Updated class epjson attribute with PlantEquipmentList or CondenserEquipmentlist. + """ + # Get plant equipment, zone, and system branches. Split them into demand and supply sides + _, supply_branches = self._split_supply_and_demand_side_branches( + plant_loop_class_object=plant_loop_class_object, + expanded_plant_equipment=expanded_plant_equipment, + expanded_systems=None, + expanded_zones=None + ) + equipment = [] + # Extract priority from each equipment object referenced by the branch and use it to order the equipment list + supply_branches_with_priority = [] + for sb in supply_branches.values(): + for equipment_name, equipment_class in expanded_plant_equipment.items(): + if equipment_class.template_type == 'HVACTemplate:Plant:Boiler:ObjectReference': + equipment_name = equipment_class.boiler_name + elif equipment_class.template_type == 'HVACTemplate:Plant:Chiller:ObjectReference': + equipment_name = equipment_class.chiller_name + elif equipment_class.template_type == 'HVACTemplate:Plant:Tower:ObjectReference': + equipment_name = equipment_class.cooling_tower_name + if sb['components'][-1]['component_name'] == equipment_name: + # make tuple of (object, priority) + # if priority isn't set, use infinity to push it to the end when sorted + supply_branches_with_priority.append((sb, getattr(equipment_class, 'priority', float('inf')))) + supply_branches_ordered = [ + branch for branch, priority + in sorted(supply_branches_with_priority, key=lambda s: s[1])] + for sb in supply_branches_ordered: + equipment.append({ + 'equipment_name': sb['components'][-1]['component_name'], + 'equipment_object_type': sb['components'][-1]['component_object_type'] + }) + # use ExpandObjects functions + eo = ExpandObjects(logger_level=self.logger_level, logger_name=self.logger_name) + eo.unique_name = getattr(plant_loop_class_object, 'template_name') + if 'hotwater' in plant_loop_class_object.template_type.lower() or \ + 'chilledwater' in plant_loop_class_object.template_type.lower(): + list_dictionary = \ + eo.get_structure(structure_hierarchy=['AutoCreated', 'PlantLoop', 'PlantEquipmentList']) + list_dictionary['equipment'] = equipment + equipment_list_dictionary = [{'PlantEquipmentList': list_dictionary}, ] + elif 'mixedwater' in plant_loop_class_object.template_type.lower(): + heating_equipment = [i for i in equipment if re.match(r'Boiler:.*', i['equipment_object_type'])] + heating_list_dictionary = \ + eo.get_structure(structure_hierarchy=['AutoCreated', 'PlantLoop', 'PlantEquipmentListMixedWaterHeating']) + heating_list_dictionary['equipment'] = heating_equipment + cooling_equipment = [i for i in equipment if re.match(r'CoolingTower:.*', i['equipment_object_type'])] + cooling_list_dictionary = \ + eo.get_structure(structure_hierarchy=['AutoCreated', 'PlantLoop', 'PlantEquipmentListMixedWaterCooling']) + cooling_list_dictionary['equipment'] = cooling_equipment + equipment_list_dictionary = [ + {'PlantEquipmentList': cooling_list_dictionary}, + {'PlantEquipmentList': heating_list_dictionary}] + elif 'condenserwater' in plant_loop_class_object.template_type.lower(): + list_dictionary = \ + eo.get_structure(structure_hierarchy=['AutoCreated', 'PlantLoop', 'CondenserEquipmentList']) + list_dictionary['equipment'] = equipment + equipment_list_dictionary = [{'CondenserEquipmentList': list_dictionary}, ] + else: + raise InvalidTemplateException( + 'Error: an invalid loop type was specified when creating plant loop connections: {}' + .format(plant_loop_class_object.template_type)) + equipment_list_formatted_dictionary = eo.yaml_list_to_epjson_dictionaries( + yaml_list=equipment_list_dictionary) + resolved_path_dictionary = eo.resolve_objects(epjson=equipment_list_formatted_dictionary) + # save output to class epsjon + self.merge_epjson( + super_dictionary=self.epjson, + object_dictionary=resolved_path_dictionary) + return + + def run(self, input_epjson=None): + """ + Execute HVAC Template process workflow + + :param input_epjson: input epJSON file + :return: epJSON containing expanded objects from templates + """ + if not input_epjson: + if self.input_epjson: + input_epjson = self.input_epjson + else: + raise InvalidEpJSONException("No epJSON file loaded or provided to HVACTemplate processor") + self.epjson_process(epjson_ref=input_epjson) + self.logger.info('##### PreProcessing Data #####') + self._hvac_template_preprocess(epjson=self.input_epjson) + self.logger.info('##### Processing Thermostats #####') + self.expanded_thermostats = self._expand_templates( + templates=self.templates_thermostats, + expand_class=ExpandThermostat) + self.logger.info('##### Processing Systems #####') + self.expanded_systems = self._expand_templates( + templates=self.templates_systems, + expand_class=ExpandSystem) + self.logger.info('##### Processing Zones #####') + self.expanded_zones = self._expand_templates( + templates=self.templates_zones, + expand_class=ExpandZone, + system_class_objects=self.expanded_systems) + self.logger.info('##### Building Zone-Thermostat Connections #####') + for _, zone_class_object in self.expanded_zones.items(): + self._create_zonecontrol_thermostat(zone_class_object=zone_class_object) + self.logger.info('##### Building System-Zone Connections #####') + for _, system_class_object in self.expanded_systems.items(): + # VRF systems do not connect via air paths, and need a separate function. + if system_class_object.template_type == 'HVACTemplate:System:VRF': + self._create_system_vrf_path_connection_objects( + system_class_object=system_class_object, + expanded_zones=self.expanded_zones) + else: + self._create_system_path_connection_objects( + system_class_object=system_class_object, + expanded_zones=self.expanded_zones) + self.logger.info('##### Processing Plant Loops #####') + self.expanded_plant_loops = self._expand_templates( + templates=self.templates_plant_loops, + expand_class=ExpandPlantLoop) + self.logger.info('##### Processing Plant Equipment #####') + self.expanded_plant_equipment = self._expand_templates( + templates=self.templates_plant_equipment, + expand_class=ExpandPlantEquipment, + plant_loop_class_objects=self.expanded_plant_loops) + # Pass through expanded plant equipment objects to create additional plant loops and equipment if necessary + self._create_additional_plant_loops_and_equipment_from_equipment( + expanded_plant_equipment=self.expanded_plant_equipment, + expanded_plant_loops=self.expanded_plant_loops) + self.logger.info('##### Building Plant-Plant Equipment Connections #####') + for expanded_pl in self.expanded_plant_loops.values(): + self._create_water_loop_connectors_and_nodelist( + plant_loop_class_object=expanded_pl, + expanded_plant_equipment=self.expanded_plant_equipment, + expanded_systems=self.expanded_systems, + expanded_zones=self.expanded_zones) + self._create_plant_equipment_lists( + plant_loop_class_object=expanded_pl, + expanded_plant_equipment=self.expanded_plant_equipment) + self.logger.info('##### Creating epJSON #####') + # Merge each set of epJSON dictionaries + merge_list = [ + self.epjson, + self.base_objects, + *[j.epjson for i, j in self.expanded_thermostats.items()], + *[j.epjson for i, j in self.expanded_zones.items()], + *[j.epjson for i, j in self.expanded_systems.items()], + *[j.epjson for i, j in self.expanded_plant_loops.items()], + *[j.epjson for i, j in self.expanded_plant_equipment.items()]] + output_epjson = {} + # The unique_name_override option is enabled here due to ObjectReference templates having the base equipment + # in them as well as being present in the base epjson. A better solution should be investigated so that this + # option can be turned back off. + for merge_dictionary in merge_list: + self.merge_epjson( + super_dictionary=output_epjson, + object_dictionary=merge_dictionary, + unique_name_override=True) + # Use this for file debugging + # import json + # with open('test.epJSON', 'w') as base_file: + # json.dump(output_epjson, base_file, indent=4, sort_keys=True) + # Create output format + output_epjson = { + "epJSON": output_epjson, + "epJSON_base": self.base_objects, + "epJSON_hvac_templates": self.templates, + 'Output:PreprocessorMessage': self.stream.getvalue() + } + return output_epjson diff --git a/src/pyExpandObjects/src/logger.py b/src/pyExpandObjects/src/logger.py new file mode 100644 index 00000000000..50b76e2321c --- /dev/null +++ b/src/pyExpandObjects/src/logger.py @@ -0,0 +1,96 @@ +import logging +import os +import sys +from pathlib import Path +from logging.config import fileConfig +from io import StringIO + +loggers = {} +stream = StringIO() + +this_script_path = Path(__file__).resolve() + + +class Logger: + """ + General logger + """ + + def __init__( + self, + logging_file_name='logging.conf', + logger_name='console_only_logger', + log_file_name='base', + logger_level='WARNING', + reset_stream=False): + # prevent re-calling same logger handlers once initialized + # also prevent bad logger name from being called + global loggers + global stream + # noinspection PyBroadException + # Use a different file for testing logger + # When packaged, the logs file is under the src/ directorey, so change the directory based on mode + if getattr(sys, 'frozen', False): + logging_dir = os.path.join(os.path.dirname(this_script_path), 'logs') + else: + logging_dir = str(this_script_path.parent.parent / 'logs') + log_file_location = os.path.join( + logging_dir, + r'{}.log'.format(log_file_name) + ) + testing_log_file_location = os.path.join( + logging_dir, + r'{}.log'.format('test') + ) + for log_file in [log_file_location, testing_log_file_location]: + if not os.path.isfile(log_file): # pragma: no cover + with open(log_file, 'w'): + pass + fileConfig( + os.path.join( + logging_dir, + logging_file_name + ), + defaults={ + "base_log_filename": log_file_location, + "testing_log_filename": testing_log_file_location + } + ) + # if the code fails, fall back to root logger + try: + # if the logger exists, use it instead of creating a new one + if not loggers.get(logger_name): + # if logger_name is not in the config file, default to root + if logger_name in logging.root.manager.loggerDict.keys(): + self.logger = logging.getLogger(logger_name) + self.logger.setLevel(logger_level) + else: # pragma: no cover + self.logger = logging.getLogger('root') + self.logger.setLevel(logger_level) + self.logger.warning( + 'Bad logger name passed (%s), continuing with only console logging', + logger_name + ) + # save logger to global dictionary + loggers.update({logger_name: self.logger}) + else: + self.logger = loggers[logger_name] + except Exception as e: # pragma: no cover + self.logger = logging.getLogger('root') + self.logger.setLevel(logger_level) + loggers.update({logger_name: self.logger}) + self.logger.warning( + 'Logger failed to start %s, continuing with only console logging, error message: %s', + logger_name, str(e) + ) + finally: + if reset_stream: + stream = StringIO() + # add stream handler for output + self.stream = stream + handler = logging.StreamHandler(self.stream) + handler.setLevel(logger_level) + self.logger.addHandler(handler) + self.logger.setLevel(logger_level) + self.logger.stream_flush = self.stream.flush() + return diff --git a/src/pyExpandObjects/src/main.py b/src/pyExpandObjects/src/main.py new file mode 100644 index 00000000000..c717f0674cb --- /dev/null +++ b/src/pyExpandObjects/src/main.py @@ -0,0 +1,238 @@ +import argparse +import os +import pathlib +import re + +from hvac_template import HVACTemplate +from epjson_handler import EPJSON +import logging +import json + + +def get_property(prop): + """ + Get property value from __init__.py file in src directory + + :param prop: Property name + :return: Return value for a given property + """ + try: + result = re.search( + r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop), + open(os.path.join(os.path.dirname(__file__), '__init__.py')).read()) + output = result.group(1) + except AttributeError: + output = '{} could not be found'.format(prop) + return output + + +def build_parser(): # pragma: no cover + """ + Build argument parser. + """ + parser = argparse.ArgumentParser( + prog='pyExpandObjects', + description='Automated process that expands HVACTemplate objects into regular EnergyPlus objects.') + parser.add_argument( + '--no-schema', + '-ns', + action='store_true', + help='Skip schema validations') + parser.add_argument( + "--file", + '-f', + nargs='?', + help='Path of epJSON file to convert' + ) + parser.add_argument( + '--output_directory', + '-o', + nargs='?', + help='Specify output directory. If not provided, then input file directory is used' + ) + parser.add_argument( + '--no_backup', + '-nb', + action='store_true', + help='Prevent backup files from being written' + ) + parser.add_argument( + '--logger_level', + '-l', + nargs='?', + choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'], + default='WARNING', + help='Specify logger level.' + ) + parser.add_argument( + '--version', + '-v', + action='store_true', + help='Display version information') + parser.add_argument( + '--write_logs', + '-wl', + action='store_true', + help='Write logs to file') + return parser + + +def output_preprocessor_message_formatter(output_stream): + messages = {} + for line in output_stream.split('\n'): + counter = len(messages.keys()) + 1 + messages.update({ + 'Output:PreprocessorMessage {}'.format(str(counter)): { + 'preprocessor_name': 'pyExpandObjects' + } + }) + if line.startswith('Error:'): + messages['Output:PreprocessorMessage {}'.format(str(counter))]['error_severity'] = 'Severe' + elif line.startswith('Warning:'): + messages['Output:PreprocessorMessage {}'.format(str(counter))]['error_severity'] = 'Warning' + else: + messages['Output:PreprocessorMessage {}'.format(str(counter))]['error_severity'] = 'Information' + words = line.split() + word_groups = [words[i:i + 10] for i in range(0, len(words), 10)] + word_group_counter = 1 + for wg in word_groups: + messages['Output:PreprocessorMessage {}'.format(str(counter))][ + 'message_line_{}'.format(word_group_counter)] = ' '.join(wg) + word_group_counter += 1 + if not messages['Output:PreprocessorMessage {}'.format(str(counter))].get('message_line_1'): + messages.pop('Output:PreprocessorMessage {}'.format(str(counter))) + return messages + + +def main(args=None): + if hasattr(args, 'version') and args.version: + version = get_property('__version__') + print('pyExpandObjects Version: {}'.format(version)) + return + # set the arg defaults for testing when Namespace is used + if not hasattr(args, 'logger_level'): + args.logger_level = 'WARNING' + if not hasattr(args, 'no_backup'): + args.no_backup = False + if not hasattr(args, 'no_schema'): + args.no_schema = False + if getattr(args, 'write_logs', None): + logger_name = 'expand_objects_logger' + else: + logger_name = 'console_only_logger' + hvt = HVACTemplate( + no_schema=args.no_schema, + logger_level=args.logger_level, + logger_name=logger_name) + if isinstance(args.file, str): + file_suffix_check = args.file.endswith('.epJSON') + elif isinstance(args.file, (pathlib.PosixPath, pathlib.WindowsPath)): + file_suffix_check = args.file.suffix == '.epJSON' + else: + hvt.logger.error('Error: Invalid input file reference') + return + # get or set output directory + if hasattr(args, 'output_directory') and args.output_directory: + if not os.path.exists(args.output_directory): + hvt.logger.error('Specified output directory %s does not exist. ' + 'Files will be written to default directory %s.', + args.output_directory, + os.path.dirname(os.path.abspath(args.file))) + output_directory = os.path.dirname(os.path.abspath(args.file)) + else: + output_directory = args.output_directory + else: + output_directory = os.path.dirname(os.path.abspath(args.file)) + # start blank dictionary for processing + output = { + 'epJSON': {}, + 'Output:PreprocessorMessage': ''} + if file_suffix_check: + # write output and keep list of written files + output_file_dictionary = {} + # create file names and raise error if modified name is the same as the base name + input_file_name = os.path.basename(args.file) + expanded_file_name = input_file_name.replace('.epJSON', '_expanded.epJSON') + hvac_templates_file_name = input_file_name.replace('.epJSON', '_hvac_templates.epJSON') \ + if not args.no_backup else None + base_file_name = input_file_name.replace('.epJSON', '_base.epJSON') \ + if not args.no_backup else None + # check that file names are not the same as the original + if input_file_name in [expanded_file_name, hvac_templates_file_name, base_file_name]: + hvt.logger.error('Error: file could not be renamed') # pragma: no cover - unlikely to be hit + return + if os.path.exists(args.file): + hvt.logger.info('Processing %s', args.file) + # QA skipped since any unanticipated condition should still get caught and returned to user. + try: + output.update(hvt.run(input_epjson=args.file)) + output_file_dictionary['expanded'] = os.path.join(output_directory, str(expanded_file_name)) + except: # noqa: E722 + output.update({'Output:PreprocessorMessage': hvt.stream.getvalue()}) + if output.get('epJSON'): + # verify expanded epJSON is valid if schema validation is turned on. + if not args.no_schema: + ej = EPJSON( + no_schema=False, + logger_level=args.logger_level, + logger_name=logger_name) + try: + ej.epjson_process(epjson_ref=output['epJSON']) + except: # noqa: E722 + output['Output:PreprocessorMessage'] = '\n'.join([ + output['Output:PreprocessorMessage'], + 'Error: Output epJSON schema validation failed. See output files for details.\n', + ej.stream.getvalue()]) + if not args.no_backup and output.get('epJSON_hvac_templates'): + with open(os.path.join(output_directory, hvac_templates_file_name), 'w') as hvac_template_file: + json.dump(output['epJSON_hvac_templates'], hvac_template_file, indent=4, sort_keys=True) + output_file_dictionary['hvac_templates'] = \ + os.path.join(output_directory, str(hvac_templates_file_name)) + if not args.no_backup and output.get('epJSON_base'): + with open(os.path.join(output_directory, base_file_name), 'w') as base_file: + json.dump(output['epJSON_base'], base_file, indent=4, sort_keys=True) + output_file_dictionary['base'] = os.path.join(output_directory, str(base_file_name)) + if output_file_dictionary and output['epJSON']: + output_file_dictionary['expanded'] = os.path.join(output_directory, str(expanded_file_name)) + hvt.logger.info('Output files written %s', output_file_dictionary) + else: + output['Output:PreprocessorMessage'] = '\n'.join([ + output['Output:PreprocessorMessage'], + 'Error: No expanded epJSON object created, check Output:Preprocessor object at {} for details' + .format(os.path.join(output_directory, str(expanded_file_name)))]) + hvt.logger.error('Error: No expanded epJSON object created, check ' + 'Output:Preprocessor object at %s for details', + os.path.join(output_directory, str(expanded_file_name))) + output['output_files'] = output_file_dictionary + else: + output['Output:PreprocessorMessage'] = r'\n'.join([ + output['Output:PreprocessorMessage'], + 'Error: File does not exist: {}. File not processed'.format(args.file)]) + hvt.logger.error('Error: File does not exist: %s. File not processed', args.file) + output['epJSON']['Output:PreprocessorMessage'] = \ + output_preprocessor_message_formatter(output['Output:PreprocessorMessage']) + # Write out epJSON file. + with open(os.path.join(output_directory, expanded_file_name), 'w') as expanded_file: + json.dump(output['epJSON'], expanded_file, indent=4, sort_keys=True) + # write out successful file creation to base preprocessor object + if output_file_dictionary and output['epJSON']: + output['Output:PreprocessorMessage'] = '\n'.join([ + output['Output:PreprocessorMessage'], + 'Output files written: {}'.format(output_file_dictionary)]) + else: + output['Output:PreprocessorMessage'] = r'\n'.join([ + output['Output:PreprocessorMessage'], + 'Error: Bad file extension for {}. File not processed'.format(args.file)]) + hvt.logger.error('Error: Bad file extension for %s. File not processed', args.file) + return output + + +if __name__ == "__main__": + epJSON_parser = build_parser() + epJSON_args, unknown_args = epJSON_parser.parse_known_args() + # If unknown arguments are passed, and no file specified, then put the arguments + # in the file namespace. + if not epJSON_args.file and unknown_args: + epJSON_args.file = unknown_args[0] + main(epJSON_args) + logging.shutdown() diff --git a/src/pyExpandObjects/src/resources/Energy+.schema.epJSON b/src/pyExpandObjects/src/resources/Energy+.schema.epJSON new file mode 100644 index 00000000000..c209ecb0f1a --- /dev/null +++ b/src/pyExpandObjects/src/resources/Energy+.schema.epJSON @@ -0,0 +1,201253 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "properties": { + "Version": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "version_identifier": { + "type": "string", + "default": "9.6" + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "version_identifier": { + "field_name": "Version Identifier", + "field_type": "a" + } + }, + "fields": [ + "version_identifier" + ], + "alphas": { + "fields": [ + "version_identifier" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies the EnergyPlus version of the IDF file.", + "format": "singleLine" + }, + "SimulationControl": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "do_zone_sizing_calculation": { + "type": "string", + "note": "If Yes, Zone sizing is accomplished from corresponding Sizing:Zone objects and autosize fields.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "do_system_sizing_calculation": { + "type": "string", + "note": "If Yes, System sizing is accomplished from corresponding Sizing:System objects and autosize fields. If Yes, Zone sizing (previous field) must also be Yes.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "do_plant_sizing_calculation": { + "type": "string", + "note": "If Yes, Plant sizing is accomplished from corresponding Sizing:Plant objects and autosize fields.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "run_simulation_for_sizing_periods": { + "type": "string", + "note": "If Yes, SizingPeriod:* objects are executed and results from those may be displayed..", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + }, + "run_simulation_for_weather_file_run_periods": { + "type": "string", + "note": "If Yes, RunPeriod:* objects are executed and results from those may be displayed..", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + }, + "do_hvac_sizing_simulation_for_sizing_periods": { + "type": "string", + "note": "If Yes, SizingPeriod:* objects are exectuted additional times for advanced sizing. Currently limited to use with coincident plant sizing, see Sizing:Plant object", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "maximum_number_of_hvac_sizing_simulation_passes": { + "type": "number", + "note": "the entire set of SizingPeriod:* objects may be repeated to fine tune size results this input sets a limit on the number of passes that the sizing algorithms can repeate the set", + "minimum": 1.0, + "default": 1.0 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "do_zone_sizing_calculation": { + "field_name": "Do Zone Sizing Calculation", + "field_type": "a" + }, + "do_system_sizing_calculation": { + "field_name": "Do System Sizing Calculation", + "field_type": "a" + }, + "do_plant_sizing_calculation": { + "field_name": "Do Plant Sizing Calculation", + "field_type": "a" + }, + "run_simulation_for_sizing_periods": { + "field_name": "Run Simulation for Sizing Periods", + "field_type": "a" + }, + "run_simulation_for_weather_file_run_periods": { + "field_name": "Run Simulation for Weather File Run Periods", + "field_type": "a" + }, + "do_hvac_sizing_simulation_for_sizing_periods": { + "field_name": "Do HVAC Sizing Simulation for Sizing Periods", + "field_type": "a" + }, + "maximum_number_of_hvac_sizing_simulation_passes": { + "field_name": "Maximum Number of HVAC Sizing Simulation Passes", + "field_type": "n" + } + }, + "fields": [ + "do_zone_sizing_calculation", + "do_system_sizing_calculation", + "do_plant_sizing_calculation", + "run_simulation_for_sizing_periods", + "run_simulation_for_weather_file_run_periods", + "do_hvac_sizing_simulation_for_sizing_periods", + "maximum_number_of_hvac_sizing_simulation_passes" + ], + "alphas": { + "fields": [ + "do_zone_sizing_calculation", + "do_system_sizing_calculation", + "do_plant_sizing_calculation", + "run_simulation_for_sizing_periods", + "run_simulation_for_weather_file_run_periods", + "do_hvac_sizing_simulation_for_sizing_periods" + ] + }, + "numerics": { + "fields": [ + "maximum_number_of_hvac_sizing_simulation_passes" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Note that the following 3 fields are related to the Sizing:Zone, Sizing:System, and Sizing:Plant objects. Having these fields set to Yes but no corresponding Sizing object will not cause the sizing to be done. However, having any of these fields set to No, the corresponding Sizing object is ignored. Note also, if you want to do system sizing, you must also do zone sizing in the same run or an error will result.", + "min_fields": 7.0 + }, + "PerformancePrecisionTradeoffs": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "use_coil_direct_solutions": { + "type": "string", + "note": "If Yes, an analytical or empirical solution will be used to replace iterations in the coil performance calculations.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "zone_radiant_exchange_algorithm": { + "type": "string", + "note": "Determines which algorithm will be used to solve long wave radiant exchange among surfaces within a zone.", + "enum": [ + "", + "CarrollMRT", + "ScriptF" + ], + "default": "ScriptF" + }, + "override_mode": { + "type": "string", + "note": "The increasing mode number roughly correspond with increased speed. A description of each mode are shown in the documentation. When Advanced is selected the N1 field value is used.", + "enum": [ + "", + "Advanced", + "Mode01", + "Mode02", + "Mode03", + "Mode04", + "Mode05", + "Mode06", + "Mode07", + "Mode08", + "Normal" + ], + "default": "Normal" + }, + "maxzonetempdiff": { + "type": "number", + "note": "Maximum zone temperature change before HVAC timestep is shortened. Only used when Override Mode is set to Advanced", + "minimum": 0.1, + "maximum": 3.0, + "default": 0.3 + }, + "maxalloweddeltemp": { + "type": "number", + "note": "Maximum surface temperature change before HVAC timestep is shortened. Only used when Override Mode is set to Advanced", + "minimum": 0.002, + "maximum": 0.1, + "default": 0.002 + }, + "use_representative_surfaces_for_calculations": { + "type": "string", + "note": "Automatically group surfaces with similar characteristics and perform relevant calculations only once for each group.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "use_coil_direct_solutions": { + "field_name": "Use Coil Direct Solutions", + "field_type": "a" + }, + "zone_radiant_exchange_algorithm": { + "field_name": "Zone Radiant Exchange Algorithm", + "field_type": "a" + }, + "override_mode": { + "field_name": "Override Mode", + "field_type": "a" + }, + "maxzonetempdiff": { + "field_name": "MaxZoneTempDiff", + "field_type": "n" + }, + "maxalloweddeltemp": { + "field_name": "MaxAllowedDelTemp", + "field_type": "n" + }, + "use_representative_surfaces_for_calculations": { + "field_name": "Use Representative Surfaces for Calculations", + "field_type": "a" + } + }, + "fields": [ + "use_coil_direct_solutions", + "zone_radiant_exchange_algorithm", + "override_mode", + "maxzonetempdiff", + "maxalloweddeltemp", + "use_representative_surfaces_for_calculations" + ], + "alphas": { + "fields": [ + "use_coil_direct_solutions", + "zone_radiant_exchange_algorithm", + "override_mode", + "use_representative_surfaces_for_calculations" + ] + }, + "numerics": { + "fields": [ + "maxzonetempdiff", + "maxalloweddeltemp" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "This object enables users to choose certain options that speed up EnergyPlus simulation, but may lead to small decreases in accuracy of results." + }, + "Building": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "north_axis": { + "type": "number", + "note": "degrees from true North", + "units": "deg", + "default": 0.0 + }, + "terrain": { + "type": "string", + "note": "Country=FlatOpenCountry | Suburbs=CountryTownsSuburbs | City=CityCenter | Ocean=body of water (5km) | Urban=Urban-Industrial-Forest", + "enum": [ + "", + "City", + "Country", + "Ocean", + "Suburbs", + "Urban" + ], + "default": "Suburbs" + }, + "loads_convergence_tolerance_value": { + "type": "number", + "note": "Loads Convergence Tolerance Value is a change in load from one warmup day to the next", + "minimum": 0.0, + "exclusiveMinimum": true, + "maximum": 0.5, + "default": 0.04, + "units": "W" + }, + "temperature_convergence_tolerance_value": { + "type": "number", + "units": "deltaC", + "minimum": 0.0, + "exclusiveMinimum": true, + "maximum": 0.5, + "default": 0.4 + }, + "solar_distribution": { + "type": "string", + "note": "MinimalShadowing | FullExterior | FullInteriorAndExterior | FullExteriorWithReflections | FullInteriorAndExteriorWithReflections", + "enum": [ + "", + "FullExterior", + "FullExteriorWithReflections", + "FullInteriorAndExterior", + "FullInteriorAndExteriorWithReflections", + "MinimalShadowing" + ], + "default": "FullExterior" + }, + "maximum_number_of_warmup_days": { + "type": "number", + "note": "EnergyPlus will only use as many warmup days as needed to reach convergence tolerance. This field's value should NOT be set less than 25.", + "minimum": 0.0, + "exclusiveMinimum": true, + "default": 25.0 + }, + "minimum_number_of_warmup_days": { + "type": "number", + "note": "The minimum number of warmup days that produce enough temperature and flux history to start EnergyPlus simulation for all reference buildings was suggested to be 6. However this can lead to excessive run times as warmup days can be repeated needlessly. For faster execution rely on the convergence criteria to detect when warmup is complete. When this field is greater than the maximum warmup days defined previous field the maximum number of warmup days will be reset to the minimum value entered here. Warmup days will be set to be the value you entered. The default is 1.", + "minimum": 0.0, + "exclusiveMinimum": true, + "default": 1.0 + } + } + } + }, + "group": "Simulation Parameters", + "name": { + "type": "string", + "retaincase": true, + "default": "NONE" + }, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "north_axis": { + "field_name": "North Axis", + "field_type": "n" + }, + "terrain": { + "field_name": "Terrain", + "field_type": "a" + }, + "loads_convergence_tolerance_value": { + "field_name": "Loads Convergence Tolerance Value", + "field_type": "n" + }, + "temperature_convergence_tolerance_value": { + "field_name": "Temperature Convergence Tolerance Value", + "field_type": "n" + }, + "solar_distribution": { + "field_name": "Solar Distribution", + "field_type": "a" + }, + "maximum_number_of_warmup_days": { + "field_name": "Maximum Number of Warmup Days", + "field_type": "n" + }, + "minimum_number_of_warmup_days": { + "field_name": "Minimum Number of Warmup Days", + "field_type": "n" + } + }, + "fields": [ + "name", + "north_axis", + "terrain", + "loads_convergence_tolerance_value", + "temperature_convergence_tolerance_value", + "solar_distribution", + "maximum_number_of_warmup_days", + "minimum_number_of_warmup_days" + ], + "alphas": { + "fields": [ + "name", + "terrain", + "solar_distribution" + ] + }, + "numerics": { + "fields": [ + "north_axis", + "loads_convergence_tolerance_value", + "temperature_convergence_tolerance_value", + "maximum_number_of_warmup_days", + "minimum_number_of_warmup_days" + ] + } + }, + "type": "object", + "minProperties": 1, + "maxProperties": 1, + "memo": "Describes parameters that are used during the simulation of the building. There are necessary correlations between the entries for this object and some entries in the Site:WeatherStation and Site:HeightVariation objects, specifically the Terrain field.", + "min_fields": 8.0 + }, + "ShadowCalculation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "shading_calculation_method": { + "type": "string", + "note": "Select between CPU-based polygon clipping method, the GPU-based pixel counting method, or importing from external shading data. If PixelCounting is selected and GPU hardware (or GPU emulation) is not available, a warning will be displayed and EnergyPlus will revert to PolygonClipping. If Scheduled is chosen, the External Shading Fraction Schedule Name is required in SurfaceProperty:LocalEnvironment. If Imported is chosen, the Schedule:File:Shading object is required.", + "enum": [ + "", + "Imported", + "PixelCounting", + "PolygonClipping", + "Scheduled" + ], + "default": "PolygonClipping" + }, + "shading_calculation_update_frequency_method": { + "type": "string", + "note": "choose calculation frequency method. note that Timestep is only needed for certain cases and can increase execution time significantly.", + "enum": [ + "", + "Periodic", + "Timestep" + ], + "default": "Periodic" + }, + "shading_calculation_update_frequency": { + "type": "number", + "minimum": 1.0, + "default": 20.0, + "note": "enter number of days this field is only used if the previous field is set to Periodic warning issued if >31" + }, + "maximum_figures_in_shadow_overlap_calculations": { + "type": "number", + "note": "Number of allowable figures in shadow overlap in PolygonClipping calculations", + "minimum": 200.0, + "default": 15000.0 + }, + "polygon_clipping_algorithm": { + "type": "string", + "note": "Advanced Feature. Internal default is SutherlandHodgman Refer to InputOutput Reference and Engineering Reference for more information", + "enum": [ + "", + "ConvexWeilerAtherton", + "SlaterBarskyandSutherlandHodgman", + "SutherlandHodgman" + ], + "default": "SutherlandHodgman" + }, + "pixel_counting_resolution": { + "type": "number", + "note": "Number of pixels in both dimensions of the surface rendering", + "default": 512.0 + }, + "sky_diffuse_modeling_algorithm": { + "type": "string", + "note": "Advanced Feature. Internal default is SimpleSkyDiffuseModeling If you have shading elements that change transmittance over the year, you may wish to choose the detailed method. Refer to InputOutput Reference and Engineering Reference for more information", + "enum": [ + "", + "DetailedSkyDiffuseModeling", + "SimpleSkyDiffuseModeling" + ], + "default": "SimpleSkyDiffuseModeling" + }, + "output_external_shading_calculation_results": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No", + "note": "If Yes is chosen, the calculated external shading fraction results will be saved to an external CSV file with surface names as the column headers." + }, + "disable_self_shading_within_shading_zone_groups": { + "type": "string", + "note": "If Yes, self-shading will be disabled from all exterior surfaces in a given Shading Zone Group to surfaces within the same Shading Zone Group. If both Disable Self-Shading Within Shading Zone Groups and Disable Self-Shading From Shading Zone Groups to Other Zones = Yes, then all self-shading from exterior surfaces will be disabled. If only one of these fields = Yes, then at least one Shading Zone Group must be specified, or this field will be ignored. Shading from Shading:* surfaces, overhangs, fins, and reveals will not be disabled.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "disable_self_shading_from_shading_zone_groups_to_other_zones": { + "type": "string", + "note": "If Yes, self-shading will be disabled from all exterior surfaces in a given Shading Zone Group to all other zones in the model. If both Disable Self-Shading Within Shading Zone Groups and Disable Self-Shading From Shading Zone Groups to Other Zones = Yes, then all self-shading from exterior surfaces will be disabled. If only one of these fields = Yes, then at least one Shading Zone Group must be specified, or this field will be ignored. Shading from Shading:* surfaces, overhangs, fins, and reveals will not be disabled.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "shading_zone_groups": { + "type": "array", + "items": { + "properties": { + "shading_zone_group_zonelist_name": { + "type": "string", + "note": "Specifies a group of zones which are controlled by the Disable Self-Shading fields.", + "data_type": "object_list", + "object_list": [ + "ZoneListNames" + ] + } + }, + "type": "object" + } + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "shading_calculation_method": { + "field_name": "Shading Calculation Method", + "field_type": "a" + }, + "shading_calculation_update_frequency_method": { + "field_name": "Shading Calculation Update Frequency Method", + "field_type": "a" + }, + "shading_calculation_update_frequency": { + "field_name": "Shading Calculation Update Frequency", + "field_type": "n" + }, + "maximum_figures_in_shadow_overlap_calculations": { + "field_name": "Maximum Figures in Shadow Overlap Calculations", + "field_type": "n" + }, + "polygon_clipping_algorithm": { + "field_name": "Polygon Clipping Algorithm", + "field_type": "a" + }, + "pixel_counting_resolution": { + "field_name": "Pixel Counting Resolution", + "field_type": "n" + }, + "sky_diffuse_modeling_algorithm": { + "field_name": "Sky Diffuse Modeling Algorithm", + "field_type": "a" + }, + "output_external_shading_calculation_results": { + "field_name": "Output External Shading Calculation Results", + "field_type": "a" + }, + "disable_self_shading_within_shading_zone_groups": { + "field_name": "Disable Self-Shading Within Shading Zone Groups", + "field_type": "a" + }, + "disable_self_shading_from_shading_zone_groups_to_other_zones": { + "field_name": "Disable Self-Shading From Shading Zone Groups to Other Zones", + "field_type": "a" + }, + "shading_zone_group_zonelist_name": { + "field_name": "Shading Zone Group ZoneList Name", + "field_type": "a" + } + }, + "fields": [ + "shading_calculation_method", + "shading_calculation_update_frequency_method", + "shading_calculation_update_frequency", + "maximum_figures_in_shadow_overlap_calculations", + "polygon_clipping_algorithm", + "pixel_counting_resolution", + "sky_diffuse_modeling_algorithm", + "output_external_shading_calculation_results", + "disable_self_shading_within_shading_zone_groups", + "disable_self_shading_from_shading_zone_groups_to_other_zones" + ], + "alphas": { + "fields": [ + "shading_calculation_method", + "shading_calculation_update_frequency_method", + "polygon_clipping_algorithm", + "sky_diffuse_modeling_algorithm", + "output_external_shading_calculation_results", + "disable_self_shading_within_shading_zone_groups", + "disable_self_shading_from_shading_zone_groups_to_other_zones" + ], + "extensions": [ + "shading_zone_group_zonelist_name" + ] + }, + "numerics": { + "fields": [ + "shading_calculation_update_frequency", + "maximum_figures_in_shadow_overlap_calculations", + "pixel_counting_resolution" + ] + }, + "extensibles": [ + "shading_zone_group_zonelist_name" + ], + "extension": "shading_zone_groups" + }, + "type": "object", + "maxProperties": 1, + "memo": "This object is used to control details of the solar, shading, and daylighting models", + "extensible_size": 1.0 + }, + "SurfaceConvectionAlgorithm:Inside": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "enum": [ + "", + "ASTMC1340", + "AdaptiveConvectionAlgorithm", + "CeilingDiffuser", + "Simple", + "TARP" + ], + "default": "TARP", + "note": "Simple = constant value natural convection (ASHRAE) TARP = variable natural convection based on temperature difference (ASHRAE, Walton) CeilingDiffuser = ACH-based forced and mixed convection correlations for ceiling diffuser configuration with simple natural convection limit AdaptiveConvectionAlgorithm = dynamic selection of convection models based on conditions ASTMC1340 = mixed convection correlations based on heat flow direction, surface tilt angle, surface characteristic length, and air speed past the surface." + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "algorithm": { + "field_name": "Algorithm", + "field_type": "a" + } + }, + "fields": [ + "algorithm" + ], + "alphas": { + "fields": [ + "algorithm" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Default indoor surface heat transfer convection algorithm to be used for all zones", + "format": "singleLine" + }, + "SurfaceConvectionAlgorithm:Outside": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "enum": [ + "", + "AdaptiveConvectionAlgorithm", + "DOE-2", + "MoWiTT", + "SimpleCombined", + "TARP" + ], + "default": "DOE-2", + "note": "SimpleCombined = Combined radiation and convection coefficient using simple ASHRAE model TARP = correlation from models developed by ASHRAE, Walton, and Sparrow et. al. MoWiTT = correlation from measurements by Klems and Yazdanian for smooth surfaces DOE-2 = correlation from measurements by Klems and Yazdanian for rough surfaces AdaptiveConvectionAlgorithm = dynamic selection of correlations based on conditions" + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "algorithm": { + "field_name": "Algorithm", + "field_type": "a" + } + }, + "fields": [ + "algorithm" + ], + "alphas": { + "fields": [ + "algorithm" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Default outside surface heat transfer convection algorithm to be used for all zones", + "format": "singleLine" + }, + "HeatBalanceAlgorithm": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "enum": [ + "", + "CombinedHeatAndMoistureFiniteElement", + "ConductionFiniteDifference", + "ConductionTransferFunction", + "MoisturePenetrationDepthConductionTransferFunction" + ], + "default": "ConductionTransferFunction" + }, + "surface_temperature_upper_limit": { + "type": "number", + "minimum": 200.0, + "default": 200.0, + "units": "C" + }, + "minimum_surface_convection_heat_transfer_coefficient_value": { + "type": "number", + "units": "W/m2-K", + "default": 0.1, + "minimum": 0.0, + "exclusiveMinimum": true + }, + "maximum_surface_convection_heat_transfer_coefficient_value": { + "type": "number", + "units": "W/m2-K", + "default": 1000.0, + "minimum": 1.0 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "algorithm": { + "field_name": "Algorithm", + "field_type": "a" + }, + "surface_temperature_upper_limit": { + "field_name": "Surface Temperature Upper Limit", + "field_type": "n" + }, + "minimum_surface_convection_heat_transfer_coefficient_value": { + "field_name": "Minimum Surface Convection Heat Transfer Coefficient Value", + "field_type": "n" + }, + "maximum_surface_convection_heat_transfer_coefficient_value": { + "field_name": "Maximum Surface Convection Heat Transfer Coefficient Value", + "field_type": "n" + } + }, + "fields": [ + "algorithm", + "surface_temperature_upper_limit", + "minimum_surface_convection_heat_transfer_coefficient_value", + "maximum_surface_convection_heat_transfer_coefficient_value" + ], + "alphas": { + "fields": [ + "algorithm" + ] + }, + "numerics": { + "fields": [ + "surface_temperature_upper_limit", + "minimum_surface_convection_heat_transfer_coefficient_value", + "maximum_surface_convection_heat_transfer_coefficient_value" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Determines which Heat Balance Algorithm will be used ie. CTF (Conduction Transfer Functions), EMPD (Effective Moisture Penetration Depth with Conduction Transfer Functions). Advanced/Research Usage: CondFD (Conduction Finite Difference) Advanced/Research Usage: ConductionFiniteDifferenceSimplified Advanced/Research Usage: HAMT (Combined Heat And Moisture Finite Element)", + "format": "singleLine" + }, + "HeatBalanceSettings:ConductionFiniteDifference": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "difference_scheme": { + "type": "string", + "enum": [ + "", + "CrankNicholsonSecondOrder", + "FullyImplicitFirstOrder" + ], + "default": "FullyImplicitFirstOrder" + }, + "space_discretization_constant": { + "type": "number", + "note": "increase or decrease number of nodes", + "default": 3.0 + }, + "relaxation_factor": { + "type": "number", + "default": 1.0, + "minimum": 0.01, + "maximum": 1.0 + }, + "inside_face_surface_temperature_convergence_criteria": { + "type": "number", + "default": 0.002, + "minimum": 1e-07, + "maximum": 0.01 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "difference_scheme": { + "field_name": "Difference Scheme", + "field_type": "a" + }, + "space_discretization_constant": { + "field_name": "Space Discretization Constant", + "field_type": "n" + }, + "relaxation_factor": { + "field_name": "Relaxation Factor", + "field_type": "n" + }, + "inside_face_surface_temperature_convergence_criteria": { + "field_name": "Inside Face Surface Temperature Convergence Criteria", + "field_type": "n" + } + }, + "fields": [ + "difference_scheme", + "space_discretization_constant", + "relaxation_factor", + "inside_face_surface_temperature_convergence_criteria" + ], + "alphas": { + "fields": [ + "difference_scheme" + ] + }, + "numerics": { + "fields": [ + "space_discretization_constant", + "relaxation_factor", + "inside_face_surface_temperature_convergence_criteria" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Determines settings for the Conduction Finite Difference algorithm for surface heat transfer modeling." + }, + "ZoneAirHeatBalanceAlgorithm": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "enum": [ + "", + "AnalyticalSolution", + "EulerMethod", + "ThirdOrderBackwardDifference" + ], + "default": "ThirdOrderBackwardDifference" + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "algorithm": { + "field_name": "Algorithm", + "field_type": "a" + } + }, + "fields": [ + "algorithm" + ], + "alphas": { + "fields": [ + "algorithm" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Determines which algorithm will be used to solve the zone air heat balance.", + "min_fields": 1.0, + "format": "singleLine" + }, + "ZoneAirContaminantBalance": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "carbon_dioxide_concentration": { + "type": "string", + "note": "If Yes, CO2 simulation will be performed.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "outdoor_carbon_dioxide_schedule_name": { + "type": "string", + "note": "Schedule values should be in parts per million (ppm)", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + }, + "generic_contaminant_concentration": { + "type": "string", + "note": "If Yes, generic contaminant simulation will be performed.", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "outdoor_generic_contaminant_schedule_name": { + "type": "string", + "note": "Schedule values should be generic contaminant concentration in parts per million (ppm)", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "carbon_dioxide_concentration": { + "field_name": "Carbon Dioxide Concentration", + "field_type": "a" + }, + "outdoor_carbon_dioxide_schedule_name": { + "field_name": "Outdoor Carbon Dioxide Schedule Name", + "field_type": "a" + }, + "generic_contaminant_concentration": { + "field_name": "Generic Contaminant Concentration", + "field_type": "a" + }, + "outdoor_generic_contaminant_schedule_name": { + "field_name": "Outdoor Generic Contaminant Schedule Name", + "field_type": "a" + } + }, + "fields": [ + "carbon_dioxide_concentration", + "outdoor_carbon_dioxide_schedule_name", + "generic_contaminant_concentration", + "outdoor_generic_contaminant_schedule_name" + ], + "alphas": { + "fields": [ + "carbon_dioxide_concentration", + "outdoor_carbon_dioxide_schedule_name", + "generic_contaminant_concentration", + "outdoor_generic_contaminant_schedule_name" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Determines which contaminant concentration will be simulates.", + "format": "singleLine" + }, + "ZoneAirMassFlowConservation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "adjust_zone_mixing_and_return_for_air_mass_flow_balance": { + "type": "string", + "note": "If \"AdjustMixingOnly\", zone mixing object flow rates are adjusted to balance the zone air mass flow and zone infiltration air flow may be increased or decreased if required in order to balance the zone air mass flow. If \"AdjustReturnOnly\", zone total return flow rate is adjusted to balance the zone air mass flow and zone infiltration air flow may be increased or decreased if required in order to balance the zone air mass flow. If \"AdjustMixingThenReturn\", first the zone mixing objects flow rates are adjusted to balance the zone air flow, second zone total return flow rate is adjusted and zone infiltration air flow may be increased or decreased if required in order to balance the zone air mass flow. If \"AdjustReturnThenMixing\", first zone total return flow rate is adjusted to balance the zone air flow, second the zone mixing object flow rates are adjusted and infiltration air flow may be increased or decreased if required in order to balance the zone air mass flow.", + "enum": [ + "", + "AdjustMixingOnly", + "AdjustMixingThenReturn", + "AdjustReturnOnly", + "AdjustReturnThenMixing", + "None" + ], + "default": "None" + }, + "infiltration_balancing_method": { + "type": "string", + "note": "This input field allows user to choose how zone infiltration flow is treated during the zone air mass flow balance calculation. AddInfiltrationFlow may add infiltration to the base flow specified in the infiltration object to balance the zone air mass flow. The additional infiltration air mass flow is not self-balanced. The base flow is assumed to be self-balanced. AdjustInfiltrationFlow may adjust the base flow calculated using the base flow specified in the infiltration object to balance the zone air mass flow. If it If no adjustment is required, then the base infiltration is assumed to be self-balanced. None will make no changes to the base infiltration flow.", + "enum": [ + "", + "AddInfiltrationFlow", + "AdjustInfiltrationFlow", + "None" + ], + "default": "AddInfiltrationFlow" + }, + "infiltration_balancing_zones": { + "type": "string", + "note": "This input field allows user to choose which zones are included in infiltration balancing. MixingSourceZonesOnly allows infiltration balancing only in zones which as source zones for mixing which also have an infiltration object defined. AllZones allows infiltration balancing in any zone which has an infiltration object defined.", + "enum": [ + "", + "AllZones", + "MixingSourceZonesOnly" + ], + "default": "MixingSourceZonesOnly" + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "adjust_zone_mixing_and_return_for_air_mass_flow_balance": { + "field_name": "Adjust Zone Mixing and Return For Air Mass Flow Balance", + "field_type": "a" + }, + "infiltration_balancing_method": { + "field_name": "Infiltration Balancing Method", + "field_type": "a" + }, + "infiltration_balancing_zones": { + "field_name": "Infiltration Balancing Zones", + "field_type": "a" + } + }, + "fields": [ + "adjust_zone_mixing_and_return_for_air_mass_flow_balance", + "infiltration_balancing_method", + "infiltration_balancing_zones" + ], + "alphas": { + "fields": [ + "adjust_zone_mixing_and_return_for_air_mass_flow_balance", + "infiltration_balancing_method", + "infiltration_balancing_zones" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Enforces the zone air mass flow balance by either adjusting zone mixing object flow only, adjusting zone total return flow only, zone mixing and the zone total return flows, or adjusting the zone total return and zone mixing object flows. Zone infiltration flow air flow is increased or decreased depending user selection in the infiltration treatment method. If either of zone mixing or zone return flow adjusting methods or infiltration is active, then the zone air mass flow balance calculation will attempt to enforce conservation of mass for each zone. If flow balancing method is \"None\" and infiltration is \"None\", then the zone air mass flow calculation defaults to assume self-balanced simple flow mixing and infiltration objects.", + "min_fields": 3.0 + }, + "ZoneCapacitanceMultiplier:ResearchSpecial": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "zone_or_zonelist_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ZoneAndZoneListNames" + ], + "note": "If this field is left blank, the multipliers are applied to all the zones not specified" + }, + "temperature_capacity_multiplier": { + "type": "number", + "default": 1.0, + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Used to alter the capacitance of zone air with respect to heat or temperature" + }, + "humidity_capacity_multiplier": { + "type": "number", + "default": 1.0, + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Used to alter the capacitance of zone air with respect to moisture or humidity ratio" + }, + "carbon_dioxide_capacity_multiplier": { + "type": "number", + "default": 1.0, + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Used to alter the capacitance of zone air with respect to zone air carbon dioxide concentration" + }, + "generic_contaminant_capacity_multiplier": { + "type": "number", + "default": 1.0, + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Used to alter the capacitance of zone air with respect to zone air generic contaminant concentration" + } + } + } + }, + "group": "Simulation Parameters", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "zone_or_zonelist_name": { + "field_name": "Zone or ZoneList Name", + "field_type": "a" + }, + "temperature_capacity_multiplier": { + "field_name": "Temperature Capacity Multiplier", + "field_type": "n" + }, + "humidity_capacity_multiplier": { + "field_name": "Humidity Capacity Multiplier", + "field_type": "n" + }, + "carbon_dioxide_capacity_multiplier": { + "field_name": "Carbon Dioxide Capacity Multiplier", + "field_type": "n" + }, + "generic_contaminant_capacity_multiplier": { + "field_name": "Generic Contaminant Capacity Multiplier", + "field_type": "n" + } + }, + "fields": [ + "name", + "zone_or_zonelist_name", + "temperature_capacity_multiplier", + "humidity_capacity_multiplier", + "carbon_dioxide_capacity_multiplier", + "generic_contaminant_capacity_multiplier" + ], + "alphas": { + "fields": [ + "name", + "zone_or_zonelist_name" + ] + }, + "numerics": { + "fields": [ + "temperature_capacity_multiplier", + "humidity_capacity_multiplier", + "carbon_dioxide_capacity_multiplier", + "generic_contaminant_capacity_multiplier" + ] + } + }, + "type": "object", + "memo": "Multiplier altering the relative capacitance of the air compared to an empty zone", + "min_fields": 6.0, + "format": "singleLine" + }, + "Timestep": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "number_of_timesteps_per_hour": { + "type": "number", + "note": "Number in hour: normal validity 4 to 60: 6 suggested Must be evenly divisible into 60 Allowable values include 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, and 60 Normal 6 is minimum as lower values may cause inaccuracies A minimum value of 20 is suggested for both ConductionFiniteDifference and CombinedHeatAndMoistureFiniteElement surface heat balance algorithms A minimum of 12 is suggested for simulations involving a Vegetated Roof (Material:RoofVegetation).", + "default": 6.0, + "minimum": 1.0, + "maximum": 60.0 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "number_of_timesteps_per_hour": { + "field_name": "Number of Timesteps per Hour", + "field_type": "n" + } + }, + "fields": [ + "number_of_timesteps_per_hour" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "number_of_timesteps_per_hour" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies the \"basic\" timestep for the simulation. The value entered here is also known as the Zone Timestep. This is used in the Zone Heat Balance Model calculation as the driving timestep for heat transfer and load calculations.", + "format": "singleLine" + }, + "ConvergenceLimits": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "minimum_system_timestep": { + "type": "number", + "units": "minutes", + "note": "0 sets the minimum to the zone timestep (ref: Timestep) 1 is normal (ratchet down to 1 minute) setting greater than zone timestep (in minutes) will effectively set to zone timestep", + "minimum": 0.0, + "maximum": 60.0 + }, + "maximum_hvac_iterations": { + "type": "number", + "default": 20.0, + "minimum": 1.0 + }, + "minimum_plant_iterations": { + "type": "number", + "note": "Controls the minimum number of plant system solver iterations within a single HVAC iteration Larger values will increase runtime but might improve solution accuracy for complicated plant systems Complex plants include: several interconnected loops, heat recovery, thermal load following generators, etc.", + "default": 2.0, + "minimum": 1.0 + }, + "maximum_plant_iterations": { + "type": "number", + "note": "Controls the maximum number of plant system solver iterations within a single HVAC iteration Smaller values might decrease runtime but could decrease solution accuracy for complicated plant systems", + "default": 8.0, + "minimum": 2.0 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "minimum_system_timestep": { + "field_name": "Minimum System Timestep", + "field_type": "n" + }, + "maximum_hvac_iterations": { + "field_name": "Maximum HVAC Iterations", + "field_type": "n" + }, + "minimum_plant_iterations": { + "field_name": "Minimum Plant Iterations", + "field_type": "n" + }, + "maximum_plant_iterations": { + "field_name": "Maximum Plant Iterations", + "field_type": "n" + } + }, + "fields": [ + "minimum_system_timestep", + "maximum_hvac_iterations", + "minimum_plant_iterations", + "maximum_plant_iterations" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "minimum_system_timestep", + "maximum_hvac_iterations", + "minimum_plant_iterations", + "maximum_plant_iterations" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies limits on HVAC system simulation timesteps and iterations. This item is an advanced feature that should be used only with caution." + }, + "HVACSystemRootFindingAlgorithm": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "algorithm": { + "type": "string", + "enum": [ + "", + "Alternation", + "Bisection", + "BisectionThenRegulaFalsi", + "RegulaFalsi", + "RegulaFalsiThenBisection" + ], + "default": "RegulaFalsi" + }, + "number_of_iterations_before_algorithm_switch": { + "type": "number", + "note": "This field is used when RegulaFalsiThenBisection or BisectionThenRegulaFalsi is entered. When iteration number is greater than the value, algorithm switches.", + "default": 5.0 + } + } + } + }, + "group": "Simulation Parameters", + "legacy_idd": { + "field_info": { + "algorithm": { + "field_name": "Algorithm", + "field_type": "a" + }, + "number_of_iterations_before_algorithm_switch": { + "field_name": "Number of Iterations Before Algorithm Switch", + "field_type": "n" + } + }, + "fields": [ + "algorithm", + "number_of_iterations_before_algorithm_switch" + ], + "alphas": { + "fields": [ + "algorithm" + ] + }, + "numerics": { + "fields": [ + "number_of_iterations_before_algorithm_switch" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies a HVAC system solver algorithm to find a root" + }, + "Compliance:Building": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "building_rotation_for_appendix_g": { + "type": "number", + "note": "Additional degrees of rotation to be used with the requirement in ASHRAE Standard 90.1 Appendix G that states that the baseline building should be rotated in four directions.", + "units": "deg", + "default": 0.0 + } + } + } + }, + "group": "Compliance Objects", + "legacy_idd": { + "field_info": { + "building_rotation_for_appendix_g": { + "field_name": "Building Rotation for Appendix G", + "field_type": "n" + } + }, + "fields": [ + "building_rotation_for_appendix_g" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "building_rotation_for_appendix_g" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Building level inputs related to compliance to building standards, building codes, and beyond energy code programs.", + "min_fields": 1.0 + }, + "Site:Location": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "latitude": { + "type": "number", + "units": "deg", + "minimum": -90.0, + "maximum": 90.0, + "default": 0.0, + "note": "+ is North, - is South, degree minutes represented in decimal (i.e. 30 minutes is .5)" + }, + "longitude": { + "type": "number", + "units": "deg", + "minimum": -180.0, + "maximum": 180.0, + "default": 0.0, + "note": "- is West, + is East, degree minutes represented in decimal (i.e. 30 minutes is .5)" + }, + "time_zone": { + "type": "number", + "note": "basic these limits on the WorldTimeZone Map (2003) Time relative to GMT. Decimal hours.", + "units": "hr", + "minimum": -12.0, + "maximum": 14.0, + "default": 0.0 + }, + "elevation": { + "type": "number", + "units": "m", + "minimum": -300.0, + "maximum": 8900.0, + "exclusiveMaximum": true, + "default": 0.0 + } + } + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "latitude": { + "field_name": "Latitude", + "field_type": "n" + }, + "longitude": { + "field_name": "Longitude", + "field_type": "n" + }, + "time_zone": { + "field_name": "Time Zone", + "field_type": "n" + }, + "elevation": { + "field_name": "Elevation", + "field_type": "n" + } + }, + "fields": [ + "name", + "latitude", + "longitude", + "time_zone", + "elevation" + ], + "alphas": { + "fields": [ + "name" + ] + }, + "numerics": { + "fields": [ + "latitude", + "longitude", + "time_zone", + "elevation" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies the building's location. Only one location is allowed. Weather data file location, if it exists, will override this object.", + "min_fields": 5.0 + }, + "Site:VariableLocation": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "building_location_latitude_schedule": { + "type": "string", + "note": "The name of a schedule that defines the latitude of the building at any time. If not entered, the latitude defined in the Site:Location, or the default latitude, will be used for the entirety of the simulation", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + }, + "building_location_longitude_schedule": { + "type": "string", + "note": "The name of a schedule that defines the longitude of the building at any time. If not entered, the longitude defined in the Site:Location, or the default longitude, will be used for the entirety of the simulation", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + }, + "building_location_orientation_schedule": { + "type": "string", + "note": "The name of a schedule that defines the orientation of the building at any time. This orientation is based on a change from the original orientation. -- NEED TO REFINE THIS If not entered, the original orientation will be used for the entirety of the simulation", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + } + } + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "building_location_latitude_schedule": { + "field_name": "Building Location Latitude Schedule", + "field_type": "a" + }, + "building_location_longitude_schedule": { + "field_name": "Building Location Longitude Schedule", + "field_type": "a" + }, + "building_location_orientation_schedule": { + "field_name": "Building Location Orientation Schedule", + "field_type": "a" + } + }, + "fields": [ + "name", + "building_location_latitude_schedule", + "building_location_longitude_schedule", + "building_location_orientation_schedule" + ], + "alphas": { + "fields": [ + "name", + "building_location_latitude_schedule", + "building_location_longitude_schedule", + "building_location_orientation_schedule" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Captures the scheduling of a moving/reorienting building, or more likely a vessel", + "min_fields": 1.0 + }, + "SizingPeriod:DesignDay": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "day_of_month": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0, + "note": "must be valid for Month field" + }, + "day_type": { + "type": "string", + "note": "Day Type selects the schedules appropriate for this design day", + "enum": [ + "CustomDay1", + "CustomDay2", + "Friday", + "Holiday", + "Monday", + "Saturday", + "SummerDesignDay", + "Sunday", + "Thursday", + "Tuesday", + "Wednesday", + "WinterDesignDay" + ] + }, + "maximum_dry_bulb_temperature": { + "type": "number", + "note": "This field is required when field \"Dry-Bulb Temperature Range Modifier Type\" is not \"TemperatureProfileSchedule\".", + "units": "C", + "minimum": -90.0, + "maximum": 70.0 + }, + "daily_dry_bulb_temperature_range": { + "type": "number", + "note": "Must still produce appropriate maximum dry-bulb (within range) This field is not needed if Dry-Bulb Temperature Range Modifier Type is \"delta\".", + "units": "deltaC", + "minimum": 0.0, + "default": 0.0 + }, + "dry_bulb_temperature_range_modifier_type": { + "type": "string", + "note": "Type of modifier to the dry-bulb temperature calculated for the timestep", + "enum": [ + "", + "DefaultMultipliers", + "DifferenceSchedule", + "MultiplierSchedule", + "TemperatureProfileSchedule" + ], + "default": "DefaultMultipliers" + }, + "dry_bulb_temperature_range_modifier_day_schedule_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ], + "note": "Only used when previous field is \"MultiplierSchedule\", \"DifferenceSchedule\" or \"TemperatureProfileSchedule\". For type \"MultiplierSchedule\" the hour/time interval values should specify the fraction (0-1) of the dry-bulb temperature range to be subtracted from the maximum dry-bulb temperature for each timestep in the day For type \"DifferenceSchedule\" the values should specify a number to be subtracted from the maximum dry-bulb temperature for each timestep in the day. Note that numbers in the difference schedule cannot be negative as that would result in a higher maximum than the maximum previously specified. For type \"TemperatureProfileSchedule\" the values should specify the actual dry-bulb temperature for each timestep in the day." + }, + "humidity_condition_type": { + "type": "string", + "note": "values/schedules indicated here and in subsequent fields create the humidity values in the 24 hour design day conditions profile.", + "enum": [ + "", + "DewPoint", + "Enthalpy", + "HumidityRatio", + "RelativeHumiditySchedule", + "WetBulb", + "WetBulbProfileDefaultMultipliers", + "WetBulbProfileDifferenceSchedule", + "WetBulbProfileMultiplierSchedule" + ], + "default": "WetBulb" + }, + "wetbulb_or_dewpoint_at_maximum_dry_bulb": { + "type": "number", + "note": "Wetbulb or dewpoint temperature coincident with the maximum temperature. Required only if field Humidity Condition Type is \"Wetbulb\", \"Dewpoint\", \"WetBulbProfileMultiplierSchedule\", \"WetBulbProfileDifferenceSchedule\", or \"WetBulbProfileDefaultMultipliers\"", + "units": "C" + }, + "humidity_condition_day_schedule_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ], + "note": "Only used when Humidity Condition Type is \"RelativeHumiditySchedule\", \"WetBulbProfileMultiplierSchedule\", or \"WetBulbProfileDifferenceSchedule\" For type \"RelativeHumiditySchedule\", the hour/time interval values should specify relative humidity (percent) from 0.0 to 100.0. For type \"WetBulbProfileMultiplierSchedule\" the hour/time interval values should specify the fraction (0-1) of the wet-bulb temperature range to be subtracted from the maximum wet-bulb temperature for each timestep in the day (units = Fraction) For type \"WetBulbProfileDifferenceSchedule\" the values should specify a number to be subtracted from the maximum wet-bulb temperature for each timestep in the day. (units = deltaC)" + }, + "humidity_ratio_at_maximum_dry_bulb": { + "type": "number", + "note": "Humidity ratio coincident with the maximum temperature (constant humidity ratio throughout day). Required only if field Humidity Condition Type is \"HumidityRatio\".", + "units": "kgWater/kgDryAir" + }, + "enthalpy_at_maximum_dry_bulb": { + "type": "number", + "note": "Enthalpy coincident with the maximum temperature. Required only if field Humidity Condition Type is \"Enthalpy\".", + "units": "J/kg" + }, + "daily_wet_bulb_temperature_range": { + "type": "number", + "units": "deltaC", + "note": "Required only if Humidity Condition Type = \"WetbulbProfileMultiplierSchedule\" or \"WetBulbProfileDefaultMultipliers\"" + }, + "barometric_pressure": { + "type": "number", + "note": "This field's value is also checked against the calculated \"standard barometric pressure\" for the location. If out of range (>10%) or blank, then is replaced by standard value.", + "units": "Pa", + "minimum": 31000.0, + "maximum": 120000.0, + "ip-units": "inHg" + }, + "wind_speed": { + "type": "number", + "units": "m/s", + "minimum": 0.0, + "maximum": 40.0, + "ip-units": "miles/hr" + }, + "wind_direction": { + "type": "number", + "units": "deg", + "minimum": 0.0, + "maximum": 360.0, + "note": "North=0.0 East=90.0 0 and 360 are the same direction." + }, + "rain_indicator": { + "type": "string", + "note": "Yes is raining (all day), No is not raining", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "snow_indicator": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No", + "note": "Yes is Snow on Ground, No is no Snow on Ground" + }, + "daylight_saving_time_indicator": { + "type": "string", + "note": "Yes -- use schedules modified for Daylight Saving Time Schedules. No - do not use schedules modified for Daylight Saving Time Schedules", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "solar_model_indicator": { + "type": "string", + "enum": [ + "", + "ASHRAEClearSky", + "ASHRAETau", + "ASHRAETau2017", + "Schedule", + "ZhangHuang" + ], + "default": "ASHRAEClearSky" + }, + "beam_solar_day_schedule_name": { + "type": "string", + "note": "if Solar Model Indicator = Schedule, then beam schedule name (for day)", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "diffuse_solar_day_schedule_name": { + "type": "string", + "note": "if Solar Model Indicator = Schedule, then diffuse schedule name (for day)", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "ashrae_clear_sky_optical_depth_for_beam_irradiance_taub_": { + "type": "number", + "units": "dimensionless", + "note": "Required if Solar Model Indicator = ASHRAETau or ASHRAETau2017 ASHRAETau2017 solar model can be used with 2013 and 2017 HOF matching taub", + "minimum": 0.0, + "maximum": 1.2, + "default": 0.0 + }, + "ashrae_clear_sky_optical_depth_for_diffuse_irradiance_taud_": { + "type": "number", + "units": "dimensionless", + "note": "Required if Solar Model Indicator = ASHRAETau or ASHRAETau2017 ASHRAETau2017 solar model can be used with 2013 and 2017 HOF matching taud", + "minimum": 0.0, + "maximum": 3.0, + "default": 0.0 + }, + "sky_clearness": { + "type": "number", + "note": "Used if Sky Model Indicator = ASHRAEClearSky or ZhangHuang 0.0 is totally unclear, 1.0 is totally clear", + "minimum": 0.0, + "maximum": 1.2, + "default": 0.0 + }, + "maximum_number_warmup_days": { + "type": "number", + "note": "If used this design day will be run with a custom limit on the maximum number of days that are repeated for warmup. Limiting the number of warmup days can improve run time." + }, + "begin_environment_reset_mode": { + "type": "string", + "note": "If used this can control if you want the thermal history to be reset at the beginning of the design day. When using a series of similiar design days, this field can be used to retain warmup state from the previous design day.", + "enum": [ + "", + "FullResetAtBeginEnvironment", + "SuppressAllBeginEnvironmentResets" + ], + "default": "FullResetAtBeginEnvironment" + } + }, + "required": [ + "month", + "day_of_month", + "day_type", + "wind_speed", + "wind_direction" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "RunPeriodsAndDesignDays" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "month": { + "field_name": "Month", + "field_type": "n" + }, + "day_of_month": { + "field_name": "Day of Month", + "field_type": "n" + }, + "day_type": { + "field_name": "Day Type", + "field_type": "a" + }, + "maximum_dry_bulb_temperature": { + "field_name": "Maximum Dry-Bulb Temperature", + "field_type": "n" + }, + "daily_dry_bulb_temperature_range": { + "field_name": "Daily Dry-Bulb Temperature Range", + "field_type": "n" + }, + "dry_bulb_temperature_range_modifier_type": { + "field_name": "Dry-Bulb Temperature Range Modifier Type", + "field_type": "a" + }, + "dry_bulb_temperature_range_modifier_day_schedule_name": { + "field_name": "Dry-Bulb Temperature Range Modifier Day Schedule Name", + "field_type": "a" + }, + "humidity_condition_type": { + "field_name": "Humidity Condition Type", + "field_type": "a" + }, + "wetbulb_or_dewpoint_at_maximum_dry_bulb": { + "field_name": "Wetbulb or DewPoint at Maximum Dry-Bulb", + "field_type": "n" + }, + "humidity_condition_day_schedule_name": { + "field_name": "Humidity Condition Day Schedule Name", + "field_type": "a" + }, + "humidity_ratio_at_maximum_dry_bulb": { + "field_name": "Humidity Ratio at Maximum Dry-Bulb", + "field_type": "n" + }, + "enthalpy_at_maximum_dry_bulb": { + "field_name": "Enthalpy at Maximum Dry-Bulb", + "field_type": "n" + }, + "daily_wet_bulb_temperature_range": { + "field_name": "Daily Wet-Bulb Temperature Range", + "field_type": "n" + }, + "barometric_pressure": { + "field_name": "Barometric Pressure", + "field_type": "n" + }, + "wind_speed": { + "field_name": "Wind Speed", + "field_type": "n" + }, + "wind_direction": { + "field_name": "Wind Direction", + "field_type": "n" + }, + "rain_indicator": { + "field_name": "Rain Indicator", + "field_type": "a" + }, + "snow_indicator": { + "field_name": "Snow Indicator", + "field_type": "a" + }, + "daylight_saving_time_indicator": { + "field_name": "Daylight Saving Time Indicator", + "field_type": "a" + }, + "solar_model_indicator": { + "field_name": "Solar Model Indicator", + "field_type": "a" + }, + "beam_solar_day_schedule_name": { + "field_name": "Beam Solar Day Schedule Name", + "field_type": "a" + }, + "diffuse_solar_day_schedule_name": { + "field_name": "Diffuse Solar Day Schedule Name", + "field_type": "a" + }, + "ashrae_clear_sky_optical_depth_for_beam_irradiance_taub_": { + "field_name": "ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)", + "field_type": "n" + }, + "ashrae_clear_sky_optical_depth_for_diffuse_irradiance_taud_": { + "field_name": "ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)", + "field_type": "n" + }, + "sky_clearness": { + "field_name": "Sky Clearness", + "field_type": "n" + }, + "maximum_number_warmup_days": { + "field_name": "Maximum Number Warmup Days", + "field_type": "n" + }, + "begin_environment_reset_mode": { + "field_name": "Begin Environment Reset Mode", + "field_type": "a" + } + }, + "fields": [ + "name", + "month", + "day_of_month", + "day_type", + "maximum_dry_bulb_temperature", + "daily_dry_bulb_temperature_range", + "dry_bulb_temperature_range_modifier_type", + "dry_bulb_temperature_range_modifier_day_schedule_name", + "humidity_condition_type", + "wetbulb_or_dewpoint_at_maximum_dry_bulb", + "humidity_condition_day_schedule_name", + "humidity_ratio_at_maximum_dry_bulb", + "enthalpy_at_maximum_dry_bulb", + "daily_wet_bulb_temperature_range", + "barometric_pressure", + "wind_speed", + "wind_direction", + "rain_indicator", + "snow_indicator", + "daylight_saving_time_indicator", + "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_", + "sky_clearness", + "maximum_number_warmup_days", + "begin_environment_reset_mode" + ], + "alphas": { + "fields": [ + "name", + "day_type", + "dry_bulb_temperature_range_modifier_type", + "dry_bulb_temperature_range_modifier_day_schedule_name", + "humidity_condition_type", + "humidity_condition_day_schedule_name", + "rain_indicator", + "snow_indicator", + "daylight_saving_time_indicator", + "solar_model_indicator", + "beam_solar_day_schedule_name", + "diffuse_solar_day_schedule_name", + "begin_environment_reset_mode" + ] + }, + "numerics": { + "fields": [ + "month", + "day_of_month", + "maximum_dry_bulb_temperature", + "daily_dry_bulb_temperature_range", + "wetbulb_or_dewpoint_at_maximum_dry_bulb", + "humidity_ratio_at_maximum_dry_bulb", + "enthalpy_at_maximum_dry_bulb", + "daily_wet_bulb_temperature_range", + "barometric_pressure", + "wind_speed", + "wind_direction", + "ashrae_clear_sky_optical_depth_for_beam_irradiance_taub_", + "ashrae_clear_sky_optical_depth_for_diffuse_irradiance_taud_", + "sky_clearness", + "maximum_number_warmup_days" + ] + } + }, + "type": "object", + "memo": "The design day object creates the parameters for the program to create the 24 hour weather profile that can be used for sizing as well as running to test the other simulation parameters. Parameters in this include a date (month and day), a day type (which uses the appropriate schedules for either sizing or simple tests), min/max temperatures, wind speeds, and solar radiation values." + }, + "SizingPeriod:WeatherFileDays": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "begin_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "begin_day_of_month": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + }, + "end_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "end_day_of_month": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + }, + "day_of_week_for_start_day": { + "type": "string", + "note": "=[|Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|SummerDesignDay|WinterDesignDay| |CustomDay1|CustomDay2]; if you use SummerDesignDay or WinterDesignDay or the CustomDays then this will apply to the whole period; other days (i.e., Monday) will signify a start day and normal sequence of subsequent days", + "default": "Monday", + "enum": [ + "", + "CustomDay1", + "CustomDay2", + "Friday", + "Monday", + "Saturday", + "SummerDesignDay", + "Sunday", + "Thursday", + "Tuesday", + "Wednesday", + "WinterDesignDay" + ] + }, + "use_weather_file_daylight_saving_period": { + "type": "string", + "note": "If yes or blank, use daylight saving period as specified on Weatherfile. If no, do not use the daylight saving period as specified on the Weatherfile.", + "default": "Yes", + "enum": [ + "", + "No", + "Yes" + ] + }, + "use_weather_file_rain_and_snow_indicators": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + } + }, + "required": [ + "begin_month", + "begin_day_of_month", + "end_month", + "end_day_of_month" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "reference": [ + "RunPeriodsAndDesignDays" + ], + "is_required": true, + "note": "user supplied name for reporting" + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "begin_month": { + "field_name": "Begin Month", + "field_type": "n" + }, + "begin_day_of_month": { + "field_name": "Begin Day of Month", + "field_type": "n" + }, + "end_month": { + "field_name": "End Month", + "field_type": "n" + }, + "end_day_of_month": { + "field_name": "End Day of Month", + "field_type": "n" + }, + "day_of_week_for_start_day": { + "field_name": "Day of Week for Start Day", + "field_type": "a" + }, + "use_weather_file_daylight_saving_period": { + "field_name": "Use Weather File Daylight Saving Period", + "field_type": "a" + }, + "use_weather_file_rain_and_snow_indicators": { + "field_name": "Use Weather File Rain and Snow Indicators", + "field_type": "a" + } + }, + "fields": [ + "name", + "begin_month", + "begin_day_of_month", + "end_month", + "end_day_of_month", + "day_of_week_for_start_day", + "use_weather_file_daylight_saving_period", + "use_weather_file_rain_and_snow_indicators" + ], + "alphas": { + "fields": [ + "name", + "day_of_week_for_start_day", + "use_weather_file_daylight_saving_period", + "use_weather_file_rain_and_snow_indicators" + ] + }, + "numerics": { + "fields": [ + "begin_month", + "begin_day_of_month", + "end_month", + "end_day_of_month" + ] + } + }, + "type": "object", + "memo": "Use a weather file period for design sizing calculations." + }, + "SizingPeriod:WeatherFileConditionType": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "period_selection": { + "type": "string", + "retaincase": true, + "note": "Following is a list of all possible types of Extreme and Typical periods that might be identified in the Weather File. Not all possible types are available for all weather files.", + "enum": [ + "AutumnTypical", + "DrySeason", + "NoDrySeason", + "NoDrySeasonMax", + "NoDrySeasonMin", + "NoWetSeason", + "NoWetSeasonMax", + "NoWetSeasonMin", + "SpringTypical", + "SummerExtreme", + "SummerTypical", + "TropicalCold", + "TropicalHot", + "WetSeason", + "WinterExtreme", + "WinterTypical" + ] + }, + "day_of_week_for_start_day": { + "type": "string", + "note": "=[|Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|SummerDesignDay|WinterDesignDay| |CustomDay1|CustomDay2]; if you use SummerDesignDay or WinterDesignDay or the CustomDays then this will apply to the whole period; other days (i.e., Monday) will signify a start day and normal sequence of subsequent days", + "default": "Monday", + "enum": [ + "", + "CustomDay1", + "CustomDay2", + "Friday", + "Monday", + "Saturday", + "SummerDesignDay", + "Sunday", + "Thursday", + "Tuesday", + "Wednesday", + "WinterDesignDay" + ] + }, + "use_weather_file_daylight_saving_period": { + "type": "string", + "note": "If yes or blank, use daylight saving period as specified on Weatherfile. If no, do not use the daylight saving period as specified on the Weatherfile.", + "default": "Yes", + "enum": [ + "", + "No", + "Yes" + ] + }, + "use_weather_file_rain_and_snow_indicators": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + } + }, + "required": [ + "period_selection" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "RunPeriodsAndDesignDays" + ], + "note": "user supplied name for reporting" + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "period_selection": { + "field_name": "Period Selection", + "field_type": "a" + }, + "day_of_week_for_start_day": { + "field_name": "Day of Week for Start Day", + "field_type": "a" + }, + "use_weather_file_daylight_saving_period": { + "field_name": "Use Weather File Daylight Saving Period", + "field_type": "a" + }, + "use_weather_file_rain_and_snow_indicators": { + "field_name": "Use Weather File Rain and Snow Indicators", + "field_type": "a" + } + }, + "fields": [ + "name", + "period_selection", + "day_of_week_for_start_day", + "use_weather_file_daylight_saving_period", + "use_weather_file_rain_and_snow_indicators" + ], + "alphas": { + "fields": [ + "name", + "period_selection", + "day_of_week_for_start_day", + "use_weather_file_daylight_saving_period", + "use_weather_file_rain_and_snow_indicators" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "memo": "Use a weather file period for design sizing calculations. EPW weather files are created with typical and extreme periods created heuristically from the weather file data. For more details on these periods, see AuxiliaryPrograms document." + }, + "RunPeriod": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "begin_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "begin_day_of_month": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + }, + "begin_year": { + "type": "number", + "note": "Start year of the simulation, if this field is specified it must agree with the Day of Week for Start Day If this field is blank, the year will be selected to match the weekday, which is Sunday if not specified" + }, + "end_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "end_day_of_month": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + }, + "end_year": { + "type": "number", + "note": "end year of simulation, if specified" + }, + "day_of_week_for_start_day": { + "type": "string", + "note": "=[Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday]; If no year is input, this field will default to Sunday If a year is input and this field is blank, the correct weekday is determined", + "enum": [ + "Friday", + "Monday", + "Saturday", + "Sunday", + "Thursday", + "Tuesday", + "Wednesday" + ] + }, + "use_weather_file_holidays_and_special_days": { + "type": "string", + "note": "If yes or blank, use holidays as specified on Weatherfile. If no, do not use the holidays specified on the Weatherfile. Note: You can still specify holidays/special days using the RunPeriodControl:SpecialDays object(s).", + "default": "Yes", + "enum": [ + "", + "No", + "Yes" + ] + }, + "use_weather_file_daylight_saving_period": { + "type": "string", + "note": "If yes or blank, use daylight saving period as specified on Weatherfile. If no, do not use the daylight saving period as specified on the Weatherfile.", + "default": "Yes", + "enum": [ + "", + "No", + "Yes" + ] + }, + "apply_weekend_holiday_rule": { + "type": "string", + "note": "if yes and single day holiday falls on weekend, \"holiday\" occurs on following Monday", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "use_weather_file_rain_indicators": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + }, + "use_weather_file_snow_indicators": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "Yes" + }, + "treat_weather_as_actual": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "first_hour_interpolation_starting_values": { + "type": "string", + "note": "When the weather data timestep is longer than the simulation timestep, weather data is interpolated. For the first hour of the simulation, this field specifies which values from the first day of the run period to use as the interpolation starting point. This same interpolation will be used for repeated warmup days.", + "enum": [ + "", + "Hour1", + "Hour24" + ], + "default": "Hour24" + } + }, + "required": [ + "begin_month", + "begin_day_of_month", + "end_month", + "end_day_of_month" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "RunPeriodsAndDesignDays" + ], + "note": "descriptive name (used in reporting mainly) Cannot be not blank and must be unique" + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "begin_month": { + "field_name": "Begin Month", + "field_type": "n" + }, + "begin_day_of_month": { + "field_name": "Begin Day of Month", + "field_type": "n" + }, + "begin_year": { + "field_name": "Begin Year", + "field_type": "n" + }, + "end_month": { + "field_name": "End Month", + "field_type": "n" + }, + "end_day_of_month": { + "field_name": "End Day of Month", + "field_type": "n" + }, + "end_year": { + "field_name": "End Year", + "field_type": "n" + }, + "day_of_week_for_start_day": { + "field_name": "Day of Week for Start Day", + "field_type": "a" + }, + "use_weather_file_holidays_and_special_days": { + "field_name": "Use Weather File Holidays and Special Days", + "field_type": "a" + }, + "use_weather_file_daylight_saving_period": { + "field_name": "Use Weather File Daylight Saving Period", + "field_type": "a" + }, + "apply_weekend_holiday_rule": { + "field_name": "Apply Weekend Holiday Rule", + "field_type": "a" + }, + "use_weather_file_rain_indicators": { + "field_name": "Use Weather File Rain Indicators", + "field_type": "a" + }, + "use_weather_file_snow_indicators": { + "field_name": "Use Weather File Snow Indicators", + "field_type": "a" + }, + "treat_weather_as_actual": { + "field_name": "Treat Weather as Actual", + "field_type": "a" + }, + "first_hour_interpolation_starting_values": { + "field_name": "First Hour Interpolation Starting Values", + "field_type": "a" + } + }, + "fields": [ + "name", + "begin_month", + "begin_day_of_month", + "begin_year", + "end_month", + "end_day_of_month", + "end_year", + "day_of_week_for_start_day", + "use_weather_file_holidays_and_special_days", + "use_weather_file_daylight_saving_period", + "apply_weekend_holiday_rule", + "use_weather_file_rain_indicators", + "use_weather_file_snow_indicators", + "treat_weather_as_actual", + "first_hour_interpolation_starting_values" + ], + "alphas": { + "fields": [ + "name", + "day_of_week_for_start_day", + "use_weather_file_holidays_and_special_days", + "use_weather_file_daylight_saving_period", + "apply_weekend_holiday_rule", + "use_weather_file_rain_indicators", + "use_weather_file_snow_indicators", + "treat_weather_as_actual", + "first_hour_interpolation_starting_values" + ] + }, + "numerics": { + "fields": [ + "begin_month", + "begin_day_of_month", + "begin_year", + "end_month", + "end_day_of_month", + "end_year" + ] + } + }, + "type": "object", + "memo": "Specify a range of dates and other parameters for a simulation. Multiple run periods may be input, but they may not overlap.", + "min_fields": 7.0 + }, + "RunPeriodControl:SpecialDays": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "start_date": { + "type": "string", + "note": "Dates can be several formats: / (month/day) in in can be January, February, March, April, May, June, July, August, September, October, November, December Months can be the first 3 letters of the month can be Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday can be 1 or 1st, 2 or 2nd, etc. up to 5(?)" + }, + "duration": { + "type": "number", + "units": "days", + "minimum": 1.0, + "maximum": 366.0, + "default": 1.0 + }, + "special_day_type": { + "type": "string", + "note": "Special Day Type selects the schedules appropriate for each day so labeled", + "enum": [ + "", + "CustomDay1", + "CustomDay2", + "Holiday", + "SummerDesignDay", + "WinterDesignDay" + ], + "default": "Holiday" + } + }, + "required": [ + "start_date" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "start_date": { + "field_name": "Start Date", + "field_type": "a" + }, + "duration": { + "field_name": "Duration", + "field_type": "n" + }, + "special_day_type": { + "field_name": "Special Day Type", + "field_type": "a" + } + }, + "fields": [ + "name", + "start_date", + "duration", + "special_day_type" + ], + "alphas": { + "fields": [ + "name", + "start_date", + "special_day_type" + ] + }, + "numerics": { + "fields": [ + "duration" + ] + } + }, + "type": "object", + "memo": "This object sets up holidays/special days to be used during weather file run periods. (These are not used with SizingPeriod:* objects.) Depending on the value in the run period, days on the weather file may also be used. However, the weather file specification will take precedence over any specification shown here. (No error message on duplicate days or overlapping days).", + "min_fields": 4.0 + }, + "RunPeriodControl:DaylightSavingTime": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "start_date": { + "type": "string" + }, + "end_date": { + "type": "string", + "note": "Dates can be several formats: / (month/day) in in can be January, February, March, April, May, June, July, August, September, October, November, December Months can be the first 3 letters of the month can be Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday can be 1 or 1st, 2 or 2nd, etc. up to 5(?)" + } + }, + "required": [ + "start_date", + "end_date" + ] + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "start_date": { + "field_name": "Start Date", + "field_type": "a" + }, + "end_date": { + "field_name": "End Date", + "field_type": "a" + } + }, + "fields": [ + "start_date", + "end_date" + ], + "alphas": { + "fields": [ + "start_date", + "end_date" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "This object sets up the daylight saving time period for any RunPeriod. Ignores any daylight saving time period on the weather file and uses this definition. These are not used with SizingPeriod:DesignDay objects. Use with SizingPeriod:WeatherFileDays object can be controlled in that object.", + "min_fields": 2.0 + }, + "WeatherProperty:SkyTemperature": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "calculation_type": { + "type": "string", + "note": "The field indicates that the sky temperature will be imported from external schedules or calculated by alternative methods other than default.", + "enum": [ + "", + "BerdahlMartin", + "Brunt", + "ClarkAllen", + "DifferenceScheduleDewPointValue", + "DifferenceScheduleDryBulbValue", + "Idso", + "ScheduleValue" + ], + "default": "ClarkAllen" + }, + "schedule_name": { + "type": "string", + "note": "if name matches a SizingPeriod:DesignDay, put in a day schedule of this name if name is for a SizingPeriod:WeatherFileDays, SizingPeriod:WeatherFileConditionType or RunPeriod, put in a full year schedule that covers the appropriate days. Required if Calculation Type is ScheduleValue, DifferenceScheduleDryBulbValue or DifferenceScheduleDewPointValue.", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames", + "ScheduleNames" + ] + }, + "use_weather_file_horizontal_ir": { + "type": "string", + "note": "If yes or blank, use Horizontal IR values from weather file when present, otherwise use the specified sky model. If no, always use the specified sky model and ignore the horizontal IR values from the weather file. For Calculation Type = ScheduleValue, DifferenceScheduleDryBulbValue or DifferenceScheduleDewPointValue, this field is ignored and the scheduled values are used.", + "default": "Yes", + "enum": [ + "", + "No", + "Yes" + ] + } + } + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "note": "blank in this field will apply to all run periods (that is, all objects= SizingPeriod:WeatherFileDays, SizingPeriod:WeatherFileConditionType or RunPeriod otherwise, this name must match one of the environment object names.", + "data_type": "object_list", + "object_list": [ + "RunPeriodsAndDesignDays" + ] + }, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "calculation_type": { + "field_name": "Calculation Type", + "field_type": "a" + }, + "schedule_name": { + "field_name": "Schedule Name", + "field_type": "a" + }, + "use_weather_file_horizontal_ir": { + "field_name": "Use Weather File Horizontal IR", + "field_type": "a" + } + }, + "fields": [ + "name", + "calculation_type", + "schedule_name", + "use_weather_file_horizontal_ir" + ], + "alphas": { + "fields": [ + "name", + "calculation_type", + "schedule_name", + "use_weather_file_horizontal_ir" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "memo": "This object is used to override internal sky temperature calculations." + }, + "Site:WeatherStation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "wind_sensor_height_above_ground": { + "type": "number", + "units": "m", + "default": 10.0, + "minimum": 0.0, + "exclusiveMinimum": true + }, + "wind_speed_profile_exponent": { + "type": "number", + "default": 0.14, + "minimum": 0.0 + }, + "wind_speed_profile_boundary_layer_thickness": { + "type": "number", + "units": "m", + "default": 270.0, + "minimum": 0.0 + }, + "air_temperature_sensor_height_above_ground": { + "type": "number", + "units": "m", + "default": 1.5, + "minimum": 0.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "wind_sensor_height_above_ground": { + "field_name": "Wind Sensor Height Above Ground", + "field_type": "n" + }, + "wind_speed_profile_exponent": { + "field_name": "Wind Speed Profile Exponent", + "field_type": "n" + }, + "wind_speed_profile_boundary_layer_thickness": { + "field_name": "Wind Speed Profile Boundary Layer Thickness", + "field_type": "n" + }, + "air_temperature_sensor_height_above_ground": { + "field_name": "Air Temperature Sensor Height Above Ground", + "field_type": "n" + } + }, + "fields": [ + "wind_sensor_height_above_ground", + "wind_speed_profile_exponent", + "wind_speed_profile_boundary_layer_thickness", + "air_temperature_sensor_height_above_ground" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "wind_sensor_height_above_ground", + "wind_speed_profile_exponent", + "wind_speed_profile_boundary_layer_thickness", + "air_temperature_sensor_height_above_ground" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "This object should only be used for non-standard weather data. Standard weather data such as TMY2, IWEC, and ASHRAE design day data are all measured at the default conditions and do not require this object." + }, + "Site:HeightVariation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "wind_speed_profile_exponent": { + "type": "number", + "note": "Set to zero for no wind speed dependence on height.", + "default": 0.22, + "minimum": 0.0 + }, + "wind_speed_profile_boundary_layer_thickness": { + "type": "number", + "units": "m", + "default": 370.0, + "minimum": 0.0, + "exclusiveMinimum": true + }, + "air_temperature_gradient_coefficient": { + "type": "number", + "note": "Set to zero for no air temperature dependence on height.", + "units": "K/m", + "default": 0.0065, + "minimum": 0.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "wind_speed_profile_exponent": { + "field_name": "Wind Speed Profile Exponent", + "field_type": "n" + }, + "wind_speed_profile_boundary_layer_thickness": { + "field_name": "Wind Speed Profile Boundary Layer Thickness", + "field_type": "n" + }, + "air_temperature_gradient_coefficient": { + "field_name": "Air Temperature Gradient Coefficient", + "field_type": "n" + } + }, + "fields": [ + "wind_speed_profile_exponent", + "wind_speed_profile_boundary_layer_thickness", + "air_temperature_gradient_coefficient" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "wind_speed_profile_exponent", + "wind_speed_profile_boundary_layer_thickness", + "air_temperature_gradient_coefficient" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "This object is used if the user requires advanced control over height-dependent variations in wind speed and temperature. When this object is not present, the default model for temperature dependence on height is used, and the wind speed is modeled according to the Terrain field of the BUILDING object." + }, + "Site:GroundTemperature:BuildingSurface": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "january_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "february_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "march_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "april_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "may_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "june_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "july_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "august_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "september_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "october_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "november_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + }, + "december_ground_temperature": { + "type": "number", + "units": "C", + "default": 18.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "january_ground_temperature": { + "field_name": "January Ground Temperature", + "field_type": "n" + }, + "february_ground_temperature": { + "field_name": "February Ground Temperature", + "field_type": "n" + }, + "march_ground_temperature": { + "field_name": "March Ground Temperature", + "field_type": "n" + }, + "april_ground_temperature": { + "field_name": "April Ground Temperature", + "field_type": "n" + }, + "may_ground_temperature": { + "field_name": "May Ground Temperature", + "field_type": "n" + }, + "june_ground_temperature": { + "field_name": "June Ground Temperature", + "field_type": "n" + }, + "july_ground_temperature": { + "field_name": "July Ground Temperature", + "field_type": "n" + }, + "august_ground_temperature": { + "field_name": "August Ground Temperature", + "field_type": "n" + }, + "september_ground_temperature": { + "field_name": "September Ground Temperature", + "field_type": "n" + }, + "october_ground_temperature": { + "field_name": "October Ground Temperature", + "field_type": "n" + }, + "november_ground_temperature": { + "field_name": "November Ground Temperature", + "field_type": "n" + }, + "december_ground_temperature": { + "field_name": "December Ground Temperature", + "field_type": "n" + } + }, + "fields": [ + "january_ground_temperature", + "february_ground_temperature", + "march_ground_temperature", + "april_ground_temperature", + "may_ground_temperature", + "june_ground_temperature", + "july_ground_temperature", + "august_ground_temperature", + "september_ground_temperature", + "october_ground_temperature", + "november_ground_temperature", + "december_ground_temperature" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "january_ground_temperature", + "february_ground_temperature", + "march_ground_temperature", + "april_ground_temperature", + "may_ground_temperature", + "june_ground_temperature", + "july_ground_temperature", + "august_ground_temperature", + "september_ground_temperature", + "october_ground_temperature", + "november_ground_temperature", + "december_ground_temperature" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "These temperatures are specifically for those surfaces that have the outside environment of \"Ground\". Documentation about what values these should be is located in the Auxiliary programs document (Ground Heat Transfer) as well as the InputOutput Reference. CAUTION - Do not use the \"undisturbed\" ground temperatures from the weather data. These values are too extreme for the soil under a conditioned building. For best results, use the Slab or Basement program to calculate custom monthly average ground temperatures (see Auxiliary Programs). For typical commercial buildings in the USA, a reasonable default value is 2C less than the average indoor space temperature.", + "min_fields": 12.0, + "format": "singleLine" + }, + "Site:GroundTemperature:FCfactorMethod": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "january_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "february_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "march_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "april_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "may_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "june_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "july_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "august_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "september_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "october_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "november_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "december_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "january_ground_temperature": { + "field_name": "January Ground Temperature", + "field_type": "n" + }, + "february_ground_temperature": { + "field_name": "February Ground Temperature", + "field_type": "n" + }, + "march_ground_temperature": { + "field_name": "March Ground Temperature", + "field_type": "n" + }, + "april_ground_temperature": { + "field_name": "April Ground Temperature", + "field_type": "n" + }, + "may_ground_temperature": { + "field_name": "May Ground Temperature", + "field_type": "n" + }, + "june_ground_temperature": { + "field_name": "June Ground Temperature", + "field_type": "n" + }, + "july_ground_temperature": { + "field_name": "July Ground Temperature", + "field_type": "n" + }, + "august_ground_temperature": { + "field_name": "August Ground Temperature", + "field_type": "n" + }, + "september_ground_temperature": { + "field_name": "September Ground Temperature", + "field_type": "n" + }, + "october_ground_temperature": { + "field_name": "October Ground Temperature", + "field_type": "n" + }, + "november_ground_temperature": { + "field_name": "November Ground Temperature", + "field_type": "n" + }, + "december_ground_temperature": { + "field_name": "December Ground Temperature", + "field_type": "n" + } + }, + "fields": [ + "january_ground_temperature", + "february_ground_temperature", + "march_ground_temperature", + "april_ground_temperature", + "may_ground_temperature", + "june_ground_temperature", + "july_ground_temperature", + "august_ground_temperature", + "september_ground_temperature", + "october_ground_temperature", + "november_ground_temperature", + "december_ground_temperature" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "january_ground_temperature", + "february_ground_temperature", + "march_ground_temperature", + "april_ground_temperature", + "may_ground_temperature", + "june_ground_temperature", + "july_ground_temperature", + "august_ground_temperature", + "september_ground_temperature", + "october_ground_temperature", + "november_ground_temperature", + "december_ground_temperature" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "These temperatures are specifically for underground walls and ground floors defined with the C-factor and F-factor methods, and should be close to the monthly average outdoor air temperature delayed by 3 months for the location.", + "min_fields": 12.0, + "format": "singleLine" + }, + "Site:GroundTemperature:Shallow": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "january_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "february_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "march_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "april_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "may_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "june_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "july_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "august_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "september_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "october_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "november_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + }, + "december_surface_ground_temperature": { + "type": "number", + "units": "C", + "default": 13.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "january_surface_ground_temperature": { + "field_name": "January Surface Ground Temperature", + "field_type": "n" + }, + "february_surface_ground_temperature": { + "field_name": "February Surface Ground Temperature", + "field_type": "n" + }, + "march_surface_ground_temperature": { + "field_name": "March Surface Ground Temperature", + "field_type": "n" + }, + "april_surface_ground_temperature": { + "field_name": "April Surface Ground Temperature", + "field_type": "n" + }, + "may_surface_ground_temperature": { + "field_name": "May Surface Ground Temperature", + "field_type": "n" + }, + "june_surface_ground_temperature": { + "field_name": "June Surface Ground Temperature", + "field_type": "n" + }, + "july_surface_ground_temperature": { + "field_name": "July Surface Ground Temperature", + "field_type": "n" + }, + "august_surface_ground_temperature": { + "field_name": "August Surface Ground Temperature", + "field_type": "n" + }, + "september_surface_ground_temperature": { + "field_name": "September Surface Ground Temperature", + "field_type": "n" + }, + "october_surface_ground_temperature": { + "field_name": "October Surface Ground Temperature", + "field_type": "n" + }, + "november_surface_ground_temperature": { + "field_name": "November Surface Ground Temperature", + "field_type": "n" + }, + "december_surface_ground_temperature": { + "field_name": "December Surface Ground Temperature", + "field_type": "n" + } + }, + "fields": [ + "january_surface_ground_temperature", + "february_surface_ground_temperature", + "march_surface_ground_temperature", + "april_surface_ground_temperature", + "may_surface_ground_temperature", + "june_surface_ground_temperature", + "july_surface_ground_temperature", + "august_surface_ground_temperature", + "september_surface_ground_temperature", + "october_surface_ground_temperature", + "november_surface_ground_temperature", + "december_surface_ground_temperature" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "january_surface_ground_temperature", + "february_surface_ground_temperature", + "march_surface_ground_temperature", + "april_surface_ground_temperature", + "may_surface_ground_temperature", + "june_surface_ground_temperature", + "july_surface_ground_temperature", + "august_surface_ground_temperature", + "september_surface_ground_temperature", + "october_surface_ground_temperature", + "november_surface_ground_temperature", + "december_surface_ground_temperature" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "These temperatures are specifically for the Surface Ground Heat Exchanger and should probably be close to the average outdoor air temperature for the location. They are not used in other models.", + "min_fields": 12.0, + "format": "singleLine" + }, + "Site:GroundTemperature:Deep": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "january_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "february_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "march_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "april_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "may_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "june_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "july_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "august_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "september_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "october_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "november_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + }, + "december_deep_ground_temperature": { + "type": "number", + "units": "C", + "default": 16.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "january_deep_ground_temperature": { + "field_name": "January Deep Ground Temperature", + "field_type": "n" + }, + "february_deep_ground_temperature": { + "field_name": "February Deep Ground Temperature", + "field_type": "n" + }, + "march_deep_ground_temperature": { + "field_name": "March Deep Ground Temperature", + "field_type": "n" + }, + "april_deep_ground_temperature": { + "field_name": "April Deep Ground Temperature", + "field_type": "n" + }, + "may_deep_ground_temperature": { + "field_name": "May Deep Ground Temperature", + "field_type": "n" + }, + "june_deep_ground_temperature": { + "field_name": "June Deep Ground Temperature", + "field_type": "n" + }, + "july_deep_ground_temperature": { + "field_name": "July Deep Ground Temperature", + "field_type": "n" + }, + "august_deep_ground_temperature": { + "field_name": "August Deep Ground Temperature", + "field_type": "n" + }, + "september_deep_ground_temperature": { + "field_name": "September Deep Ground Temperature", + "field_type": "n" + }, + "october_deep_ground_temperature": { + "field_name": "October Deep Ground Temperature", + "field_type": "n" + }, + "november_deep_ground_temperature": { + "field_name": "November Deep Ground Temperature", + "field_type": "n" + }, + "december_deep_ground_temperature": { + "field_name": "December Deep Ground Temperature", + "field_type": "n" + } + }, + "fields": [ + "january_deep_ground_temperature", + "february_deep_ground_temperature", + "march_deep_ground_temperature", + "april_deep_ground_temperature", + "may_deep_ground_temperature", + "june_deep_ground_temperature", + "july_deep_ground_temperature", + "august_deep_ground_temperature", + "september_deep_ground_temperature", + "october_deep_ground_temperature", + "november_deep_ground_temperature", + "december_deep_ground_temperature" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "january_deep_ground_temperature", + "february_deep_ground_temperature", + "march_deep_ground_temperature", + "april_deep_ground_temperature", + "may_deep_ground_temperature", + "june_deep_ground_temperature", + "july_deep_ground_temperature", + "august_deep_ground_temperature", + "september_deep_ground_temperature", + "october_deep_ground_temperature", + "november_deep_ground_temperature", + "december_deep_ground_temperature" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "These temperatures are specifically for the ground heat exchangers that would use \"deep\" (3-4 m depth) ground temperatures for their heat source. They are not used in other models.", + "min_fields": 12.0, + "format": "singleLine" + }, + "Site:GroundTemperature:Undisturbed:FiniteDifference": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "soil_thermal_conductivity": { + "type": "number", + "units": "W/m-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_density": { + "type": "number", + "units": "kg/m3", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_specific_heat": { + "type": "number", + "units": "J/kg-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_moisture_content_volume_fraction": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 30.0 + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 50.0 + }, + "evapotranspiration_ground_cover_parameter": { + "type": "number", + "units": "dimensionless", + "minimum": 0.0, + "maximum": 1.5, + "default": 0.4, + "note": "This specifies the ground cover effects during evapotranspiration calculations. The value roughly represents the following cases: = 0 : concrete or other solid, non-permeable ground surface material = 0.5 : short grass, much like a manicured lawn = 1 : standard reference state (12 cm grass) = 1.5 : wild growth" + } + }, + "required": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "UndisturbedGroundTempModels" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "soil_thermal_conductivity": { + "field_name": "Soil Thermal Conductivity", + "field_type": "n" + }, + "soil_density": { + "field_name": "Soil Density", + "field_type": "n" + }, + "soil_specific_heat": { + "field_name": "Soil Specific Heat", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction": { + "field_name": "Soil Moisture Content Volume Fraction", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "field_name": "Soil Moisture Content Volume Fraction at Saturation", + "field_type": "n" + }, + "evapotranspiration_ground_cover_parameter": { + "field_name": "Evapotranspiration Ground Cover Parameter", + "field_type": "n" + } + }, + "fields": [ + "name", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "evapotranspiration_ground_cover_parameter" + ], + "alphas": { + "fields": [ + "name" + ] + }, + "numerics": { + "fields": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "evapotranspiration_ground_cover_parameter" + ] + } + }, + "type": "object", + "memo": "Undisturbed ground temperature object using a detailed finite difference 1-D model", + "min_fields": 7.0 + }, + "Site:GroundTemperature:Undisturbed:KusudaAchenbach": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "soil_thermal_conductivity": { + "type": "number", + "units": "W/m-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_density": { + "type": "number", + "units": "kg/m3", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_specific_heat": { + "type": "number", + "units": "J/kg-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "average_soil_surface_temperature": { + "type": "number", + "units": "C", + "note": "Annual average surface temperature If left blank the Site:GroundTemperature:Shallow object must be included in the input The soil temperature, amplitude, and phase shift must all be included or omitted together" + }, + "average_amplitude_of_surface_temperature": { + "type": "number", + "units": "deltaC", + "minimum": 0.0, + "note": "Annual average surface temperature variation from average. If left blank the Site:GroundTemperature:Shallow object must be included in the input The soil temperature, amplitude, and phase shift must all be included or omitted together" + }, + "phase_shift_of_minimum_surface_temperature": { + "type": "number", + "units": "days", + "minimum": 0.0, + "maximum": 365.0, + "exclusiveMaximum": true, + "note": "The phase shift of minimum surface temperature, or the day of the year when the minimum surface temperature occurs. If left blank the Site:GroundTemperature:Shallow object must be included in the input The soil temperature, amplitude, and phase shift must all be included or omitted together" + } + }, + "required": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "UndisturbedGroundTempModels" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "soil_thermal_conductivity": { + "field_name": "Soil Thermal Conductivity", + "field_type": "n" + }, + "soil_density": { + "field_name": "Soil Density", + "field_type": "n" + }, + "soil_specific_heat": { + "field_name": "Soil Specific Heat", + "field_type": "n" + }, + "average_soil_surface_temperature": { + "field_name": "Average Soil Surface Temperature", + "field_type": "n" + }, + "average_amplitude_of_surface_temperature": { + "field_name": "Average Amplitude of Surface Temperature", + "field_type": "n" + }, + "phase_shift_of_minimum_surface_temperature": { + "field_name": "Phase Shift of Minimum Surface Temperature", + "field_type": "n" + } + }, + "fields": [ + "name", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "average_soil_surface_temperature", + "average_amplitude_of_surface_temperature", + "phase_shift_of_minimum_surface_temperature" + ], + "alphas": { + "fields": [ + "name" + ] + }, + "numerics": { + "fields": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "average_soil_surface_temperature", + "average_amplitude_of_surface_temperature", + "phase_shift_of_minimum_surface_temperature" + ] + } + }, + "type": "object", + "memo": "Undisturbed ground temperature object using the Kusuda-Achenbach 1965 correlation.", + "min_fields": 7.0 + }, + "Site:GroundTemperature:Undisturbed:Xing": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "soil_thermal_conductivity": { + "type": "number", + "units": "W/m-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_density": { + "type": "number", + "units": "kg/m3", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_specific_heat": { + "type": "number", + "units": "J/kg-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "average_soil_surface_tempeature": { + "type": "number", + "units": "C" + }, + "soil_surface_temperature_amplitude_1": { + "type": "number", + "units": "deltaC" + }, + "soil_surface_temperature_amplitude_2": { + "type": "number", + "units": "deltaC" + }, + "phase_shift_of_temperature_amplitude_1": { + "type": "number", + "units": "days", + "maximum": 365.0, + "exclusiveMaximum": true + }, + "phase_shift_of_temperature_amplitude_2": { + "type": "number", + "units": "days", + "maximum": 365.0, + "exclusiveMaximum": true + } + }, + "required": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "average_soil_surface_tempeature", + "soil_surface_temperature_amplitude_1", + "soil_surface_temperature_amplitude_2", + "phase_shift_of_temperature_amplitude_1", + "phase_shift_of_temperature_amplitude_2" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "UndisturbedGroundTempModels" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "soil_thermal_conductivity": { + "field_name": "Soil Thermal Conductivity", + "field_type": "n" + }, + "soil_density": { + "field_name": "Soil Density", + "field_type": "n" + }, + "soil_specific_heat": { + "field_name": "Soil Specific Heat", + "field_type": "n" + }, + "average_soil_surface_tempeature": { + "field_name": "Average Soil Surface Tempeature", + "field_type": "n" + }, + "soil_surface_temperature_amplitude_1": { + "field_name": "Soil Surface Temperature Amplitude 1", + "field_type": "n" + }, + "soil_surface_temperature_amplitude_2": { + "field_name": "Soil Surface Temperature Amplitude 2", + "field_type": "n" + }, + "phase_shift_of_temperature_amplitude_1": { + "field_name": "Phase Shift of Temperature Amplitude 1", + "field_type": "n" + }, + "phase_shift_of_temperature_amplitude_2": { + "field_name": "Phase Shift of Temperature Amplitude 2", + "field_type": "n" + } + }, + "fields": [ + "name", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "average_soil_surface_tempeature", + "soil_surface_temperature_amplitude_1", + "soil_surface_temperature_amplitude_2", + "phase_shift_of_temperature_amplitude_1", + "phase_shift_of_temperature_amplitude_2" + ], + "alphas": { + "fields": [ + "name" + ] + }, + "numerics": { + "fields": [ + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "average_soil_surface_tempeature", + "soil_surface_temperature_amplitude_1", + "soil_surface_temperature_amplitude_2", + "phase_shift_of_temperature_amplitude_1", + "phase_shift_of_temperature_amplitude_2" + ] + } + }, + "type": "object", + "memo": "Undisturbed ground temperature object using the Xing 2014 2 harmonic parameter model.", + "min_fields": 9.0 + }, + "Site:GroundDomain:Slab": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "ground_domain_depth": { + "type": "number", + "default": 10.0, + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "aspect_ratio": { + "type": "number", + "default": 1.0 + }, + "perimeter_offset": { + "type": "number", + "default": 5.0, + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_thermal_conductivity": { + "type": "number", + "default": 1.5, + "units": "W/m-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_density": { + "type": "number", + "default": 2800.0, + "units": "kg/m3", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_specific_heat": { + "type": "number", + "default": 850.0, + "units": "J/kg-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_moisture_content_volume_fraction": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 30.0 + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 50.0 + }, + "undisturbed_ground_temperature_model_type": { + "type": "string", + "enum": [ + "Site:GroundTemperature:Undisturbed:FiniteDifference", + "Site:GroundTemperature:Undisturbed:KusudaAchenbach", + "Site:GroundTemperature:Undisturbed:Xing" + ] + }, + "undisturbed_ground_temperature_model_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "UndisturbedGroundTempModels" + ] + }, + "evapotranspiration_ground_cover_parameter": { + "type": "number", + "minimum": 0.0, + "maximum": 1.5, + "default": 0.4, + "note": "This specifies the ground cover effects during evapotranspiration calculations. The value roughly represents the following cases: = 0 : concrete or other solid, non-permeable ground surface material = 0.5 : short grass, much like a manicured lawn = 1 : standard reference state (12 cm grass) = 1.5 : wild growth" + }, + "slab_boundary_condition_model_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "OSCMNames" + ] + }, + "slab_location": { + "type": "string", + "enum": [ + "InGrade", + "OnGrade" + ], + "note": "This field specifies whether the slab is located \"in-grade\" or \"on-grade\"" + }, + "slab_material_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "MaterialName" + ], + "note": "Only applicable for the in-grade case" + }, + "horizontal_insulation": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No", + "note": "This field specifies the presence of insulation beneath the slab. Only required for in-grade case." + }, + "horizontal_insulation_material_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "MaterialName" + ], + "note": "This field specifies the horizontal insulation material." + }, + "horizontal_insulation_extents": { + "type": "string", + "enum": [ + "", + "Full", + "Perimeter" + ], + "default": "Full", + "note": "This field specifies whether the horizontal insulation fully insulates the surface or is perimeter only insulation" + }, + "perimeter_insulation_width": { + "type": "number", + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "This field specifies the width of the underfloor perimeter insulation" + }, + "vertical_insulation": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No", + "note": "This field specifies the presence of vertical insulation at the slab edge." + }, + "vertical_insulation_material_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "MaterialName" + ], + "note": "This field specifies the vertical insulation material." + }, + "vertical_insulation_depth": { + "type": "number", + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Only used when including vertical insulation This field specifies the depth of the vertical insulation" + }, + "simulation_timestep": { + "type": "string", + "enum": [ + "", + "Hourly", + "Timestep" + ], + "default": "Hourly", + "note": "This field specifies the ground domain simulation timestep." + }, + "geometric_mesh_coefficient": { + "type": "number", + "minimum": 1.0, + "maximum": 2.0, + "default": 1.6 + }, + "mesh_density_parameter": { + "type": "number", + "minimum": 4.0, + "default": 6.0 + } + }, + "required": [ + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "slab_boundary_condition_model_name", + "slab_location" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "ground_domain_depth": { + "field_name": "Ground Domain Depth", + "field_type": "n" + }, + "aspect_ratio": { + "field_name": "Aspect Ratio", + "field_type": "n" + }, + "perimeter_offset": { + "field_name": "Perimeter Offset", + "field_type": "n" + }, + "soil_thermal_conductivity": { + "field_name": "Soil Thermal Conductivity", + "field_type": "n" + }, + "soil_density": { + "field_name": "Soil Density", + "field_type": "n" + }, + "soil_specific_heat": { + "field_name": "Soil Specific Heat", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction": { + "field_name": "Soil Moisture Content Volume Fraction", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "field_name": "Soil Moisture Content Volume Fraction at Saturation", + "field_type": "n" + }, + "undisturbed_ground_temperature_model_type": { + "field_name": "Undisturbed Ground Temperature Model Type", + "field_type": "a" + }, + "undisturbed_ground_temperature_model_name": { + "field_name": "Undisturbed Ground Temperature Model Name", + "field_type": "a" + }, + "evapotranspiration_ground_cover_parameter": { + "field_name": "Evapotranspiration Ground Cover Parameter", + "field_type": "n" + }, + "slab_boundary_condition_model_name": { + "field_name": "Slab Boundary Condition Model Name", + "field_type": "a" + }, + "slab_location": { + "field_name": "Slab Location", + "field_type": "a" + }, + "slab_material_name": { + "field_name": "Slab Material Name", + "field_type": "a" + }, + "horizontal_insulation": { + "field_name": "Horizontal Insulation", + "field_type": "a" + }, + "horizontal_insulation_material_name": { + "field_name": "Horizontal Insulation Material Name", + "field_type": "a" + }, + "horizontal_insulation_extents": { + "field_name": "Horizontal Insulation Extents", + "field_type": "a" + }, + "perimeter_insulation_width": { + "field_name": "Perimeter Insulation Width", + "field_type": "n" + }, + "vertical_insulation": { + "field_name": "Vertical Insulation", + "field_type": "a" + }, + "vertical_insulation_material_name": { + "field_name": "Vertical Insulation Material Name", + "field_type": "a" + }, + "vertical_insulation_depth": { + "field_name": "Vertical Insulation Depth", + "field_type": "n" + }, + "simulation_timestep": { + "field_name": "Simulation Timestep", + "field_type": "a" + }, + "geometric_mesh_coefficient": { + "field_name": "Geometric Mesh Coefficient", + "field_type": "n" + }, + "mesh_density_parameter": { + "field_name": "Mesh Density Parameter", + "field_type": "n" + } + }, + "fields": [ + "name", + "ground_domain_depth", + "aspect_ratio", + "perimeter_offset", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "evapotranspiration_ground_cover_parameter", + "slab_boundary_condition_model_name", + "slab_location", + "slab_material_name", + "horizontal_insulation", + "horizontal_insulation_material_name", + "horizontal_insulation_extents", + "perimeter_insulation_width", + "vertical_insulation", + "vertical_insulation_material_name", + "vertical_insulation_depth", + "simulation_timestep", + "geometric_mesh_coefficient", + "mesh_density_parameter" + ], + "alphas": { + "fields": [ + "name", + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "slab_boundary_condition_model_name", + "slab_location", + "slab_material_name", + "horizontal_insulation", + "horizontal_insulation_material_name", + "horizontal_insulation_extents", + "vertical_insulation", + "vertical_insulation_material_name", + "simulation_timestep" + ] + }, + "numerics": { + "fields": [ + "ground_domain_depth", + "aspect_ratio", + "perimeter_offset", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "evapotranspiration_ground_cover_parameter", + "perimeter_insulation_width", + "vertical_insulation_depth", + "geometric_mesh_coefficient", + "mesh_density_parameter" + ] + } + }, + "type": "object", + "memo": "Ground-coupled slab model for on-grade and in-grade cases with or without insulation." + }, + "Site:GroundDomain:Basement": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "ground_domain_depth": { + "type": "number", + "default": 10.0, + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "The depth from ground surface to the deep ground boundary of the domain." + }, + "aspect_ratio": { + "type": "number", + "default": 1.0, + "note": "This defines the height to width ratio of the basement zone." + }, + "perimeter_offset": { + "type": "number", + "default": 5.0, + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "The distance from the basement wall edge to the edge of the ground domain" + }, + "soil_thermal_conductivity": { + "type": "number", + "default": 1.5, + "units": "W/m-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_density": { + "type": "number", + "default": 2800.0, + "units": "kg/m3", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_specific_heat": { + "type": "number", + "default": 850.0, + "units": "J/kg-K", + "minimum": 0.0, + "exclusiveMinimum": true + }, + "soil_moisture_content_volume_fraction": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 30.0 + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "type": "number", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 50.0 + }, + "undisturbed_ground_temperature_model_type": { + "type": "string", + "enum": [ + "Site:GroundTemperature:Undisturbed:FiniteDifference", + "Site:GroundTemperature:Undisturbed:KusudaAchenbach", + "Site:GroundTemperature:Undisturbed:Xing" + ] + }, + "undisturbed_ground_temperature_model_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "UndisturbedGroundTempModels" + ] + }, + "evapotranspiration_ground_cover_parameter": { + "type": "number", + "minimum": 0.0, + "maximum": 1.5, + "default": 0.4, + "note": "This specifies the ground cover effects during evapotranspiration calculations. The value roughly represents the following cases: = 0 : concrete or other solid, non-permeable ground surface material = 0.5 : short grass, much like a manicured lawn = 1 : standard reference state (12 cm grass) = 1.5 : wild growth" + }, + "basement_floor_boundary_condition_model_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "OSCMNames" + ] + }, + "horizontal_insulation": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No", + "note": "This field specifies the presence of insulation beneath the basement floor." + }, + "horizontal_insulation_material_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "MaterialName" + ] + }, + "horizontal_insulation_extents": { + "type": "string", + "enum": [ + "", + "Full", + "Perimeter" + ], + "default": "Full", + "note": "This field specifies whether the horizontal insulation fully insulates the surface or is perimeter only insulation" + }, + "perimeter_horizontal_insulation_width": { + "type": "number", + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Width of horizontal perimeter insulation measured from foundation wall inside surface." + }, + "basement_wall_depth": { + "type": "number", + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Depth measured from ground surface." + }, + "basement_wall_boundary_condition_model_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "OSCMNames" + ] + }, + "vertical_insulation": { + "type": "string", + "enum": [ + "", + "No", + "Yes" + ], + "default": "No" + }, + "basement_wall_vertical_insulation_material_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "MaterialName" + ] + }, + "vertical_insulation_depth": { + "type": "number", + "units": "m", + "minimum": 0.0, + "exclusiveMinimum": true, + "note": "Depth measured from the ground surface." + }, + "simulation_timestep": { + "type": "string", + "enum": [ + "", + "Hourly", + "Timestep" + ], + "default": "Hourly", + "note": "This field specifies the basement domain simulation interval." + }, + "mesh_density_parameter": { + "type": "number", + "default": 4.0, + "minimum": 2.0 + } + }, + "required": [ + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "basement_floor_boundary_condition_model_name", + "basement_wall_boundary_condition_model_name" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "ground_domain_depth": { + "field_name": "Ground Domain Depth", + "field_type": "n" + }, + "aspect_ratio": { + "field_name": "Aspect Ratio", + "field_type": "n" + }, + "perimeter_offset": { + "field_name": "Perimeter Offset", + "field_type": "n" + }, + "soil_thermal_conductivity": { + "field_name": "Soil Thermal Conductivity", + "field_type": "n" + }, + "soil_density": { + "field_name": "Soil Density", + "field_type": "n" + }, + "soil_specific_heat": { + "field_name": "Soil Specific Heat", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction": { + "field_name": "Soil Moisture Content Volume Fraction", + "field_type": "n" + }, + "soil_moisture_content_volume_fraction_at_saturation": { + "field_name": "Soil Moisture Content Volume Fraction at Saturation", + "field_type": "n" + }, + "undisturbed_ground_temperature_model_type": { + "field_name": "Undisturbed Ground Temperature Model Type", + "field_type": "a" + }, + "undisturbed_ground_temperature_model_name": { + "field_name": "Undisturbed Ground Temperature Model Name", + "field_type": "a" + }, + "evapotranspiration_ground_cover_parameter": { + "field_name": "Evapotranspiration Ground Cover Parameter", + "field_type": "n" + }, + "basement_floor_boundary_condition_model_name": { + "field_name": "Basement Floor Boundary Condition Model Name", + "field_type": "a" + }, + "horizontal_insulation": { + "field_name": "Horizontal Insulation", + "field_type": "a" + }, + "horizontal_insulation_material_name": { + "field_name": "Horizontal Insulation Material Name", + "field_type": "a" + }, + "horizontal_insulation_extents": { + "field_name": "Horizontal Insulation Extents", + "field_type": "a" + }, + "perimeter_horizontal_insulation_width": { + "field_name": "Perimeter Horizontal Insulation Width", + "field_type": "n" + }, + "basement_wall_depth": { + "field_name": "Basement Wall Depth", + "field_type": "n" + }, + "basement_wall_boundary_condition_model_name": { + "field_name": "Basement Wall Boundary Condition Model Name", + "field_type": "a" + }, + "vertical_insulation": { + "field_name": "Vertical Insulation", + "field_type": "a" + }, + "basement_wall_vertical_insulation_material_name": { + "field_name": "Basement Wall Vertical Insulation Material Name", + "field_type": "a" + }, + "vertical_insulation_depth": { + "field_name": "Vertical Insulation Depth", + "field_type": "n" + }, + "simulation_timestep": { + "field_name": "Simulation Timestep", + "field_type": "a" + }, + "mesh_density_parameter": { + "field_name": "Mesh Density Parameter", + "field_type": "n" + } + }, + "fields": [ + "name", + "ground_domain_depth", + "aspect_ratio", + "perimeter_offset", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "evapotranspiration_ground_cover_parameter", + "basement_floor_boundary_condition_model_name", + "horizontal_insulation", + "horizontal_insulation_material_name", + "horizontal_insulation_extents", + "perimeter_horizontal_insulation_width", + "basement_wall_depth", + "basement_wall_boundary_condition_model_name", + "vertical_insulation", + "basement_wall_vertical_insulation_material_name", + "vertical_insulation_depth", + "simulation_timestep", + "mesh_density_parameter" + ], + "alphas": { + "fields": [ + "name", + "undisturbed_ground_temperature_model_type", + "undisturbed_ground_temperature_model_name", + "basement_floor_boundary_condition_model_name", + "horizontal_insulation", + "horizontal_insulation_material_name", + "horizontal_insulation_extents", + "basement_wall_boundary_condition_model_name", + "vertical_insulation", + "basement_wall_vertical_insulation_material_name", + "simulation_timestep" + ] + }, + "numerics": { + "fields": [ + "ground_domain_depth", + "aspect_ratio", + "perimeter_offset", + "soil_thermal_conductivity", + "soil_density", + "soil_specific_heat", + "soil_moisture_content_volume_fraction", + "soil_moisture_content_volume_fraction_at_saturation", + "evapotranspiration_ground_cover_parameter", + "perimeter_horizontal_insulation_width", + "basement_wall_depth", + "vertical_insulation_depth", + "mesh_density_parameter" + ] + } + }, + "type": "object", + "memo": "Ground-coupled basement model for simulating basements or other underground zones." + }, + "Site:GroundReflectance": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "january_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "february_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "march_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "april_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "may_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "june_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "july_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "august_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "september_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "october_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "november_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + }, + "december_ground_reflectance": { + "type": "number", + "default": 0.2, + "minimum": 0.0, + "maximum": 1.0, + "units": "dimensionless" + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "january_ground_reflectance": { + "field_name": "January Ground Reflectance", + "field_type": "n" + }, + "february_ground_reflectance": { + "field_name": "February Ground Reflectance", + "field_type": "n" + }, + "march_ground_reflectance": { + "field_name": "March Ground Reflectance", + "field_type": "n" + }, + "april_ground_reflectance": { + "field_name": "April Ground Reflectance", + "field_type": "n" + }, + "may_ground_reflectance": { + "field_name": "May Ground Reflectance", + "field_type": "n" + }, + "june_ground_reflectance": { + "field_name": "June Ground Reflectance", + "field_type": "n" + }, + "july_ground_reflectance": { + "field_name": "July Ground Reflectance", + "field_type": "n" + }, + "august_ground_reflectance": { + "field_name": "August Ground Reflectance", + "field_type": "n" + }, + "september_ground_reflectance": { + "field_name": "September Ground Reflectance", + "field_type": "n" + }, + "october_ground_reflectance": { + "field_name": "October Ground Reflectance", + "field_type": "n" + }, + "november_ground_reflectance": { + "field_name": "November Ground Reflectance", + "field_type": "n" + }, + "december_ground_reflectance": { + "field_name": "December Ground Reflectance", + "field_type": "n" + } + }, + "fields": [ + "january_ground_reflectance", + "february_ground_reflectance", + "march_ground_reflectance", + "april_ground_reflectance", + "may_ground_reflectance", + "june_ground_reflectance", + "july_ground_reflectance", + "august_ground_reflectance", + "september_ground_reflectance", + "october_ground_reflectance", + "november_ground_reflectance", + "december_ground_reflectance" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "january_ground_reflectance", + "february_ground_reflectance", + "march_ground_reflectance", + "april_ground_reflectance", + "may_ground_reflectance", + "june_ground_reflectance", + "july_ground_reflectance", + "august_ground_reflectance", + "september_ground_reflectance", + "october_ground_reflectance", + "november_ground_reflectance", + "december_ground_reflectance" + ] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "Specifies the ground reflectance values used to calculate ground reflected solar. The ground reflectance can be further modified when snow is on the ground by Site:GroundReflectance:SnowModifier.", + "min_fields": 12.0, + "format": "singleLine" + }, + "Site:GroundReflectance:SnowModifier": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "ground_reflected_solar_modifier": { + "type": "number", + "minimum": 0.0, + "default": 1.0, + "note": "Value for modifying the \"normal\" ground reflectance when Snow is on ground when calculating the \"Ground Reflected Solar Radiation Value\" a value of 1.0 here uses the \"normal\" ground reflectance Ground Reflected Solar = (BeamSolar*CosSunZenith + DiffuseSolar)*GroundReflectance This would be further modified by the Snow Ground Reflectance Modifier when Snow was on the ground When Snow on ground, effective GroundReflectance is normal GroundReflectance*\"Ground Reflectance Snow Modifier\" Ground Reflectance achieved in this manner will be restricted to [0.0,1.0]" + }, + "daylighting_ground_reflected_solar_modifier": { + "type": "number", + "minimum": 0.0, + "default": 1.0, + "note": "Value for modifying the \"normal\" daylighting ground reflectance when Snow is on ground when calculating the \"Ground Reflected Solar Radiation Value\" a value of 1.0 here uses the \"normal\" ground reflectance Ground Reflected Solar = (BeamSolar*CosSunZenith + DiffuseSolar)*GroundReflectance This would be further modified by the Snow Ground Reflectance Modifier when Snow was on the ground When Snow on ground, effective GroundReflectance is normal GroundReflectance*\"Daylighting Ground Reflectance Snow Modifier\" Ground Reflectance achieved in this manner will be restricted to [0.0,1.0]" + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "ground_reflected_solar_modifier": { + "field_name": "Ground Reflected Solar Modifier", + "field_type": "n" + }, + "daylighting_ground_reflected_solar_modifier": { + "field_name": "Daylighting Ground Reflected Solar Modifier", + "field_type": "n" + } + }, + "fields": [ + "ground_reflected_solar_modifier", + "daylighting_ground_reflected_solar_modifier" + ], + "alphas": { + "fields": [] + }, + "numerics": { + "fields": [ + "ground_reflected_solar_modifier", + "daylighting_ground_reflected_solar_modifier" + ] + } + }, + "type": "object", + "memo": "Specifies ground reflectance multipliers when snow resident on the ground. These multipliers are applied to the \"normal\" ground reflectances specified in Site:GroundReflectance." + }, + "Site:WaterMainsTemperature": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "calculation_method": { + "type": "string", + "enum": [ + "", + "Correlation", + "CorrelationFromWeatherFile", + "Schedule" + ], + "default": "CorrelationFromWeatherFile", + "note": "If calculation method is CorrelationFromWeatherFile, the two numeric input fields are ignored. Instead, EnergyPlus calculates them from weather file." + }, + "temperature_schedule_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ] + }, + "annual_average_outdoor_air_temperature": { + "type": "number", + "note": "If calculation method is CorrelationFromWeatherFile or Schedule, this input field is ignored.", + "units": "C" + }, + "maximum_difference_in_monthly_average_outdoor_air_temperatures": { + "type": "number", + "note": "If calculation method is CorrelationFromWeatherFile or Schedule, this input field is ignored.", + "units": "deltaC", + "minimum": 0.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "calculation_method": { + "field_name": "Calculation Method", + "field_type": "a" + }, + "temperature_schedule_name": { + "field_name": "Temperature Schedule Name", + "field_type": "a" + }, + "annual_average_outdoor_air_temperature": { + "field_name": "Annual Average Outdoor Air Temperature", + "field_type": "n" + }, + "maximum_difference_in_monthly_average_outdoor_air_temperatures": { + "field_name": "Maximum Difference In Monthly Average Outdoor Air Temperatures", + "field_type": "n" + } + }, + "fields": [ + "calculation_method", + "temperature_schedule_name", + "annual_average_outdoor_air_temperature", + "maximum_difference_in_monthly_average_outdoor_air_temperatures" + ], + "alphas": { + "fields": [ + "calculation_method", + "temperature_schedule_name" + ] + }, + "numerics": { + "fields": [ + "annual_average_outdoor_air_temperature", + "maximum_difference_in_monthly_average_outdoor_air_temperatures" + ] + } + }, + "type": "object", + "memo": "Used to calculate water mains temperatures delivered by underground water main pipes. Water mains temperatures are a function of outdoor climate conditions and vary with time of year." + }, + "Site:Precipitation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "precipitation_model_type": { + "type": "string", + "enum": [ + "ScheduleAndDesignLevel" + ] + }, + "design_level_for_total_annual_precipitation": { + "type": "number", + "note": "meters of water per year used for design level", + "units": "m/yr" + }, + "precipitation_rates_schedule_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ], + "note": "Schedule values in meters of water per hour values should be non-negative" + }, + "average_total_annual_precipitation": { + "type": "number", + "note": "meters of water per year from average weather statistics", + "minimum": 0.0, + "units": "m/yr" + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "precipitation_model_type": { + "field_name": "Precipitation Model Type", + "field_type": "a" + }, + "design_level_for_total_annual_precipitation": { + "field_name": "Design Level for Total Annual Precipitation", + "field_type": "n" + }, + "precipitation_rates_schedule_name": { + "field_name": "Precipitation Rates Schedule Name", + "field_type": "a" + }, + "average_total_annual_precipitation": { + "field_name": "Average Total Annual Precipitation", + "field_type": "n" + } + }, + "fields": [ + "precipitation_model_type", + "design_level_for_total_annual_precipitation", + "precipitation_rates_schedule_name", + "average_total_annual_precipitation" + ], + "alphas": { + "fields": [ + "precipitation_model_type", + "precipitation_rates_schedule_name" + ] + }, + "numerics": { + "fields": [ + "design_level_for_total_annual_precipitation", + "average_total_annual_precipitation" + ] + } + }, + "type": "object", + "memo": "Used to describe the amount of water precipitation at the building site. Precipitation includes both rain and the equivalent water content of snow." + }, + "RoofIrrigation": { + "patternProperties": { + ".*": { + "type": "object", + "properties": { + "irrigation_model_type": { + "type": "string", + "enum": [ + "Schedule", + "SmartSchedule" + ], + "note": "SmartSchedule will not allow irrigation when soil is already moist. Current threshold set at 30% of saturation." + }, + "irrigation_rate_schedule_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleNames" + ], + "note": "Schedule values in meters of water per hour values should be non-negative" + }, + "irrigation_maximum_saturation_threshold": { + "type": "number", + "note": "Used with SmartSchedule to set the saturation level at which no irrigation is allowed.", + "units": "percent", + "minimum": 0.0, + "maximum": 100.0, + "default": 40.0 + } + } + } + }, + "group": "Location and Climate", + "legacy_idd": { + "field_info": { + "irrigation_model_type": { + "field_name": "Irrigation Model Type", + "field_type": "a" + }, + "irrigation_rate_schedule_name": { + "field_name": "Irrigation Rate Schedule Name", + "field_type": "a" + }, + "irrigation_maximum_saturation_threshold": { + "field_name": "Irrigation Maximum Saturation Threshold", + "field_type": "n" + } + }, + "fields": [ + "irrigation_model_type", + "irrigation_rate_schedule_name", + "irrigation_maximum_saturation_threshold" + ], + "alphas": { + "fields": [ + "irrigation_model_type", + "irrigation_rate_schedule_name" + ] + }, + "numerics": { + "fields": [ + "irrigation_maximum_saturation_threshold" + ] + } + }, + "type": "object", + "memo": "Used to describe the amount of irrigation on the ecoroof surface over the course of the simulation runperiod." + }, + "Site:SolarAndVisibleSpectrum": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "spectrum_data_method": { + "type": "string", + "note": "The method specifies which of the solar and visible spectrum data to use in the calculations. Choices: Default - existing hard-wired spectrum data in EnergyPlus. UserDefined - user specified spectrum data referenced by the next two fields", + "enum": [ + "", + "Default", + "UserDefined" + ], + "default": "Default" + }, + "solar_spectrum_data_object_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "SpectrumDataNames" + ] + }, + "visible_spectrum_data_object_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "SpectrumDataNames" + ] + } + } + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "spectrum_data_method": { + "field_name": "Spectrum Data Method", + "field_type": "a" + }, + "solar_spectrum_data_object_name": { + "field_name": "Solar Spectrum Data Object Name", + "field_type": "a" + }, + "visible_spectrum_data_object_name": { + "field_name": "Visible Spectrum Data Object Name", + "field_type": "a" + } + }, + "fields": [ + "name", + "spectrum_data_method", + "solar_spectrum_data_object_name", + "visible_spectrum_data_object_name" + ], + "alphas": { + "fields": [ + "name", + "spectrum_data_method", + "solar_spectrum_data_object_name", + "visible_spectrum_data_object_name" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "maxProperties": 1, + "memo": "If this object is omitted, the default solar and visible spectrum data will be used." + }, + "Site:SpectrumData": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "spectrum_data_type": { + "type": "string", + "enum": [ + "Solar", + "Visible" + ] + }, + "wavelength": { + "type": "number", + "units": "micron" + }, + "spectrum": { + "type": "number" + }, + "wavelength_1": { + "type": "number", + "units": "micron" + }, + "spectrum_2": { + "type": "number" + }, + "extensions": { + "type": "array", + "items": { + "properties": { + "wavelength": { + "type": "number", + "units": "micron" + }, + "spectrum": { + "type": "number" + } + }, + "type": "object" + } + } + }, + "required": [ + "spectrum_data_type" + ] + } + }, + "group": "Location and Climate", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "SpectrumDataNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "spectrum_data_type": { + "field_name": "Spectrum Data Type", + "field_type": "a" + }, + "wavelength": { + "field_name": "Wavelength", + "field_type": "n" + }, + "spectrum": { + "field_name": "Spectrum", + "field_type": "n" + }, + "wavelength_1": { + "field_name": "Wavelength", + "field_type": "n" + }, + "spectrum_2": { + "field_name": "Spectrum", + "field_type": "n" + } + }, + "fields": [ + "name", + "spectrum_data_type", + "wavelength", + "spectrum", + "wavelength_1", + "spectrum_2" + ], + "alphas": { + "fields": [ + "name", + "spectrum_data_type" + ] + }, + "numerics": { + "fields": [ + "wavelength", + "spectrum", + "wavelength_1", + "spectrum_2" + ], + "extensions": [ + "wavelength", + "spectrum" + ] + }, + "extensibles": [ + "wavelength", + "spectrum" + ], + "extension": "extensions" + }, + "type": "object", + "memo": "Spectrum Data Type is followed by up to 107 sets of normal-incidence measured values of [wavelength, spectrum] for wavelengths covering the solar (0.25 to 2.5 microns) or visible spectrum (0.38 to 0.78 microns)", + "min_fields": 8.0, + "extensible_size": 2.0 + }, + "ScheduleTypeLimits": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "lower_limit_value": { + "type": "number", + "note": "lower limit (real or integer) for the Schedule Type. e.g. if fraction, this is 0.0", + "unitsBasedOnField": "unit_type" + }, + "upper_limit_value": { + "type": "number", + "note": "upper limit (real or integer) for the Schedule Type. e.g. if fraction, this is 1.0", + "unitsBasedOnField": "unit_type" + }, + "numeric_type": { + "type": "string", + "note": "Numeric type is either Continuous (all numbers within the min and max are valid or Discrete (only integer numbers between min and max are valid. (Could also allow REAL and INTEGER to mean the same things)", + "enum": [ + "Continuous", + "Discrete" + ] + }, + "unit_type": { + "type": "string", + "note": "Temperature (C or F) DeltaTemperature (C or F) PrecipitationRate (m/hr or ft/hr) Angle (degrees) Convection Coefficient (W/m2-K or Btu/sqft-hr-F) Activity Level (W/person) Velocity (m/s or ft/min) Capacity (W or Btu/h) Power (W)", + "enum": [ + "", + "ActivityLevel", + "Angle", + "Availability", + "Capacity", + "Control", + "ConvectionCoefficient", + "DeltaTemperature", + "Dimensionless", + "Mode", + "Percent", + "Power", + "PrecipitationRate", + "Temperature", + "Velocity" + ], + "default": "Dimensionless" + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "ScheduleTypeLimitsNames" + ], + "note": "used to validate schedule types in various schedule objects" + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "lower_limit_value": { + "field_name": "Lower Limit Value", + "field_type": "n" + }, + "upper_limit_value": { + "field_name": "Upper Limit Value", + "field_type": "n" + }, + "numeric_type": { + "field_name": "Numeric Type", + "field_type": "a" + }, + "unit_type": { + "field_name": "Unit Type", + "field_type": "a" + } + }, + "fields": [ + "name", + "lower_limit_value", + "upper_limit_value", + "numeric_type", + "unit_type" + ], + "alphas": { + "fields": [ + "name", + "numeric_type", + "unit_type" + ] + }, + "numerics": { + "fields": [ + "lower_limit_value", + "upper_limit_value" + ] + } + }, + "type": "object", + "memo": "ScheduleTypeLimits specifies the data types and limits for the values contained in schedules" + }, + "Schedule:Day:Hourly": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "schedule_type_limits_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleTypeLimitsNames" + ] + }, + "hour_1": { + "type": "number", + "default": 0.0 + }, + "hour_2": { + "type": "number", + "default": 0.0 + }, + "hour_3": { + "type": "number", + "default": 0.0 + }, + "hour_4": { + "type": "number", + "default": 0.0 + }, + "hour_5": { + "type": "number", + "default": 0.0 + }, + "hour_6": { + "type": "number", + "default": 0.0 + }, + "hour_7": { + "type": "number", + "default": 0.0 + }, + "hour_8": { + "type": "number", + "default": 0.0 + }, + "hour_9": { + "type": "number", + "default": 0.0 + }, + "hour_10": { + "type": "number", + "default": 0.0 + }, + "hour_11": { + "type": "number", + "default": 0.0 + }, + "hour_12": { + "type": "number", + "default": 0.0 + }, + "hour_13": { + "type": "number", + "default": 0.0 + }, + "hour_14": { + "type": "number", + "default": 0.0 + }, + "hour_15": { + "type": "number", + "default": 0.0 + }, + "hour_16": { + "type": "number", + "default": 0.0 + }, + "hour_17": { + "type": "number", + "default": 0.0 + }, + "hour_18": { + "type": "number", + "default": 0.0 + }, + "hour_19": { + "type": "number", + "default": 0.0 + }, + "hour_20": { + "type": "number", + "default": 0.0 + }, + "hour_21": { + "type": "number", + "default": 0.0 + }, + "hour_22": { + "type": "number", + "default": 0.0 + }, + "hour_23": { + "type": "number", + "default": 0.0 + }, + "hour_24": { + "type": "number", + "default": 0.0 + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "DayScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "schedule_type_limits_name": { + "field_name": "Schedule Type Limits Name", + "field_type": "a" + }, + "hour_1": { + "field_name": "Hour 1", + "field_type": "n" + }, + "hour_2": { + "field_name": "Hour 2", + "field_type": "n" + }, + "hour_3": { + "field_name": "Hour 3", + "field_type": "n" + }, + "hour_4": { + "field_name": "Hour 4", + "field_type": "n" + }, + "hour_5": { + "field_name": "Hour 5", + "field_type": "n" + }, + "hour_6": { + "field_name": "Hour 6", + "field_type": "n" + }, + "hour_7": { + "field_name": "Hour 7", + "field_type": "n" + }, + "hour_8": { + "field_name": "Hour 8", + "field_type": "n" + }, + "hour_9": { + "field_name": "Hour 9", + "field_type": "n" + }, + "hour_10": { + "field_name": "Hour 10", + "field_type": "n" + }, + "hour_11": { + "field_name": "Hour 11", + "field_type": "n" + }, + "hour_12": { + "field_name": "Hour 12", + "field_type": "n" + }, + "hour_13": { + "field_name": "Hour 13", + "field_type": "n" + }, + "hour_14": { + "field_name": "Hour 14", + "field_type": "n" + }, + "hour_15": { + "field_name": "Hour 15", + "field_type": "n" + }, + "hour_16": { + "field_name": "Hour 16", + "field_type": "n" + }, + "hour_17": { + "field_name": "Hour 17", + "field_type": "n" + }, + "hour_18": { + "field_name": "Hour 18", + "field_type": "n" + }, + "hour_19": { + "field_name": "Hour 19", + "field_type": "n" + }, + "hour_20": { + "field_name": "Hour 20", + "field_type": "n" + }, + "hour_21": { + "field_name": "Hour 21", + "field_type": "n" + }, + "hour_22": { + "field_name": "Hour 22", + "field_type": "n" + }, + "hour_23": { + "field_name": "Hour 23", + "field_type": "n" + }, + "hour_24": { + "field_name": "Hour 24", + "field_type": "n" + } + }, + "fields": [ + "name", + "schedule_type_limits_name", + "hour_1", + "hour_2", + "hour_3", + "hour_4", + "hour_5", + "hour_6", + "hour_7", + "hour_8", + "hour_9", + "hour_10", + "hour_11", + "hour_12", + "hour_13", + "hour_14", + "hour_15", + "hour_16", + "hour_17", + "hour_18", + "hour_19", + "hour_20", + "hour_21", + "hour_22", + "hour_23", + "hour_24" + ], + "alphas": { + "fields": [ + "name", + "schedule_type_limits_name" + ] + }, + "numerics": { + "fields": [ + "hour_1", + "hour_2", + "hour_3", + "hour_4", + "hour_5", + "hour_6", + "hour_7", + "hour_8", + "hour_9", + "hour_10", + "hour_11", + "hour_12", + "hour_13", + "hour_14", + "hour_15", + "hour_16", + "hour_17", + "hour_18", + "hour_19", + "hour_20", + "hour_21", + "hour_22", + "hour_23", + "hour_24" + ] + } + }, + "type": "object", + "memo": "A Schedule:Day:Hourly contains 24 values for each hour of the day.", + "min_fields": 26.0 + }, + "Schedule:Day:Interval": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "schedule_type_limits_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleTypeLimitsNames" + ] + }, + "interpolate_to_timestep": { + "type": "string", + "note": "when the interval does not match the user specified timestep a Average choice will average between the intervals request (to timestep resolution. A No choice will use the interval value at the simulation timestep without regard to if it matches the boundary or not. A Linear choice will interpolate linearly between successive values.", + "enum": [ + "", + "Average", + "Linear", + "No" + ], + "default": "No" + }, + "data": { + "type": "array", + "items": { + "properties": { + "time": { + "type": "string", + "note": "\"until\" includes the time entered.", + "units": "hh:mm" + }, + "value_until_time": { + "type": "number" + } + }, + "type": "object" + } + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "DayScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "schedule_type_limits_name": { + "field_name": "Schedule Type Limits Name", + "field_type": "a" + }, + "interpolate_to_timestep": { + "field_name": "Interpolate to Timestep", + "field_type": "a" + }, + "time": { + "field_name": "Time", + "field_type": "a" + }, + "value_until_time": { + "field_name": "Value Until Time", + "field_type": "n" + } + }, + "fields": [ + "name", + "schedule_type_limits_name", + "interpolate_to_timestep" + ], + "alphas": { + "fields": [ + "name", + "schedule_type_limits_name", + "interpolate_to_timestep" + ], + "extensions": [ + "time" + ] + }, + "numerics": { + "fields": [], + "extensions": [ + "value_until_time" + ] + }, + "extensibles": [ + "time", + "value_until_time" + ], + "extension": "data" + }, + "type": "object", + "memo": "A Schedule:Day:Interval contains a full day of values with specified end times for each value Currently, is set up to allow for 10 minute intervals for an entire day.", + "min_fields": 5.0, + "extensible_size": 2.0 + }, + "Schedule:Day:List": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "schedule_type_limits_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleTypeLimitsNames" + ] + }, + "interpolate_to_timestep": { + "type": "string", + "note": "when the interval does not match the user specified timestep a \"Average\" choice will average between the intervals request (to timestep resolution. A \"No\" choice will use the interval value at the simulation timestep without regard to if it matches the boundary or not. A \"Linear\" choice will interpolate linearly between successive values.", + "enum": [ + "", + "Average", + "Linear", + "No" + ], + "default": "No" + }, + "minutes_per_item": { + "type": "number", + "note": "Must be evenly divisible into 60", + "minimum": 1.0, + "maximum": 60.0 + }, + "extensions": { + "type": "array", + "items": { + "properties": { + "value": { + "type": "number", + "default": 0.0 + } + }, + "type": "object" + } + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "DayScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "schedule_type_limits_name": { + "field_name": "Schedule Type Limits Name", + "field_type": "a" + }, + "interpolate_to_timestep": { + "field_name": "Interpolate to Timestep", + "field_type": "a" + }, + "minutes_per_item": { + "field_name": "Minutes per Item", + "field_type": "n" + }, + "value": { + "field_name": "Value", + "field_type": "n" + } + }, + "fields": [ + "name", + "schedule_type_limits_name", + "interpolate_to_timestep", + "minutes_per_item" + ], + "alphas": { + "fields": [ + "name", + "schedule_type_limits_name", + "interpolate_to_timestep" + ] + }, + "numerics": { + "fields": [ + "minutes_per_item" + ], + "extensions": [ + "value" + ] + }, + "extensibles": [ + "value" + ], + "extension": "extensions" + }, + "type": "object", + "memo": "Schedule:Day:List will allow the user to list 24 hours worth of values, which can be sub-hourly in nature.", + "min_fields": 5.0, + "extensible_size": 1.0 + }, + "Schedule:Week:Daily": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "sunday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "monday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "tuesday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "wednesday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "thursday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "friday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "saturday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "holiday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "summerdesignday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "winterdesignday_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "customday1_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + }, + "customday2_schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + } + }, + "required": [ + "sunday_schedule_day_name", + "monday_schedule_day_name", + "tuesday_schedule_day_name", + "wednesday_schedule_day_name", + "thursday_schedule_day_name", + "friday_schedule_day_name", + "saturday_schedule_day_name", + "holiday_schedule_day_name", + "summerdesignday_schedule_day_name", + "winterdesignday_schedule_day_name", + "customday1_schedule_day_name", + "customday2_schedule_day_name" + ] + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "WeekScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "sunday_schedule_day_name": { + "field_name": "Sunday Schedule:Day Name", + "field_type": "a" + }, + "monday_schedule_day_name": { + "field_name": "Monday Schedule:Day Name", + "field_type": "a" + }, + "tuesday_schedule_day_name": { + "field_name": "Tuesday Schedule:Day Name", + "field_type": "a" + }, + "wednesday_schedule_day_name": { + "field_name": "Wednesday Schedule:Day Name", + "field_type": "a" + }, + "thursday_schedule_day_name": { + "field_name": "Thursday Schedule:Day Name", + "field_type": "a" + }, + "friday_schedule_day_name": { + "field_name": "Friday Schedule:Day Name", + "field_type": "a" + }, + "saturday_schedule_day_name": { + "field_name": "Saturday Schedule:Day Name", + "field_type": "a" + }, + "holiday_schedule_day_name": { + "field_name": "Holiday Schedule:Day Name", + "field_type": "a" + }, + "summerdesignday_schedule_day_name": { + "field_name": "SummerDesignDay Schedule:Day Name", + "field_type": "a" + }, + "winterdesignday_schedule_day_name": { + "field_name": "WinterDesignDay Schedule:Day Name", + "field_type": "a" + }, + "customday1_schedule_day_name": { + "field_name": "CustomDay1 Schedule:Day Name", + "field_type": "a" + }, + "customday2_schedule_day_name": { + "field_name": "CustomDay2 Schedule:Day Name", + "field_type": "a" + } + }, + "fields": [ + "name", + "sunday_schedule_day_name", + "monday_schedule_day_name", + "tuesday_schedule_day_name", + "wednesday_schedule_day_name", + "thursday_schedule_day_name", + "friday_schedule_day_name", + "saturday_schedule_day_name", + "holiday_schedule_day_name", + "summerdesignday_schedule_day_name", + "winterdesignday_schedule_day_name", + "customday1_schedule_day_name", + "customday2_schedule_day_name" + ], + "alphas": { + "fields": [ + "name", + "sunday_schedule_day_name", + "monday_schedule_day_name", + "tuesday_schedule_day_name", + "wednesday_schedule_day_name", + "thursday_schedule_day_name", + "friday_schedule_day_name", + "saturday_schedule_day_name", + "holiday_schedule_day_name", + "summerdesignday_schedule_day_name", + "winterdesignday_schedule_day_name", + "customday1_schedule_day_name", + "customday2_schedule_day_name" + ] + }, + "numerics": { + "fields": [] + } + }, + "type": "object", + "memo": "A Schedule:Week:Daily contains 12 Schedule:Day:Hourly objects, one for each day type.", + "min_fields": 13.0 + }, + "Schedule:Week:Compact": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "properties": { + "daytype_list": { + "type": "string", + "note": "\"For\" is an optional prefix/start of the For fields. Choices can be combined on single line if separated by spaces. i.e. \"Holiday Weekends\" Should have a space after For, if it is included. i.e. \"For Alldays\"" + }, + "schedule_day_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "DayScheduleNames" + ] + } + }, + "type": "object", + "required": [ + "daytype_list", + "schedule_day_name" + ] + } + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "WeekScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "daytype_list": { + "field_name": "DayType List", + "field_type": "a" + }, + "schedule_day_name": { + "field_name": "Schedule:Day Name", + "field_type": "a" + } + }, + "fields": [ + "name" + ], + "alphas": { + "fields": [ + "name" + ], + "extensions": [ + "daytype_list", + "schedule_day_name" + ] + }, + "numerics": { + "fields": [] + }, + "extensibles": [ + "daytype_list", + "schedule_day_name" + ], + "extension": "data" + }, + "type": "object", + "memo": "Compact definition for Schedule:Day:List", + "min_fields": 3.0, + "extensible_size": 2.0 + }, + "Schedule:Year": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "schedule_type_limits_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleTypeLimitsNames" + ] + }, + "schedule_weeks": { + "type": "array", + "items": { + "properties": { + "schedule_week_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "WeekScheduleNames" + ] + }, + "start_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "start_day": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + }, + "end_month": { + "type": "number", + "minimum": 1.0, + "maximum": 12.0 + }, + "end_day": { + "type": "number", + "minimum": 1.0, + "maximum": 31.0 + } + }, + "type": "object", + "required": [ + "end_day", + "end_month", + "schedule_week_name", + "start_day", + "start_month" + ] + }, + "minItems": 1, + "maxItems": 53 + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "ScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "schedule_type_limits_name": { + "field_name": "Schedule Type Limits Name", + "field_type": "a" + }, + "schedule_week_name": { + "field_name": "Schedule:Week Name", + "field_type": "a" + }, + "start_month": { + "field_name": "Start Month", + "field_type": "n" + }, + "start_day": { + "field_name": "Start Day", + "field_type": "n" + }, + "end_month": { + "field_name": "End Month", + "field_type": "n" + }, + "end_day": { + "field_name": "End Day", + "field_type": "n" + } + }, + "fields": [ + "name", + "schedule_type_limits_name" + ], + "alphas": { + "fields": [ + "name", + "schedule_type_limits_name" + ], + "extensions": [ + "schedule_week_name" + ] + }, + "numerics": { + "fields": [], + "extensions": [ + "start_month", + "start_day", + "end_month", + "end_day" + ] + }, + "extensibles": [ + "schedule_week_name", + "start_month", + "start_day", + "end_month", + "end_day" + ], + "extension": "schedule_weeks" + }, + "type": "object", + "memo": "A Schedule:Year contains from 1 to 52 week schedules", + "min_fields": 7.0, + "extensible_size": 5.0 + }, + "Schedule:Compact": { + "patternProperties": { + "^.*\\S.*$": { + "type": "object", + "properties": { + "schedule_type_limits_name": { + "type": "string", + "data_type": "object_list", + "object_list": [ + "ScheduleTypeLimitsNames" + ] + }, + "data": { + "type": "array", + "items": { + "properties": { + "field": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + } + }, + "type": "object" + } + } + } + } + }, + "group": "Schedules", + "name": { + "type": "string", + "is_required": true, + "reference": [ + "ScheduleNames" + ] + }, + "additionalProperties": false, + "legacy_idd": { + "field_info": { + "name": { + "field_name": "Name", + "field_type": "a" + }, + "schedule_type_limits_name": { + "field_name": "Schedule Type Limits Name", + "field_type": "a" + }, + "field": { + "field_name": "Field", + "field_type": "a" + } + }, + "fields": [ + "name", + "schedule_type_limits_name" + ], + "alphas": { + "fields": [ + "name", + "schedule_type_limits_name" + ], + "extensions": [ + "field" + ] + }, + "numerics": { + "fields": [] + }, + "extensibles": [ + "field" + ], + "extension": "data" + }, + "type": "object", + "memo": "Irregular object. Does not follow the usual definition for fields. Fields A3... are: Through: Date For: Applicable days (ref: Schedule:Week:Compact) Interpolate: Average/Linear/No (ref: Schedule:Day:Interval) -- optional, if not used will be \"No\" Until: